blob: 6a519b590474fc37eabe94ed799dcca34201e088 [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
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +1100804/* Copy guest memory in place - must reside within a single memslot */
805static int kvmppc_copy_guest(struct kvm *kvm, gpa_t to, gpa_t from,
806 unsigned long len)
807{
808 struct kvm_memory_slot *to_memslot = NULL;
809 struct kvm_memory_slot *from_memslot = NULL;
810 unsigned long to_addr, from_addr;
811 int r;
812
813 /* Get HPA for from address */
814 from_memslot = gfn_to_memslot(kvm, from >> PAGE_SHIFT);
815 if (!from_memslot)
816 return -EFAULT;
817 if ((from + len) >= ((from_memslot->base_gfn + from_memslot->npages)
818 << PAGE_SHIFT))
819 return -EINVAL;
820 from_addr = gfn_to_hva_memslot(from_memslot, from >> PAGE_SHIFT);
821 if (kvm_is_error_hva(from_addr))
822 return -EFAULT;
823 from_addr |= (from & (PAGE_SIZE - 1));
824
825 /* Get HPA for to address */
826 to_memslot = gfn_to_memslot(kvm, to >> PAGE_SHIFT);
827 if (!to_memslot)
828 return -EFAULT;
829 if ((to + len) >= ((to_memslot->base_gfn + to_memslot->npages)
830 << PAGE_SHIFT))
831 return -EINVAL;
832 to_addr = gfn_to_hva_memslot(to_memslot, to >> PAGE_SHIFT);
833 if (kvm_is_error_hva(to_addr))
834 return -EFAULT;
835 to_addr |= (to & (PAGE_SIZE - 1));
836
837 /* Perform copy */
838 r = raw_copy_in_user((void __user *)to_addr, (void __user *)from_addr,
839 len);
840 if (r)
841 return -EFAULT;
842 mark_page_dirty(kvm, to >> PAGE_SHIFT);
843 return 0;
844}
845
846static long kvmppc_h_page_init(struct kvm_vcpu *vcpu, unsigned long flags,
847 unsigned long dest, unsigned long src)
848{
849 u64 pg_sz = SZ_4K; /* 4K page size */
850 u64 pg_mask = SZ_4K - 1;
851 int ret;
852
853 /* Check for invalid flags (H_PAGE_SET_LOANED covers all CMO flags) */
854 if (flags & ~(H_ICACHE_INVALIDATE | H_ICACHE_SYNCHRONIZE |
855 H_ZERO_PAGE | H_COPY_PAGE | H_PAGE_SET_LOANED))
856 return H_PARAMETER;
857
858 /* dest (and src if copy_page flag set) must be page aligned */
859 if ((dest & pg_mask) || ((flags & H_COPY_PAGE) && (src & pg_mask)))
860 return H_PARAMETER;
861
862 /* zero and/or copy the page as determined by the flags */
863 if (flags & H_COPY_PAGE) {
864 ret = kvmppc_copy_guest(vcpu->kvm, dest, src, pg_sz);
865 if (ret < 0)
866 return H_PARAMETER;
867 } else if (flags & H_ZERO_PAGE) {
868 ret = kvm_clear_guest(vcpu->kvm, dest, pg_sz);
869 if (ret < 0)
870 return H_PARAMETER;
871 }
872
873 /* We can ignore the remaining flags */
874
875 return H_SUCCESS;
876}
877
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100878static int kvm_arch_vcpu_yield_to(struct kvm_vcpu *target)
879{
880 struct kvmppc_vcore *vcore = target->arch.vcore;
881
882 /*
883 * We expect to have been called by the real mode handler
884 * (kvmppc_rm_h_confer()) which would have directly returned
885 * H_SUCCESS if the source vcore wasn't idle (e.g. if it may
886 * have useful work to do and should not confer) so we don't
887 * recheck that here.
888 */
889
890 spin_lock(&vcore->lock);
891 if (target->arch.state == KVMPPC_VCPU_RUNNABLE &&
Paul Mackerrasec257162015-06-24 21:18:03 +1000892 vcore->vcore_state != VCORE_INACTIVE &&
893 vcore->runner)
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100894 target = vcore->runner;
895 spin_unlock(&vcore->lock);
896
897 return kvm_vcpu_yield_to(target);
898}
899
900static int kvmppc_get_yield_count(struct kvm_vcpu *vcpu)
901{
902 int yield_count = 0;
903 struct lppaca *lppaca;
904
905 spin_lock(&vcpu->arch.vpa_update_lock);
906 lppaca = (struct lppaca *)vcpu->arch.vpa.pinned_addr;
907 if (lppaca)
Paul Mackerrasecb6d612015-03-20 20:39:39 +1100908 yield_count = be32_to_cpu(lppaca->yield_count);
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100909 spin_unlock(&vcpu->arch.vpa_update_lock);
910 return yield_count;
911}
912
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000913int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
914{
915 unsigned long req = kvmppc_get_gpr(vcpu, 3);
916 unsigned long target, ret = H_SUCCESS;
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100917 int yield_count;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000918 struct kvm_vcpu *tvcpu;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000919 int idx, rc;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000920
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000921 if (req <= MAX_HCALL_OPCODE &&
922 !test_bit(req/4, vcpu->kvm->arch.enabled_hcalls))
923 return RESUME_HOST;
924
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000925 switch (req) {
926 case H_CEDE:
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000927 break;
928 case H_PROD:
929 target = kvmppc_get_gpr(vcpu, 4);
930 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
931 if (!tvcpu) {
932 ret = H_PARAMETER;
933 break;
934 }
935 tvcpu->arch.prodded = 1;
936 smp_mb();
Paul Mackerras8464c882016-12-06 20:42:05 +1100937 if (tvcpu->arch.ceded)
938 kvmppc_fast_vcpu_kick_hv(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000939 break;
940 case H_CONFER:
Paul Mackerras42d76042013-09-06 13:23:21 +1000941 target = kvmppc_get_gpr(vcpu, 4);
942 if (target == -1)
943 break;
944 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
945 if (!tvcpu) {
946 ret = H_PARAMETER;
947 break;
948 }
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100949 yield_count = kvmppc_get_gpr(vcpu, 5);
950 if (kvmppc_get_yield_count(tvcpu) != yield_count)
951 break;
952 kvm_arch_vcpu_yield_to(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000953 break;
954 case H_REGISTER_VPA:
955 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
956 kvmppc_get_gpr(vcpu, 5),
957 kvmppc_get_gpr(vcpu, 6));
958 break;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000959 case H_RTAS:
960 if (list_empty(&vcpu->kvm->arch.rtas_tokens))
961 return RESUME_HOST;
962
Paul Mackerrasc9438092013-11-16 17:46:05 +1100963 idx = srcu_read_lock(&vcpu->kvm->srcu);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000964 rc = kvmppc_rtas_hcall(vcpu);
Paul Mackerrasc9438092013-11-16 17:46:05 +1100965 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000966
967 if (rc == -ENOENT)
968 return RESUME_HOST;
969 else if (rc == 0)
970 break;
971
972 /* Send the error out to userspace via KVM_RUN */
973 return rc;
David Gibson99342cf82015-02-05 11:53:25 +1100974 case H_LOGICAL_CI_LOAD:
975 ret = kvmppc_h_logical_ci_load(vcpu);
976 if (ret == H_TOO_HARD)
977 return RESUME_HOST;
978 break;
979 case H_LOGICAL_CI_STORE:
980 ret = kvmppc_h_logical_ci_store(vcpu);
981 if (ret == H_TOO_HARD)
982 return RESUME_HOST;
983 break;
Michael Neuling96423822014-06-02 11:03:01 +1000984 case H_SET_MODE:
985 ret = kvmppc_h_set_mode(vcpu, kvmppc_get_gpr(vcpu, 4),
986 kvmppc_get_gpr(vcpu, 5),
987 kvmppc_get_gpr(vcpu, 6),
988 kvmppc_get_gpr(vcpu, 7));
989 if (ret == H_TOO_HARD)
990 return RESUME_HOST;
991 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000992 case H_XIRR:
993 case H_CPPR:
994 case H_EOI:
995 case H_IPI:
Paul Mackerras8e44ddc2013-05-23 15:42:21 +0000996 case H_IPOLL:
997 case H_XIRR_X:
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000998 if (kvmppc_xics_enabled(vcpu)) {
Paul Mackerras03f95332019-02-04 22:07:20 +1100999 if (xics_on_xive()) {
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001000 ret = H_NOT_AVAILABLE;
1001 return RESUME_GUEST;
1002 }
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +00001003 ret = kvmppc_xics_hcall(vcpu, req);
1004 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11001005 }
1006 return RESUME_HOST;
Paul Mackerras4bad7772018-10-08 16:31:06 +11001007 case H_SET_DABR:
1008 ret = kvmppc_h_set_dabr(vcpu, kvmppc_get_gpr(vcpu, 4));
1009 break;
1010 case H_SET_XDABR:
1011 ret = kvmppc_h_set_xdabr(vcpu, kvmppc_get_gpr(vcpu, 4),
1012 kvmppc_get_gpr(vcpu, 5));
1013 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001014#ifdef CONFIG_SPAPR_TCE_IOMMU
Paul Mackerras4bad7772018-10-08 16:31:06 +11001015 case H_GET_TCE:
1016 ret = kvmppc_h_get_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1017 kvmppc_get_gpr(vcpu, 5));
1018 if (ret == H_TOO_HARD)
1019 return RESUME_HOST;
1020 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11001021 case H_PUT_TCE:
1022 ret = kvmppc_h_put_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1023 kvmppc_get_gpr(vcpu, 5),
1024 kvmppc_get_gpr(vcpu, 6));
1025 if (ret == H_TOO_HARD)
1026 return RESUME_HOST;
1027 break;
1028 case H_PUT_TCE_INDIRECT:
1029 ret = kvmppc_h_put_tce_indirect(vcpu, kvmppc_get_gpr(vcpu, 4),
1030 kvmppc_get_gpr(vcpu, 5),
1031 kvmppc_get_gpr(vcpu, 6),
1032 kvmppc_get_gpr(vcpu, 7));
1033 if (ret == H_TOO_HARD)
1034 return RESUME_HOST;
1035 break;
1036 case H_STUFF_TCE:
1037 ret = kvmppc_h_stuff_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1038 kvmppc_get_gpr(vcpu, 5),
1039 kvmppc_get_gpr(vcpu, 6),
1040 kvmppc_get_gpr(vcpu, 7));
1041 if (ret == H_TOO_HARD)
1042 return RESUME_HOST;
1043 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001044#endif
Paul Mackerras4bad7772018-10-08 16:31:06 +11001045 case H_RANDOM:
1046 if (!powernv_get_random_long(&vcpu->arch.regs.gpr[4]))
1047 ret = H_HARDWARE;
1048 break;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001049
1050 case H_SET_PARTITION_TABLE:
1051 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001052 if (nesting_enabled(vcpu->kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001053 ret = kvmhv_set_partition_table(vcpu);
1054 break;
1055 case H_ENTER_NESTED:
1056 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001057 if (!nesting_enabled(vcpu->kvm))
Paul Mackerras360cae32018-10-08 16:31:04 +11001058 break;
1059 ret = kvmhv_enter_nested_guest(vcpu);
1060 if (ret == H_INTERRUPT) {
1061 kvmppc_set_gpr(vcpu, 3, 0);
Michael Roth6c08ec12018-11-08 21:27:23 -06001062 vcpu->arch.hcall_needed = 0;
Paul Mackerras360cae32018-10-08 16:31:04 +11001063 return -EINTR;
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11001064 } else if (ret == H_TOO_HARD) {
1065 kvmppc_set_gpr(vcpu, 3, 0);
1066 vcpu->arch.hcall_needed = 0;
1067 return RESUME_HOST;
Paul Mackerras360cae32018-10-08 16:31:04 +11001068 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001069 break;
1070 case H_TLB_INVALIDATE:
1071 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001072 if (nesting_enabled(vcpu->kvm))
1073 ret = kvmhv_do_nested_tlbie(vcpu);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001074 break;
Suraj Jitindar Singh6ff887b2018-12-14 16:29:09 +11001075 case H_COPY_TOFROM_GUEST:
1076 ret = H_FUNCTION;
1077 if (nesting_enabled(vcpu->kvm))
1078 ret = kvmhv_copy_tofrom_guest_nested(vcpu);
1079 break;
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001080 case H_PAGE_INIT:
1081 ret = kvmppc_h_page_init(vcpu, kvmppc_get_gpr(vcpu, 4),
1082 kvmppc_get_gpr(vcpu, 5),
1083 kvmppc_get_gpr(vcpu, 6));
1084 break;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001085 default:
1086 return RESUME_HOST;
1087 }
1088 kvmppc_set_gpr(vcpu, 3, ret);
1089 vcpu->arch.hcall_needed = 0;
1090 return RESUME_GUEST;
1091}
1092
Paul Mackerras4bad7772018-10-08 16:31:06 +11001093/*
1094 * Handle H_CEDE in the nested virtualization case where we haven't
1095 * called the real-mode hcall handlers in book3s_hv_rmhandlers.S.
1096 * This has to be done early, not in kvmppc_pseries_do_hcall(), so
1097 * that the cede logic in kvmppc_run_single_vcpu() works properly.
1098 */
1099static void kvmppc_nested_cede(struct kvm_vcpu *vcpu)
1100{
1101 vcpu->arch.shregs.msr |= MSR_EE;
1102 vcpu->arch.ceded = 1;
1103 smp_mb();
1104 if (vcpu->arch.prodded) {
1105 vcpu->arch.prodded = 0;
1106 smp_mb();
1107 vcpu->arch.ceded = 0;
1108 }
1109}
1110
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001111static int kvmppc_hcall_impl_hv(unsigned long cmd)
1112{
1113 switch (cmd) {
1114 case H_CEDE:
1115 case H_PROD:
1116 case H_CONFER:
1117 case H_REGISTER_VPA:
Michael Neuling96423822014-06-02 11:03:01 +10001118 case H_SET_MODE:
David Gibson99342cf82015-02-05 11:53:25 +11001119 case H_LOGICAL_CI_LOAD:
1120 case H_LOGICAL_CI_STORE:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001121#ifdef CONFIG_KVM_XICS
1122 case H_XIRR:
1123 case H_CPPR:
1124 case H_EOI:
1125 case H_IPI:
1126 case H_IPOLL:
1127 case H_XIRR_X:
1128#endif
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001129 case H_PAGE_INIT:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001130 return 1;
1131 }
1132
1133 /* See if it's in the real-mode table */
1134 return kvmppc_hcall_impl_hv_realmode(cmd);
1135}
1136
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301137static int kvmppc_emulate_debug_inst(struct kvm_run *run,
1138 struct kvm_vcpu *vcpu)
1139{
1140 u32 last_inst;
1141
1142 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst) !=
1143 EMULATE_DONE) {
1144 /*
1145 * Fetch failed, so return to guest and
1146 * try executing it again.
1147 */
1148 return RESUME_GUEST;
1149 }
1150
1151 if (last_inst == KVMPPC_INST_SW_BREAKPOINT) {
1152 run->exit_reason = KVM_EXIT_DEBUG;
1153 run->debug.arch.address = kvmppc_get_pc(vcpu);
1154 return RESUME_HOST;
1155 } else {
1156 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1157 return RESUME_GUEST;
1158 }
1159}
1160
Paul Mackerras57900692017-05-16 16:41:20 +10001161static void do_nothing(void *x)
1162{
1163}
1164
1165static unsigned long kvmppc_read_dpdes(struct kvm_vcpu *vcpu)
1166{
1167 int thr, cpu, pcpu, nthreads;
1168 struct kvm_vcpu *v;
1169 unsigned long dpdes;
1170
1171 nthreads = vcpu->kvm->arch.emul_smt_mode;
1172 dpdes = 0;
1173 cpu = vcpu->vcpu_id & ~(nthreads - 1);
1174 for (thr = 0; thr < nthreads; ++thr, ++cpu) {
1175 v = kvmppc_find_vcpu(vcpu->kvm, cpu);
1176 if (!v)
1177 continue;
1178 /*
1179 * If the vcpu is currently running on a physical cpu thread,
1180 * interrupt it in order to pull it out of the guest briefly,
1181 * which will update its vcore->dpdes value.
1182 */
1183 pcpu = READ_ONCE(v->cpu);
1184 if (pcpu >= 0)
1185 smp_call_function_single(pcpu, do_nothing, NULL, 1);
1186 if (kvmppc_doorbell_pending(v))
1187 dpdes |= 1 << thr;
1188 }
1189 return dpdes;
1190}
1191
1192/*
1193 * On POWER9, emulate doorbell-related instructions in order to
1194 * give the guest the illusion of running on a multi-threaded core.
1195 * The instructions emulated are msgsndp, msgclrp, mfspr TIR,
1196 * and mfspr DPDES.
1197 */
1198static int kvmppc_emulate_doorbell_instr(struct kvm_vcpu *vcpu)
1199{
1200 u32 inst, rb, thr;
1201 unsigned long arg;
1202 struct kvm *kvm = vcpu->kvm;
1203 struct kvm_vcpu *tvcpu;
1204
Paul Mackerras57900692017-05-16 16:41:20 +10001205 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &inst) != EMULATE_DONE)
1206 return RESUME_GUEST;
1207 if (get_op(inst) != 31)
1208 return EMULATE_FAIL;
1209 rb = get_rb(inst);
1210 thr = vcpu->vcpu_id & (kvm->arch.emul_smt_mode - 1);
1211 switch (get_xop(inst)) {
1212 case OP_31_XOP_MSGSNDP:
1213 arg = kvmppc_get_gpr(vcpu, rb);
1214 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1215 break;
1216 arg &= 0x3f;
1217 if (arg >= kvm->arch.emul_smt_mode)
1218 break;
1219 tvcpu = kvmppc_find_vcpu(kvm, vcpu->vcpu_id - thr + arg);
1220 if (!tvcpu)
1221 break;
1222 if (!tvcpu->arch.doorbell_request) {
1223 tvcpu->arch.doorbell_request = 1;
1224 kvmppc_fast_vcpu_kick_hv(tvcpu);
1225 }
1226 break;
1227 case OP_31_XOP_MSGCLRP:
1228 arg = kvmppc_get_gpr(vcpu, rb);
1229 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1230 break;
1231 vcpu->arch.vcore->dpdes = 0;
1232 vcpu->arch.doorbell_request = 0;
1233 break;
1234 case OP_31_XOP_MFSPR:
1235 switch (get_sprn(inst)) {
1236 case SPRN_TIR:
1237 arg = thr;
1238 break;
1239 case SPRN_DPDES:
1240 arg = kvmppc_read_dpdes(vcpu);
1241 break;
1242 default:
1243 return EMULATE_FAIL;
1244 }
1245 kvmppc_set_gpr(vcpu, get_rt(inst), arg);
1246 break;
1247 default:
1248 return EMULATE_FAIL;
1249 }
1250 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
1251 return RESUME_GUEST;
1252}
1253
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301254static int kvmppc_handle_exit_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
1255 struct task_struct *tsk)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001256{
1257 int r = RESUME_HOST;
1258
1259 vcpu->stat.sum_exits++;
1260
Paul Mackerras1c9e3d52015-11-12 16:43:48 +11001261 /*
1262 * This can happen if an interrupt occurs in the last stages
1263 * of guest entry or the first stages of guest exit (i.e. after
1264 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1265 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1266 * That can happen due to a bug, or due to a machine check
1267 * occurring at just the wrong time.
1268 */
1269 if (vcpu->arch.shregs.msr & MSR_HV) {
1270 printk(KERN_EMERG "KVM trap in HV mode!\n");
1271 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1272 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1273 vcpu->arch.shregs.msr);
1274 kvmppc_dump_regs(vcpu);
1275 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1276 run->hw.hardware_exit_reason = vcpu->arch.trap;
1277 return RESUME_HOST;
1278 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001279 run->exit_reason = KVM_EXIT_UNKNOWN;
1280 run->ready_for_interrupt_injection = 1;
1281 switch (vcpu->arch.trap) {
1282 /* We're good on these - the host merely wanted to get our attention */
1283 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1284 vcpu->stat.dec_exits++;
1285 r = RESUME_GUEST;
1286 break;
1287 case BOOK3S_INTERRUPT_EXTERNAL:
Paul Mackerras5d00f662014-01-08 21:25:28 +11001288 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerras84f71392016-11-22 14:30:14 +11001289 case BOOK3S_INTERRUPT_H_VIRT:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001290 vcpu->stat.ext_intr_exits++;
1291 r = RESUME_GUEST;
1292 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11001293 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
Mahesh Salgaonkardee6f242014-11-03 15:51:57 +11001294 case BOOK3S_INTERRUPT_HMI:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001295 case BOOK3S_INTERRUPT_PERFMON:
Nicholas Piggin6de66382017-11-05 23:33:55 +11001296 case BOOK3S_INTERRUPT_SYSTEM_RESET:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001297 r = RESUME_GUEST;
1298 break;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001299 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Paul Mackerras884dfb72019-02-21 13:38:49 +11001300 /* Print the MCE event to host console. */
Paul Mackerrasc0577202019-02-21 13:40:20 +11001301 machine_check_print_event_info(&vcpu->arch.mce_evt, false, true);
Paul Mackerras884dfb72019-02-21 13:38:49 +11001302
1303 /*
1304 * If the guest can do FWNMI, exit to userspace so it can
1305 * deliver a FWNMI to the guest.
1306 * Otherwise we synthesize a machine check for the guest
1307 * so that it knows that the machine check occurred.
1308 */
1309 if (!vcpu->kvm->arch.fwnmi_enabled) {
1310 ulong flags = vcpu->arch.shregs.msr & 0x083c0000;
1311 kvmppc_core_queue_machine_check(vcpu, flags);
1312 r = RESUME_GUEST;
1313 break;
1314 }
1315
Aravinda Prasade20bbd32017-05-11 16:33:37 +05301316 /* Exit to guest with KVM_EXIT_NMI as exit reason */
1317 run->exit_reason = KVM_EXIT_NMI;
1318 run->hw.hardware_exit_reason = vcpu->arch.trap;
1319 /* Clear out the old NMI status from run->flags */
1320 run->flags &= ~KVM_RUN_PPC_NMI_DISP_MASK;
1321 /* Now set the NMI status */
1322 if (vcpu->arch.mce_evt.disposition == MCE_DISPOSITION_RECOVERED)
1323 run->flags |= KVM_RUN_PPC_NMI_DISP_FULLY_RECOV;
1324 else
1325 run->flags |= KVM_RUN_PPC_NMI_DISP_NOT_RECOV;
1326
1327 r = RESUME_HOST;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001328 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001329 case BOOK3S_INTERRUPT_PROGRAM:
1330 {
1331 ulong flags;
1332 /*
1333 * Normally program interrupts are delivered directly
1334 * to the guest by the hardware, but we can get here
1335 * as a result of a hypervisor emulation interrupt
1336 * (e40) getting turned into a 700 by BML RTAS.
1337 */
1338 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
1339 kvmppc_core_queue_program(vcpu, flags);
1340 r = RESUME_GUEST;
1341 break;
1342 }
1343 case BOOK3S_INTERRUPT_SYSCALL:
1344 {
1345 /* hcall - punt to userspace */
1346 int i;
1347
Liu Ping Fan27025a62013-11-19 14:12:48 +08001348 /* hypercall with MSR_PR has already been handled in rmode,
1349 * and never reaches here.
1350 */
1351
Paul Mackerrasde56a942011-06-29 00:21:34 +00001352 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
1353 for (i = 0; i < 9; ++i)
1354 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
1355 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1356 vcpu->arch.hcall_needed = 1;
1357 r = RESUME_HOST;
1358 break;
1359 }
1360 /*
Paul Mackerras342d3db2011-12-12 12:38:05 +00001361 * We get these next two if the guest accesses a page which it thinks
1362 * it has mapped but which is not actually present, either because
1363 * it is for an emulated I/O device or because the corresonding
1364 * host page has been paged out. Any other HDSI/HISI interrupts
1365 * have been handled already.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001366 */
1367 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001368 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001369 break;
1370 case BOOK3S_INTERRUPT_H_INST_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001371 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
Paul Mackerras32eb1502018-10-08 16:30:56 +11001372 vcpu->arch.fault_dsisr = vcpu->arch.shregs.msr &
1373 DSISR_SRR1_MATCH_64S;
1374 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1375 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001376 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001377 break;
1378 /*
1379 * This occurs if the guest executes an illegal instruction.
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301380 * If the guest debug is disabled, generate a program interrupt
1381 * to the guest. If guest debug is enabled, we need to check
1382 * whether the instruction is a software breakpoint instruction.
1383 * Accordingly return to Guest or Host.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001384 */
1385 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerras4a157d62014-12-03 13:30:39 +11001386 if (vcpu->arch.emul_inst != KVM_INST_FETCH_FAILED)
1387 vcpu->arch.last_inst = kvmppc_need_byteswap(vcpu) ?
1388 swab32(vcpu->arch.emul_inst) :
1389 vcpu->arch.emul_inst;
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301390 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) {
1391 r = kvmppc_emulate_debug_inst(run, vcpu);
1392 } else {
1393 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1394 r = RESUME_GUEST;
1395 }
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001396 break;
1397 /*
1398 * This occurs if the guest (kernel or userspace), does something that
Paul Mackerras57900692017-05-16 16:41:20 +10001399 * is prohibited by HFSCR.
1400 * On POWER9, this could be a doorbell instruction that we need
1401 * to emulate.
1402 * Otherwise, we just generate a program interrupt to the guest.
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001403 */
1404 case BOOK3S_INTERRUPT_H_FAC_UNAVAIL:
Paul Mackerras57900692017-05-16 16:41:20 +10001405 r = EMULATE_FAIL;
Paul Mackerras36ee41d2018-01-30 10:51:32 +11001406 if (((vcpu->arch.hfscr >> 56) == FSCR_MSGP_LG) &&
Paul Mackerras53655dd2018-10-08 16:30:54 +11001407 cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras57900692017-05-16 16:41:20 +10001408 r = kvmppc_emulate_doorbell_instr(vcpu);
1409 if (r == EMULATE_FAIL) {
1410 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1411 r = RESUME_GUEST;
1412 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001413 break;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11001414
1415#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1416 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1417 /*
1418 * This occurs for various TM-related instructions that
1419 * we need to emulate on POWER9 DD2.2. We have already
1420 * handled the cases where the guest was in real-suspend
1421 * mode and was transitioning to transactional state.
1422 */
1423 r = kvmhv_p9_tm_emulation(vcpu);
1424 break;
1425#endif
1426
Suresh Warrierf7af5202016-08-19 15:35:52 +10001427 case BOOK3S_INTERRUPT_HV_RM_HARD:
1428 r = RESUME_PASSTHROUGH;
1429 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001430 default:
1431 kvmppc_dump_regs(vcpu);
1432 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1433 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1434 vcpu->arch.shregs.msr);
Paul Mackerrasf3271d42013-09-20 14:52:41 +10001435 run->hw.hardware_exit_reason = vcpu->arch.trap;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001436 r = RESUME_HOST;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001437 break;
1438 }
1439
Paul Mackerrasde56a942011-06-29 00:21:34 +00001440 return r;
1441}
1442
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11001443static int kvmppc_handle_nested_exit(struct kvm_run *run, struct kvm_vcpu *vcpu)
Paul Mackerras360cae32018-10-08 16:31:04 +11001444{
1445 int r;
1446 int srcu_idx;
1447
1448 vcpu->stat.sum_exits++;
1449
1450 /*
1451 * This can happen if an interrupt occurs in the last stages
1452 * of guest entry or the first stages of guest exit (i.e. after
1453 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1454 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1455 * That can happen due to a bug, or due to a machine check
1456 * occurring at just the wrong time.
1457 */
1458 if (vcpu->arch.shregs.msr & MSR_HV) {
1459 pr_emerg("KVM trap in HV mode while nested!\n");
1460 pr_emerg("trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1461 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1462 vcpu->arch.shregs.msr);
1463 kvmppc_dump_regs(vcpu);
1464 return RESUME_HOST;
1465 }
1466 switch (vcpu->arch.trap) {
1467 /* We're good on these - the host merely wanted to get our attention */
1468 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1469 vcpu->stat.dec_exits++;
1470 r = RESUME_GUEST;
1471 break;
1472 case BOOK3S_INTERRUPT_EXTERNAL:
1473 vcpu->stat.ext_intr_exits++;
1474 r = RESUME_HOST;
1475 break;
1476 case BOOK3S_INTERRUPT_H_DOORBELL:
1477 case BOOK3S_INTERRUPT_H_VIRT:
1478 vcpu->stat.ext_intr_exits++;
1479 r = RESUME_GUEST;
1480 break;
1481 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
1482 case BOOK3S_INTERRUPT_HMI:
1483 case BOOK3S_INTERRUPT_PERFMON:
1484 case BOOK3S_INTERRUPT_SYSTEM_RESET:
1485 r = RESUME_GUEST;
1486 break;
1487 case BOOK3S_INTERRUPT_MACHINE_CHECK:
1488 /* Pass the machine check to the L1 guest */
1489 r = RESUME_HOST;
1490 /* Print the MCE event to host console. */
Paul Mackerrasc0577202019-02-21 13:40:20 +11001491 machine_check_print_event_info(&vcpu->arch.mce_evt, false, true);
Paul Mackerras360cae32018-10-08 16:31:04 +11001492 break;
1493 /*
1494 * We get these next two if the guest accesses a page which it thinks
1495 * it has mapped but which is not actually present, either because
1496 * it is for an emulated I/O device or because the corresonding
1497 * host page has been paged out.
1498 */
1499 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
1500 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11001501 r = kvmhv_nested_page_fault(run, vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11001502 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1503 break;
1504 case BOOK3S_INTERRUPT_H_INST_STORAGE:
1505 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
1506 vcpu->arch.fault_dsisr = kvmppc_get_msr(vcpu) &
1507 DSISR_SRR1_MATCH_64S;
1508 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1509 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
1510 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11001511 r = kvmhv_nested_page_fault(run, vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11001512 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1513 break;
1514
1515#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1516 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1517 /*
1518 * This occurs for various TM-related instructions that
1519 * we need to emulate on POWER9 DD2.2. We have already
1520 * handled the cases where the guest was in real-suspend
1521 * mode and was transitioning to transactional state.
1522 */
1523 r = kvmhv_p9_tm_emulation(vcpu);
1524 break;
1525#endif
1526
1527 case BOOK3S_INTERRUPT_HV_RM_HARD:
1528 vcpu->arch.trap = 0;
1529 r = RESUME_GUEST;
Paul Mackerras03f95332019-02-04 22:07:20 +11001530 if (!xics_on_xive())
Paul Mackerras360cae32018-10-08 16:31:04 +11001531 kvmppc_xics_rm_complete(vcpu, 0);
1532 break;
1533 default:
1534 r = RESUME_HOST;
1535 break;
1536 }
1537
1538 return r;
1539}
1540
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301541static int kvm_arch_vcpu_ioctl_get_sregs_hv(struct kvm_vcpu *vcpu,
1542 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001543{
1544 int i;
1545
Paul Mackerrasde56a942011-06-29 00:21:34 +00001546 memset(sregs, 0, sizeof(struct kvm_sregs));
Aneesh Kumar K.V87916442013-08-22 17:08:39 +05301547 sregs->pvr = vcpu->arch.pvr;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001548 for (i = 0; i < vcpu->arch.slb_max; i++) {
1549 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
1550 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1551 }
1552
1553 return 0;
1554}
1555
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301556static int kvm_arch_vcpu_ioctl_set_sregs_hv(struct kvm_vcpu *vcpu,
1557 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001558{
1559 int i, j;
1560
Paul Mackerras9333e6c2014-09-02 16:14:43 +10001561 /* Only accept the same PVR as the host's, since we can't spoof it */
1562 if (sregs->pvr != vcpu->arch.pvr)
1563 return -EINVAL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001564
1565 j = 0;
1566 for (i = 0; i < vcpu->arch.slb_nr; i++) {
1567 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
1568 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
1569 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
1570 ++j;
1571 }
1572 }
1573 vcpu->arch.slb_max = j;
1574
1575 return 0;
1576}
1577
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001578static void kvmppc_set_lpcr(struct kvm_vcpu *vcpu, u64 new_lpcr,
1579 bool preserve_top32)
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001580{
Paul Mackerras8f902b02015-03-20 20:39:38 +11001581 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001582 struct kvmppc_vcore *vc = vcpu->arch.vcore;
1583 u64 mask;
1584
Paul Mackerras8f902b02015-03-20 20:39:38 +11001585 mutex_lock(&kvm->lock);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001586 spin_lock(&vc->lock);
1587 /*
Anton Blanchardd6829162014-01-08 21:25:30 +11001588 * If ILE (interrupt little-endian) has changed, update the
1589 * MSR_LE bit in the intr_msr for each vcpu in this vcore.
1590 */
1591 if ((new_lpcr & LPCR_ILE) != (vc->lpcr & LPCR_ILE)) {
Anton Blanchardd6829162014-01-08 21:25:30 +11001592 struct kvm_vcpu *vcpu;
1593 int i;
1594
Anton Blanchardd6829162014-01-08 21:25:30 +11001595 kvm_for_each_vcpu(i, vcpu, kvm) {
1596 if (vcpu->arch.vcore != vc)
1597 continue;
1598 if (new_lpcr & LPCR_ILE)
1599 vcpu->arch.intr_msr |= MSR_LE;
1600 else
1601 vcpu->arch.intr_msr &= ~MSR_LE;
1602 }
Anton Blanchardd6829162014-01-08 21:25:30 +11001603 }
1604
1605 /*
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001606 * Userspace can only modify DPFD (default prefetch depth),
1607 * ILE (interrupt little-endian) and TC (translation control).
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11001608 * On POWER8 and POWER9 userspace can also modify AIL (alt. interrupt loc.).
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001609 */
1610 mask = LPCR_DPFD | LPCR_ILE | LPCR_TC;
Paul Mackerrase0622bd2014-01-08 21:25:27 +11001611 if (cpu_has_feature(CPU_FTR_ARCH_207S))
1612 mask |= LPCR_AIL;
Paul Mackerras1bc3fe82017-05-22 16:55:16 +10001613 /*
1614 * On POWER9, allow userspace to enable large decrementer for the
1615 * guest, whether or not the host has it enabled.
1616 */
1617 if (cpu_has_feature(CPU_FTR_ARCH_300))
1618 mask |= LPCR_LD;
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001619
1620 /* Broken 32-bit version of LPCR must not clear top bits */
1621 if (preserve_top32)
1622 mask &= 0xFFFFFFFF;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001623 vc->lpcr = (vc->lpcr & ~mask) | (new_lpcr & mask);
1624 spin_unlock(&vc->lock);
Paul Mackerras8f902b02015-03-20 20:39:38 +11001625 mutex_unlock(&kvm->lock);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001626}
1627
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301628static int kvmppc_get_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1629 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001630{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001631 int r = 0;
1632 long int i;
Paul Mackerras31f34382011-12-12 12:26:50 +00001633
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001634 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301635 case KVM_REG_PPC_DEBUG_INST:
1636 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1637 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001638 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001639 *val = get_reg_val(id, 0);
1640 break;
1641 case KVM_REG_PPC_DABR:
1642 *val = get_reg_val(id, vcpu->arch.dabr);
1643 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001644 case KVM_REG_PPC_DABRX:
1645 *val = get_reg_val(id, vcpu->arch.dabrx);
1646 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001647 case KVM_REG_PPC_DSCR:
1648 *val = get_reg_val(id, vcpu->arch.dscr);
1649 break;
1650 case KVM_REG_PPC_PURR:
1651 *val = get_reg_val(id, vcpu->arch.purr);
1652 break;
1653 case KVM_REG_PPC_SPURR:
1654 *val = get_reg_val(id, vcpu->arch.spurr);
1655 break;
1656 case KVM_REG_PPC_AMR:
1657 *val = get_reg_val(id, vcpu->arch.amr);
1658 break;
1659 case KVM_REG_PPC_UAMOR:
1660 *val = get_reg_val(id, vcpu->arch.uamor);
1661 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001662 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRS:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001663 i = id - KVM_REG_PPC_MMCR0;
1664 *val = get_reg_val(id, vcpu->arch.mmcr[i]);
1665 break;
1666 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1667 i = id - KVM_REG_PPC_PMC1;
1668 *val = get_reg_val(id, vcpu->arch.pmc[i]);
Paul Mackerras31f34382011-12-12 12:26:50 +00001669 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001670 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1671 i = id - KVM_REG_PPC_SPMC1;
1672 *val = get_reg_val(id, vcpu->arch.spmc[i]);
1673 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001674 case KVM_REG_PPC_SIAR:
1675 *val = get_reg_val(id, vcpu->arch.siar);
1676 break;
1677 case KVM_REG_PPC_SDAR:
1678 *val = get_reg_val(id, vcpu->arch.sdar);
1679 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001680 case KVM_REG_PPC_SIER:
1681 *val = get_reg_val(id, vcpu->arch.sier);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001682 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001683 case KVM_REG_PPC_IAMR:
1684 *val = get_reg_val(id, vcpu->arch.iamr);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001685 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001686 case KVM_REG_PPC_PSPB:
1687 *val = get_reg_val(id, vcpu->arch.pspb);
1688 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001689 case KVM_REG_PPC_DPDES:
1690 *val = get_reg_val(id, vcpu->arch.vcore->dpdes);
1691 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001692 case KVM_REG_PPC_VTB:
1693 *val = get_reg_val(id, vcpu->arch.vcore->vtb);
1694 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001695 case KVM_REG_PPC_DAWR:
1696 *val = get_reg_val(id, vcpu->arch.dawr);
1697 break;
1698 case KVM_REG_PPC_DAWRX:
1699 *val = get_reg_val(id, vcpu->arch.dawrx);
1700 break;
1701 case KVM_REG_PPC_CIABR:
1702 *val = get_reg_val(id, vcpu->arch.ciabr);
1703 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001704 case KVM_REG_PPC_CSIGR:
1705 *val = get_reg_val(id, vcpu->arch.csigr);
1706 break;
1707 case KVM_REG_PPC_TACR:
1708 *val = get_reg_val(id, vcpu->arch.tacr);
1709 break;
1710 case KVM_REG_PPC_TCSCR:
1711 *val = get_reg_val(id, vcpu->arch.tcscr);
1712 break;
1713 case KVM_REG_PPC_PID:
1714 *val = get_reg_val(id, vcpu->arch.pid);
1715 break;
1716 case KVM_REG_PPC_ACOP:
1717 *val = get_reg_val(id, vcpu->arch.acop);
1718 break;
1719 case KVM_REG_PPC_WORT:
1720 *val = get_reg_val(id, vcpu->arch.wort);
1721 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001722 case KVM_REG_PPC_TIDR:
1723 *val = get_reg_val(id, vcpu->arch.tid);
1724 break;
1725 case KVM_REG_PPC_PSSCR:
1726 *val = get_reg_val(id, vcpu->arch.psscr);
1727 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001728 case KVM_REG_PPC_VPA_ADDR:
1729 spin_lock(&vcpu->arch.vpa_update_lock);
1730 *val = get_reg_val(id, vcpu->arch.vpa.next_gpa);
1731 spin_unlock(&vcpu->arch.vpa_update_lock);
1732 break;
1733 case KVM_REG_PPC_VPA_SLB:
1734 spin_lock(&vcpu->arch.vpa_update_lock);
1735 val->vpaval.addr = vcpu->arch.slb_shadow.next_gpa;
1736 val->vpaval.length = vcpu->arch.slb_shadow.len;
1737 spin_unlock(&vcpu->arch.vpa_update_lock);
1738 break;
1739 case KVM_REG_PPC_VPA_DTL:
1740 spin_lock(&vcpu->arch.vpa_update_lock);
1741 val->vpaval.addr = vcpu->arch.dtl.next_gpa;
1742 val->vpaval.length = vcpu->arch.dtl.len;
1743 spin_unlock(&vcpu->arch.vpa_update_lock);
1744 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001745 case KVM_REG_PPC_TB_OFFSET:
1746 *val = get_reg_val(id, vcpu->arch.vcore->tb_offset);
1747 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001748 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001749 case KVM_REG_PPC_LPCR_64:
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001750 *val = get_reg_val(id, vcpu->arch.vcore->lpcr);
1751 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001752 case KVM_REG_PPC_PPR:
1753 *val = get_reg_val(id, vcpu->arch.ppr);
1754 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001755#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1756 case KVM_REG_PPC_TFHAR:
1757 *val = get_reg_val(id, vcpu->arch.tfhar);
1758 break;
1759 case KVM_REG_PPC_TFIAR:
1760 *val = get_reg_val(id, vcpu->arch.tfiar);
1761 break;
1762 case KVM_REG_PPC_TEXASR:
1763 *val = get_reg_val(id, vcpu->arch.texasr);
1764 break;
1765 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
1766 i = id - KVM_REG_PPC_TM_GPR0;
1767 *val = get_reg_val(id, vcpu->arch.gpr_tm[i]);
1768 break;
1769 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
1770 {
1771 int j;
1772 i = id - KVM_REG_PPC_TM_VSR0;
1773 if (i < 32)
1774 for (j = 0; j < TS_FPRWIDTH; j++)
1775 val->vsxval[j] = vcpu->arch.fp_tm.fpr[i][j];
1776 else {
1777 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1778 val->vval = vcpu->arch.vr_tm.vr[i-32];
1779 else
1780 r = -ENXIO;
1781 }
1782 break;
1783 }
1784 case KVM_REG_PPC_TM_CR:
1785 *val = get_reg_val(id, vcpu->arch.cr_tm);
1786 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11001787 case KVM_REG_PPC_TM_XER:
1788 *val = get_reg_val(id, vcpu->arch.xer_tm);
1789 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001790 case KVM_REG_PPC_TM_LR:
1791 *val = get_reg_val(id, vcpu->arch.lr_tm);
1792 break;
1793 case KVM_REG_PPC_TM_CTR:
1794 *val = get_reg_val(id, vcpu->arch.ctr_tm);
1795 break;
1796 case KVM_REG_PPC_TM_FPSCR:
1797 *val = get_reg_val(id, vcpu->arch.fp_tm.fpscr);
1798 break;
1799 case KVM_REG_PPC_TM_AMR:
1800 *val = get_reg_val(id, vcpu->arch.amr_tm);
1801 break;
1802 case KVM_REG_PPC_TM_PPR:
1803 *val = get_reg_val(id, vcpu->arch.ppr_tm);
1804 break;
1805 case KVM_REG_PPC_TM_VRSAVE:
1806 *val = get_reg_val(id, vcpu->arch.vrsave_tm);
1807 break;
1808 case KVM_REG_PPC_TM_VSCR:
1809 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1810 *val = get_reg_val(id, vcpu->arch.vr_tm.vscr.u[3]);
1811 else
1812 r = -ENXIO;
1813 break;
1814 case KVM_REG_PPC_TM_DSCR:
1815 *val = get_reg_val(id, vcpu->arch.dscr_tm);
1816 break;
1817 case KVM_REG_PPC_TM_TAR:
1818 *val = get_reg_val(id, vcpu->arch.tar_tm);
1819 break;
1820#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10001821 case KVM_REG_PPC_ARCH_COMPAT:
1822 *val = get_reg_val(id, vcpu->arch.vcore->arch_compat);
1823 break;
Paul Mackerras58555642018-01-12 20:55:20 +11001824 case KVM_REG_PPC_DEC_EXPIRY:
1825 *val = get_reg_val(id, vcpu->arch.dec_expires +
1826 vcpu->arch.vcore->tb_offset);
1827 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10001828 case KVM_REG_PPC_ONLINE:
1829 *val = get_reg_val(id, vcpu->arch.online);
1830 break;
Paul Mackerras30323412018-10-08 16:31:13 +11001831 case KVM_REG_PPC_PTCR:
1832 *val = get_reg_val(id, vcpu->kvm->arch.l1_ptcr);
1833 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001834 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001835 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001836 break;
1837 }
1838
1839 return r;
1840}
1841
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301842static int kvmppc_set_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1843 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001844{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001845 int r = 0;
1846 long int i;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001847 unsigned long addr, len;
Paul Mackerras31f34382011-12-12 12:26:50 +00001848
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001849 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001850 case KVM_REG_PPC_HIOR:
Paul Mackerras31f34382011-12-12 12:26:50 +00001851 /* Only allow this to be set to zero */
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001852 if (set_reg_val(id, *val))
Paul Mackerras31f34382011-12-12 12:26:50 +00001853 r = -EINVAL;
1854 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001855 case KVM_REG_PPC_DABR:
1856 vcpu->arch.dabr = set_reg_val(id, *val);
1857 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001858 case KVM_REG_PPC_DABRX:
1859 vcpu->arch.dabrx = set_reg_val(id, *val) & ~DABRX_HYP;
1860 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001861 case KVM_REG_PPC_DSCR:
1862 vcpu->arch.dscr = set_reg_val(id, *val);
1863 break;
1864 case KVM_REG_PPC_PURR:
1865 vcpu->arch.purr = set_reg_val(id, *val);
1866 break;
1867 case KVM_REG_PPC_SPURR:
1868 vcpu->arch.spurr = set_reg_val(id, *val);
1869 break;
1870 case KVM_REG_PPC_AMR:
1871 vcpu->arch.amr = set_reg_val(id, *val);
1872 break;
1873 case KVM_REG_PPC_UAMOR:
1874 vcpu->arch.uamor = set_reg_val(id, *val);
1875 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001876 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRS:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001877 i = id - KVM_REG_PPC_MMCR0;
1878 vcpu->arch.mmcr[i] = set_reg_val(id, *val);
1879 break;
1880 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1881 i = id - KVM_REG_PPC_PMC1;
1882 vcpu->arch.pmc[i] = set_reg_val(id, *val);
1883 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001884 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1885 i = id - KVM_REG_PPC_SPMC1;
1886 vcpu->arch.spmc[i] = set_reg_val(id, *val);
1887 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001888 case KVM_REG_PPC_SIAR:
1889 vcpu->arch.siar = set_reg_val(id, *val);
1890 break;
1891 case KVM_REG_PPC_SDAR:
1892 vcpu->arch.sdar = set_reg_val(id, *val);
1893 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001894 case KVM_REG_PPC_SIER:
1895 vcpu->arch.sier = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001896 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001897 case KVM_REG_PPC_IAMR:
1898 vcpu->arch.iamr = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001899 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001900 case KVM_REG_PPC_PSPB:
1901 vcpu->arch.pspb = set_reg_val(id, *val);
1902 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001903 case KVM_REG_PPC_DPDES:
1904 vcpu->arch.vcore->dpdes = set_reg_val(id, *val);
1905 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001906 case KVM_REG_PPC_VTB:
1907 vcpu->arch.vcore->vtb = set_reg_val(id, *val);
1908 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001909 case KVM_REG_PPC_DAWR:
1910 vcpu->arch.dawr = set_reg_val(id, *val);
1911 break;
1912 case KVM_REG_PPC_DAWRX:
1913 vcpu->arch.dawrx = set_reg_val(id, *val) & ~DAWRX_HYP;
1914 break;
1915 case KVM_REG_PPC_CIABR:
1916 vcpu->arch.ciabr = set_reg_val(id, *val);
1917 /* Don't allow setting breakpoints in hypervisor code */
1918 if ((vcpu->arch.ciabr & CIABR_PRIV) == CIABR_PRIV_HYPER)
1919 vcpu->arch.ciabr &= ~CIABR_PRIV; /* disable */
1920 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001921 case KVM_REG_PPC_CSIGR:
1922 vcpu->arch.csigr = set_reg_val(id, *val);
1923 break;
1924 case KVM_REG_PPC_TACR:
1925 vcpu->arch.tacr = set_reg_val(id, *val);
1926 break;
1927 case KVM_REG_PPC_TCSCR:
1928 vcpu->arch.tcscr = set_reg_val(id, *val);
1929 break;
1930 case KVM_REG_PPC_PID:
1931 vcpu->arch.pid = set_reg_val(id, *val);
1932 break;
1933 case KVM_REG_PPC_ACOP:
1934 vcpu->arch.acop = set_reg_val(id, *val);
1935 break;
1936 case KVM_REG_PPC_WORT:
1937 vcpu->arch.wort = set_reg_val(id, *val);
1938 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001939 case KVM_REG_PPC_TIDR:
1940 vcpu->arch.tid = set_reg_val(id, *val);
1941 break;
1942 case KVM_REG_PPC_PSSCR:
1943 vcpu->arch.psscr = set_reg_val(id, *val) & PSSCR_GUEST_VIS;
1944 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001945 case KVM_REG_PPC_VPA_ADDR:
1946 addr = set_reg_val(id, *val);
1947 r = -EINVAL;
1948 if (!addr && (vcpu->arch.slb_shadow.next_gpa ||
1949 vcpu->arch.dtl.next_gpa))
1950 break;
1951 r = set_vpa(vcpu, &vcpu->arch.vpa, addr, sizeof(struct lppaca));
1952 break;
1953 case KVM_REG_PPC_VPA_SLB:
1954 addr = val->vpaval.addr;
1955 len = val->vpaval.length;
1956 r = -EINVAL;
1957 if (addr && !vcpu->arch.vpa.next_gpa)
1958 break;
1959 r = set_vpa(vcpu, &vcpu->arch.slb_shadow, addr, len);
1960 break;
1961 case KVM_REG_PPC_VPA_DTL:
1962 addr = val->vpaval.addr;
1963 len = val->vpaval.length;
1964 r = -EINVAL;
Paul Mackerras9f8c8c72012-10-15 01:18:37 +00001965 if (addr && (len < sizeof(struct dtl_entry) ||
1966 !vcpu->arch.vpa.next_gpa))
Paul Mackerras55b665b2012-09-25 20:33:06 +00001967 break;
1968 len -= len % sizeof(struct dtl_entry);
1969 r = set_vpa(vcpu, &vcpu->arch.dtl, addr, len);
1970 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001971 case KVM_REG_PPC_TB_OFFSET:
1972 /* round up to multiple of 2^24 */
1973 vcpu->arch.vcore->tb_offset =
1974 ALIGN(set_reg_val(id, *val), 1UL << 24);
1975 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001976 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001977 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), true);
1978 break;
1979 case KVM_REG_PPC_LPCR_64:
1980 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), false);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001981 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001982 case KVM_REG_PPC_PPR:
1983 vcpu->arch.ppr = set_reg_val(id, *val);
1984 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001985#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1986 case KVM_REG_PPC_TFHAR:
1987 vcpu->arch.tfhar = set_reg_val(id, *val);
1988 break;
1989 case KVM_REG_PPC_TFIAR:
1990 vcpu->arch.tfiar = set_reg_val(id, *val);
1991 break;
1992 case KVM_REG_PPC_TEXASR:
1993 vcpu->arch.texasr = set_reg_val(id, *val);
1994 break;
1995 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
1996 i = id - KVM_REG_PPC_TM_GPR0;
1997 vcpu->arch.gpr_tm[i] = set_reg_val(id, *val);
1998 break;
1999 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
2000 {
2001 int j;
2002 i = id - KVM_REG_PPC_TM_VSR0;
2003 if (i < 32)
2004 for (j = 0; j < TS_FPRWIDTH; j++)
2005 vcpu->arch.fp_tm.fpr[i][j] = val->vsxval[j];
2006 else
2007 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2008 vcpu->arch.vr_tm.vr[i-32] = val->vval;
2009 else
2010 r = -ENXIO;
2011 break;
2012 }
2013 case KVM_REG_PPC_TM_CR:
2014 vcpu->arch.cr_tm = set_reg_val(id, *val);
2015 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11002016 case KVM_REG_PPC_TM_XER:
2017 vcpu->arch.xer_tm = set_reg_val(id, *val);
2018 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002019 case KVM_REG_PPC_TM_LR:
2020 vcpu->arch.lr_tm = set_reg_val(id, *val);
2021 break;
2022 case KVM_REG_PPC_TM_CTR:
2023 vcpu->arch.ctr_tm = set_reg_val(id, *val);
2024 break;
2025 case KVM_REG_PPC_TM_FPSCR:
2026 vcpu->arch.fp_tm.fpscr = set_reg_val(id, *val);
2027 break;
2028 case KVM_REG_PPC_TM_AMR:
2029 vcpu->arch.amr_tm = set_reg_val(id, *val);
2030 break;
2031 case KVM_REG_PPC_TM_PPR:
2032 vcpu->arch.ppr_tm = set_reg_val(id, *val);
2033 break;
2034 case KVM_REG_PPC_TM_VRSAVE:
2035 vcpu->arch.vrsave_tm = set_reg_val(id, *val);
2036 break;
2037 case KVM_REG_PPC_TM_VSCR:
2038 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2039 vcpu->arch.vr.vscr.u[3] = set_reg_val(id, *val);
2040 else
2041 r = - ENXIO;
2042 break;
2043 case KVM_REG_PPC_TM_DSCR:
2044 vcpu->arch.dscr_tm = set_reg_val(id, *val);
2045 break;
2046 case KVM_REG_PPC_TM_TAR:
2047 vcpu->arch.tar_tm = set_reg_val(id, *val);
2048 break;
2049#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10002050 case KVM_REG_PPC_ARCH_COMPAT:
2051 r = kvmppc_set_arch_compat(vcpu, set_reg_val(id, *val));
2052 break;
Paul Mackerras58555642018-01-12 20:55:20 +11002053 case KVM_REG_PPC_DEC_EXPIRY:
2054 vcpu->arch.dec_expires = set_reg_val(id, *val) -
2055 vcpu->arch.vcore->tb_offset;
2056 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002057 case KVM_REG_PPC_ONLINE:
Paul Mackerras7aa15842018-04-20 19:53:22 +10002058 i = set_reg_val(id, *val);
2059 if (i && !vcpu->arch.online)
2060 atomic_inc(&vcpu->arch.vcore->online_count);
2061 else if (!i && vcpu->arch.online)
2062 atomic_dec(&vcpu->arch.vcore->online_count);
2063 vcpu->arch.online = i;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002064 break;
Paul Mackerras30323412018-10-08 16:31:13 +11002065 case KVM_REG_PPC_PTCR:
2066 vcpu->kvm->arch.l1_ptcr = set_reg_val(id, *val);
2067 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00002068 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002069 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00002070 break;
2071 }
2072
2073 return r;
2074}
2075
Paul Mackerras45c940b2016-11-18 17:43:30 +11002076/*
2077 * On POWER9, threads are independent and can be in different partitions.
2078 * Therefore we consider each thread to be a subcore.
2079 * There is a restriction that all threads have to be in the same
2080 * MMU mode (radix or HPT), unfortunately, but since we only support
2081 * HPT guests on a HPT host so far, that isn't an impediment yet.
2082 */
Paul Mackerras516f7892017-10-16 16:11:57 +11002083static int threads_per_vcore(struct kvm *kvm)
Paul Mackerras45c940b2016-11-18 17:43:30 +11002084{
Paul Mackerras516f7892017-10-16 16:11:57 +11002085 if (kvm->arch.threads_indep)
Paul Mackerras45c940b2016-11-18 17:43:30 +11002086 return 1;
2087 return threads_per_subcore;
2088}
2089
Sam Bobroff1e175d22018-07-25 16:12:02 +10002090static struct kvmppc_vcore *kvmppc_vcore_create(struct kvm *kvm, int id)
Stewart Smithde9bdd12014-07-18 14:18:42 +10002091{
2092 struct kvmppc_vcore *vcore;
2093
2094 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
2095
2096 if (vcore == NULL)
2097 return NULL;
2098
Stewart Smithde9bdd12014-07-18 14:18:42 +10002099 spin_lock_init(&vcore->lock);
Paul Mackerras2711e242014-12-04 16:43:28 +11002100 spin_lock_init(&vcore->stoltb_lock);
Marcelo Tosatti85773702016-02-19 09:46:39 +01002101 init_swait_queue_head(&vcore->wq);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002102 vcore->preempt_tb = TB_NIL;
2103 vcore->lpcr = kvm->arch.lpcr;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002104 vcore->first_vcpuid = id;
Stewart Smithde9bdd12014-07-18 14:18:42 +10002105 vcore->kvm = kvm;
Paul Mackerrasec257162015-06-24 21:18:03 +10002106 INIT_LIST_HEAD(&vcore->preempt_list);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002107
2108 return vcore;
2109}
2110
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002111#ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
2112static struct debugfs_timings_element {
2113 const char *name;
2114 size_t offset;
2115} timings[] = {
2116 {"rm_entry", offsetof(struct kvm_vcpu, arch.rm_entry)},
2117 {"rm_intr", offsetof(struct kvm_vcpu, arch.rm_intr)},
2118 {"rm_exit", offsetof(struct kvm_vcpu, arch.rm_exit)},
2119 {"guest", offsetof(struct kvm_vcpu, arch.guest_time)},
2120 {"cede", offsetof(struct kvm_vcpu, arch.cede_time)},
2121};
2122
Thomas Meyer4bb817ed2017-09-03 14:19:31 +02002123#define N_TIMINGS (ARRAY_SIZE(timings))
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002124
2125struct debugfs_timings_state {
2126 struct kvm_vcpu *vcpu;
2127 unsigned int buflen;
2128 char buf[N_TIMINGS * 100];
2129};
2130
2131static int debugfs_timings_open(struct inode *inode, struct file *file)
2132{
2133 struct kvm_vcpu *vcpu = inode->i_private;
2134 struct debugfs_timings_state *p;
2135
2136 p = kzalloc(sizeof(*p), GFP_KERNEL);
2137 if (!p)
2138 return -ENOMEM;
2139
2140 kvm_get_kvm(vcpu->kvm);
2141 p->vcpu = vcpu;
2142 file->private_data = p;
2143
2144 return nonseekable_open(inode, file);
2145}
2146
2147static int debugfs_timings_release(struct inode *inode, struct file *file)
2148{
2149 struct debugfs_timings_state *p = file->private_data;
2150
2151 kvm_put_kvm(p->vcpu->kvm);
2152 kfree(p);
2153 return 0;
2154}
2155
2156static ssize_t debugfs_timings_read(struct file *file, char __user *buf,
2157 size_t len, loff_t *ppos)
2158{
2159 struct debugfs_timings_state *p = file->private_data;
2160 struct kvm_vcpu *vcpu = p->vcpu;
2161 char *s, *buf_end;
2162 struct kvmhv_tb_accumulator tb;
2163 u64 count;
2164 loff_t pos;
2165 ssize_t n;
2166 int i, loops;
2167 bool ok;
2168
2169 if (!p->buflen) {
2170 s = p->buf;
2171 buf_end = s + sizeof(p->buf);
2172 for (i = 0; i < N_TIMINGS; ++i) {
2173 struct kvmhv_tb_accumulator *acc;
2174
2175 acc = (struct kvmhv_tb_accumulator *)
2176 ((unsigned long)vcpu + timings[i].offset);
2177 ok = false;
2178 for (loops = 0; loops < 1000; ++loops) {
2179 count = acc->seqcount;
2180 if (!(count & 1)) {
2181 smp_rmb();
2182 tb = *acc;
2183 smp_rmb();
2184 if (count == acc->seqcount) {
2185 ok = true;
2186 break;
2187 }
2188 }
2189 udelay(1);
2190 }
2191 if (!ok)
2192 snprintf(s, buf_end - s, "%s: stuck\n",
2193 timings[i].name);
2194 else
2195 snprintf(s, buf_end - s,
2196 "%s: %llu %llu %llu %llu\n",
2197 timings[i].name, count / 2,
2198 tb_to_ns(tb.tb_total),
2199 tb_to_ns(tb.tb_min),
2200 tb_to_ns(tb.tb_max));
2201 s += strlen(s);
2202 }
2203 p->buflen = s - p->buf;
2204 }
2205
2206 pos = *ppos;
2207 if (pos >= p->buflen)
2208 return 0;
2209 if (len > p->buflen - pos)
2210 len = p->buflen - pos;
2211 n = copy_to_user(buf, p->buf + pos, len);
2212 if (n) {
2213 if (n == len)
2214 return -EFAULT;
2215 len -= n;
2216 }
2217 *ppos = pos + len;
2218 return len;
2219}
2220
2221static ssize_t debugfs_timings_write(struct file *file, const char __user *buf,
2222 size_t len, loff_t *ppos)
2223{
2224 return -EACCES;
2225}
2226
2227static const struct file_operations debugfs_timings_ops = {
2228 .owner = THIS_MODULE,
2229 .open = debugfs_timings_open,
2230 .release = debugfs_timings_release,
2231 .read = debugfs_timings_read,
2232 .write = debugfs_timings_write,
2233 .llseek = generic_file_llseek,
2234};
2235
2236/* Create a debugfs directory for the vcpu */
2237static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2238{
2239 char buf[16];
2240 struct kvm *kvm = vcpu->kvm;
2241
2242 snprintf(buf, sizeof(buf), "vcpu%u", id);
2243 if (IS_ERR_OR_NULL(kvm->arch.debugfs_dir))
2244 return;
2245 vcpu->arch.debugfs_dir = debugfs_create_dir(buf, kvm->arch.debugfs_dir);
2246 if (IS_ERR_OR_NULL(vcpu->arch.debugfs_dir))
2247 return;
2248 vcpu->arch.debugfs_timings =
2249 debugfs_create_file("timings", 0444, vcpu->arch.debugfs_dir,
2250 vcpu, &debugfs_timings_ops);
2251}
2252
2253#else /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2254static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2255{
2256}
2257#endif /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2258
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302259static struct kvm_vcpu *kvmppc_core_vcpu_create_hv(struct kvm *kvm,
2260 unsigned int id)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002261{
2262 struct kvm_vcpu *vcpu;
Paul Mackerras3c313522017-02-06 13:24:41 +11002263 int err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002264 int core;
2265 struct kvmppc_vcore *vcore;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002266
Paul Mackerras371fefd2011-06-29 00:23:08 +00002267 err = -ENOMEM;
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002268 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002269 if (!vcpu)
2270 goto out;
2271
2272 err = kvm_vcpu_init(vcpu, kvm, id);
2273 if (err)
2274 goto free_vcpu;
2275
2276 vcpu->arch.shared = &vcpu->arch.shregs;
Alexander Graf5deb8e72014-04-24 13:46:24 +02002277#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2278 /*
2279 * The shared struct is never shared on HV,
2280 * so we can always use host endianness
2281 */
2282#ifdef __BIG_ENDIAN__
2283 vcpu->arch.shared_big_endian = true;
2284#else
2285 vcpu->arch.shared_big_endian = false;
2286#endif
2287#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +00002288 vcpu->arch.mmcr[0] = MMCR0_FC;
2289 vcpu->arch.ctrl = CTRL_RUNLATCH;
2290 /* default to host PVR, since we can't spoof it */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302291 kvmppc_set_pvr_hv(vcpu, mfspr(SPRN_PVR));
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002292 spin_lock_init(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002293 spin_lock_init(&vcpu->arch.tbacct_lock);
2294 vcpu->arch.busy_preempt = TB_NIL;
Anton Blanchardd6829162014-01-08 21:25:30 +11002295 vcpu->arch.intr_msr = MSR_SF | MSR_ME;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002296
Paul Mackerras769377f2017-02-15 14:30:17 +11002297 /*
2298 * Set the default HFSCR for the guest from the host value.
2299 * This value is only used on POWER9.
Paul Mackerras57900692017-05-16 16:41:20 +10002300 * On POWER9, we want to virtualize the doorbell facility, so we
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002301 * don't set the HFSCR_MSGP bit, and that causes those instructions
2302 * to trap and then we emulate them.
Paul Mackerras769377f2017-02-15 14:30:17 +11002303 */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002304 vcpu->arch.hfscr = HFSCR_TAR | HFSCR_EBB | HFSCR_PM | HFSCR_BHRB |
2305 HFSCR_DSCR | HFSCR_VECVSX | HFSCR_FP;
2306 if (cpu_has_feature(CPU_FTR_HVMODE)) {
2307 vcpu->arch.hfscr &= mfspr(SPRN_HFSCR);
2308 if (cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
2309 vcpu->arch.hfscr |= HFSCR_TM;
2310 }
2311 if (cpu_has_feature(CPU_FTR_TM_COMP))
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002312 vcpu->arch.hfscr |= HFSCR_TM;
Paul Mackerras769377f2017-02-15 14:30:17 +11002313
Paul Mackerrasde56a942011-06-29 00:21:34 +00002314 kvmppc_mmu_book3s_hv_init(vcpu);
2315
Paul Mackerras8455d792012-10-15 01:17:42 +00002316 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002317
2318 init_waitqueue_head(&vcpu->arch.cpu_run);
2319
2320 mutex_lock(&kvm->lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002321 vcore = NULL;
2322 err = -EINVAL;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002323 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasb5c6f762018-07-26 15:38:41 +10002324 if (id >= (KVM_MAX_VCPUS * kvm->arch.emul_smt_mode)) {
2325 pr_devel("KVM: VCPU ID too high\n");
2326 core = KVM_MAX_VCORES;
2327 } else {
2328 BUG_ON(kvm->arch.smt_mode != 1);
2329 core = kvmppc_pack_vcpu_id(kvm, id);
2330 }
Sam Bobroff1e175d22018-07-25 16:12:02 +10002331 } else {
2332 core = id / kvm->arch.smt_mode;
2333 }
Paul Mackerras3c313522017-02-06 13:24:41 +11002334 if (core < KVM_MAX_VCORES) {
2335 vcore = kvm->arch.vcores[core];
Sam Bobroff1e175d22018-07-25 16:12:02 +10002336 if (vcore && cpu_has_feature(CPU_FTR_ARCH_300)) {
2337 pr_devel("KVM: collision on id %u", id);
2338 vcore = NULL;
2339 } else if (!vcore) {
Paul Mackerras3c313522017-02-06 13:24:41 +11002340 err = -ENOMEM;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002341 vcore = kvmppc_vcore_create(kvm,
2342 id & ~(kvm->arch.smt_mode - 1));
Paul Mackerras3c313522017-02-06 13:24:41 +11002343 kvm->arch.vcores[core] = vcore;
2344 kvm->arch.online_vcores++;
2345 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002346 }
2347 mutex_unlock(&kvm->lock);
2348
2349 if (!vcore)
2350 goto free_vcpu;
2351
2352 spin_lock(&vcore->lock);
2353 ++vcore->num_threads;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002354 spin_unlock(&vcore->lock);
2355 vcpu->arch.vcore = vcore;
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11002356 vcpu->arch.ptid = vcpu->vcpu_id - vcore->first_vcpuid;
Paul Mackerrasec257162015-06-24 21:18:03 +10002357 vcpu->arch.thread_cpu = -1;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002358 vcpu->arch.prev_cpu = -1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002359
Alexander Grafaf8f38b2011-08-10 13:57:08 +02002360 vcpu->arch.cpu_type = KVM_CPU_3S_64;
2361 kvmppc_sanity_check(vcpu);
2362
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002363 debugfs_vcpu_init(vcpu, id);
2364
Paul Mackerrasde56a942011-06-29 00:21:34 +00002365 return vcpu;
2366
2367free_vcpu:
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002368 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002369out:
2370 return ERR_PTR(err);
2371}
2372
Paul Mackerras3c313522017-02-06 13:24:41 +11002373static int kvmhv_set_smt_mode(struct kvm *kvm, unsigned long smt_mode,
2374 unsigned long flags)
2375{
2376 int err;
Paul Mackerras57900692017-05-16 16:41:20 +10002377 int esmt = 0;
Paul Mackerras3c313522017-02-06 13:24:41 +11002378
2379 if (flags)
2380 return -EINVAL;
2381 if (smt_mode > MAX_SMT_THREADS || !is_power_of_2(smt_mode))
2382 return -EINVAL;
2383 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
2384 /*
2385 * On POWER8 (or POWER7), the threading mode is "strict",
2386 * so we pack smt_mode vcpus per vcore.
2387 */
2388 if (smt_mode > threads_per_subcore)
2389 return -EINVAL;
2390 } else {
2391 /*
2392 * On POWER9, the threading mode is "loose",
2393 * so each vcpu gets its own vcore.
2394 */
Paul Mackerras57900692017-05-16 16:41:20 +10002395 esmt = smt_mode;
Paul Mackerras3c313522017-02-06 13:24:41 +11002396 smt_mode = 1;
2397 }
2398 mutex_lock(&kvm->lock);
2399 err = -EBUSY;
2400 if (!kvm->arch.online_vcores) {
2401 kvm->arch.smt_mode = smt_mode;
Paul Mackerras57900692017-05-16 16:41:20 +10002402 kvm->arch.emul_smt_mode = esmt;
Paul Mackerras3c313522017-02-06 13:24:41 +11002403 err = 0;
2404 }
2405 mutex_unlock(&kvm->lock);
2406
2407 return err;
2408}
2409
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002410static void unpin_vpa(struct kvm *kvm, struct kvmppc_vpa *vpa)
2411{
2412 if (vpa->pinned_addr)
2413 kvmppc_unpin_guest_page(kvm, vpa->pinned_addr, vpa->gpa,
2414 vpa->dirty);
2415}
2416
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302417static void kvmppc_core_vcpu_free_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002418{
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002419 spin_lock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002420 unpin_vpa(vcpu->kvm, &vcpu->arch.dtl);
2421 unpin_vpa(vcpu->kvm, &vcpu->arch.slb_shadow);
2422 unpin_vpa(vcpu->kvm, &vcpu->arch.vpa);
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002423 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002424 kvm_vcpu_uninit(vcpu);
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002425 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002426}
2427
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302428static int kvmppc_core_check_requests_hv(struct kvm_vcpu *vcpu)
2429{
2430 /* Indicate we want to get back into the guest */
2431 return 1;
2432}
2433
Paul Mackerras19ccb762011-07-23 17:42:46 +10002434static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002435{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002436 unsigned long dec_nsec, now;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002437
Paul Mackerras19ccb762011-07-23 17:42:46 +10002438 now = get_tb();
2439 if (now > vcpu->arch.dec_expires) {
2440 /* decrementer has already gone negative */
2441 kvmppc_core_queue_dec(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -06002442 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002443 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002444 }
Paul Mackerrasc43befc2018-10-20 20:54:55 +11002445 dec_nsec = tb_to_ns(vcpu->arch.dec_expires - now);
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002446 hrtimer_start(&vcpu->arch.dec_timer, dec_nsec, HRTIMER_MODE_REL);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002447 vcpu->arch.timer_running = 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002448}
2449
Paul Mackerras19ccb762011-07-23 17:42:46 +10002450static void kvmppc_end_cede(struct kvm_vcpu *vcpu)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002451{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002452 vcpu->arch.ceded = 0;
2453 if (vcpu->arch.timer_running) {
2454 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2455 vcpu->arch.timer_running = 0;
2456 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002457}
2458
Paul Mackerras8b24e692017-06-26 15:45:51 +10002459extern int __kvmppc_vcore_entry(void);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002460
2461static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
2462 struct kvm_vcpu *vcpu)
2463{
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002464 u64 now;
2465
Paul Mackerras371fefd2011-06-29 00:23:08 +00002466 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
2467 return;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002468 spin_lock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002469 now = mftb();
2470 vcpu->arch.busy_stolen += vcore_stolen_time(vc, now) -
2471 vcpu->arch.stolen_logged;
2472 vcpu->arch.busy_preempt = now;
2473 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002474 spin_unlock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002475 --vc->n_runnable;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002476 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], NULL);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002477}
2478
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002479static int kvmppc_grab_hwthread(int cpu)
2480{
2481 struct paca_struct *tpaca;
Paul Mackerrasb754c732014-09-02 16:14:42 +10002482 long timeout = 10000;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002483
Nicholas Piggind2e60072018-02-14 01:08:12 +10002484 tpaca = paca_ptrs[cpu];
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002485
2486 /* Ensure the thread won't go into the kernel if it wakes */
Paul Mackerras7b444c62012-10-15 01:16:14 +00002487 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002488 tpaca->kvm_hstate.kvm_vcore = NULL;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002489 tpaca->kvm_hstate.napping = 0;
2490 smp_wmb();
2491 tpaca->kvm_hstate.hwthread_req = 1;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002492
2493 /*
2494 * If the thread is already executing in the kernel (e.g. handling
2495 * a stray interrupt), wait for it to get back to nap mode.
2496 * The smp_mb() is to ensure that our setting of hwthread_req
2497 * is visible before we look at hwthread_state, so if this
2498 * races with the code at system_reset_pSeries and the thread
2499 * misses our setting of hwthread_req, we are sure to see its
2500 * setting of hwthread_state, and vice versa.
2501 */
2502 smp_mb();
2503 while (tpaca->kvm_hstate.hwthread_state == KVM_HWTHREAD_IN_KERNEL) {
2504 if (--timeout <= 0) {
2505 pr_err("KVM: couldn't grab cpu %d\n", cpu);
2506 return -EBUSY;
2507 }
2508 udelay(1);
2509 }
2510 return 0;
2511}
2512
2513static void kvmppc_release_hwthread(int cpu)
2514{
2515 struct paca_struct *tpaca;
2516
Nicholas Piggind2e60072018-02-14 01:08:12 +10002517 tpaca = paca_ptrs[cpu];
Paul Mackerras31a4d442017-10-19 15:14:20 +11002518 tpaca->kvm_hstate.hwthread_req = 0;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002519 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002520 tpaca->kvm_hstate.kvm_vcore = NULL;
2521 tpaca->kvm_hstate.kvm_split_mode = NULL;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002522}
2523
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002524static void radix_flush_cpu(struct kvm *kvm, int cpu, struct kvm_vcpu *vcpu)
2525{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002526 struct kvm_nested_guest *nested = vcpu->arch.nested;
2527 cpumask_t *cpu_in_guest;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002528 int i;
2529
2530 cpu = cpu_first_thread_sibling(cpu);
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002531 if (nested) {
2532 cpumask_set_cpu(cpu, &nested->need_tlb_flush);
2533 cpu_in_guest = &nested->cpu_in_guest;
2534 } else {
2535 cpumask_set_cpu(cpu, &kvm->arch.need_tlb_flush);
2536 cpu_in_guest = &kvm->arch.cpu_in_guest;
2537 }
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002538 /*
2539 * Make sure setting of bit in need_tlb_flush precedes
2540 * testing of cpu_in_guest bits. The matching barrier on
2541 * the other side is the first smp_mb() in kvmppc_run_core().
2542 */
2543 smp_mb();
2544 for (i = 0; i < threads_per_core; ++i)
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002545 if (cpumask_test_cpu(cpu + i, cpu_in_guest))
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002546 smp_call_function_single(cpu + i, do_nothing, NULL, 1);
2547}
2548
Paul Mackerras8b24e692017-06-26 15:45:51 +10002549static void kvmppc_prepare_radix_vcpu(struct kvm_vcpu *vcpu, int pcpu)
2550{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002551 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002552 struct kvm *kvm = vcpu->kvm;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002553 int prev_cpu;
2554
2555 if (!cpu_has_feature(CPU_FTR_HVMODE))
2556 return;
2557
2558 if (nested)
2559 prev_cpu = nested->prev_cpu[vcpu->arch.nested_vcpu_id];
2560 else
2561 prev_cpu = vcpu->arch.prev_cpu;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002562
2563 /*
2564 * With radix, the guest can do TLB invalidations itself,
2565 * and it could choose to use the local form (tlbiel) if
2566 * it is invalidating a translation that has only ever been
2567 * used on one vcpu. However, that doesn't mean it has
2568 * only ever been used on one physical cpu, since vcpus
2569 * can move around between pcpus. To cope with this, when
2570 * a vcpu moves from one pcpu to another, we need to tell
2571 * any vcpus running on the same core as this vcpu previously
2572 * ran to flush the TLB. The TLB is shared between threads,
2573 * so we use a single bit in .need_tlb_flush for all 4 threads.
2574 */
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002575 if (prev_cpu != pcpu) {
2576 if (prev_cpu >= 0 &&
2577 cpu_first_thread_sibling(prev_cpu) !=
Paul Mackerras8b24e692017-06-26 15:45:51 +10002578 cpu_first_thread_sibling(pcpu))
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002579 radix_flush_cpu(kvm, prev_cpu, vcpu);
2580 if (nested)
2581 nested->prev_cpu[vcpu->arch.nested_vcpu_id] = pcpu;
2582 else
2583 vcpu->arch.prev_cpu = pcpu;
2584 }
2585}
2586
2587static void kvmppc_radix_check_need_tlb_flush(struct kvm *kvm, int pcpu,
2588 struct kvm_nested_guest *nested)
2589{
2590 cpumask_t *need_tlb_flush;
2591 int lpid;
2592
2593 if (!cpu_has_feature(CPU_FTR_HVMODE))
2594 return;
2595
2596 if (cpu_has_feature(CPU_FTR_ARCH_300))
2597 pcpu &= ~0x3UL;
2598
2599 if (nested) {
2600 lpid = nested->shadow_lpid;
2601 need_tlb_flush = &nested->need_tlb_flush;
2602 } else {
2603 lpid = kvm->arch.lpid;
2604 need_tlb_flush = &kvm->arch.need_tlb_flush;
2605 }
2606
2607 mtspr(SPRN_LPID, lpid);
2608 isync();
2609 smp_mb();
2610
2611 if (cpumask_test_cpu(pcpu, need_tlb_flush)) {
2612 radix__local_flush_tlb_lpid_guest(lpid);
2613 /* Clear the bit after the TLB flush */
2614 cpumask_clear_cpu(pcpu, need_tlb_flush);
Paul Mackerras8b24e692017-06-26 15:45:51 +10002615 }
2616}
2617
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002618static void kvmppc_start_thread(struct kvm_vcpu *vcpu, struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002619{
2620 int cpu;
2621 struct paca_struct *tpaca;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002622 struct kvm *kvm = vc->kvm;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002623
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002624 cpu = vc->pcpu;
2625 if (vcpu) {
2626 if (vcpu->arch.timer_running) {
2627 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2628 vcpu->arch.timer_running = 0;
2629 }
2630 cpu += vcpu->arch.ptid;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002631 vcpu->cpu = vc->pcpu;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002632 vcpu->arch.thread_cpu = cpu;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002633 cpumask_set_cpu(cpu, &kvm->arch.cpu_in_guest);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002634 }
Nicholas Piggind2e60072018-02-14 01:08:12 +10002635 tpaca = paca_ptrs[cpu];
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002636 tpaca->kvm_hstate.kvm_vcpu = vcpu;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002637 tpaca->kvm_hstate.ptid = cpu - vc->pcpu;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002638 tpaca->kvm_hstate.fake_suspend = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002639 /* Order stores to hstate.kvm_vcpu etc. before store to kvm_vcore */
Paul Mackerras19ccb762011-07-23 17:42:46 +10002640 smp_wmb();
Paul Mackerras898b25b2017-06-22 15:08:42 +10002641 tpaca->kvm_hstate.kvm_vcore = vc;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002642 if (cpu != smp_processor_id())
Paul Mackerras66feed62015-03-28 14:21:12 +11002643 kvmppc_ipi_thread(cpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002644}
2645
Paul Mackerras516f7892017-10-16 16:11:57 +11002646static void kvmppc_wait_for_nap(int n_threads)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002647{
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002648 int cpu = smp_processor_id();
2649 int i, loops;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002650
Paul Mackerras45c940b2016-11-18 17:43:30 +11002651 if (n_threads <= 1)
2652 return;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002653 for (loops = 0; loops < 1000000; ++loops) {
2654 /*
2655 * Check if all threads are finished.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002656 * We set the vcore pointer when starting a thread
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002657 * and the thread clears it when finished, so we look
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002658 * for any threads that still have a non-NULL vcore ptr.
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002659 */
Paul Mackerras45c940b2016-11-18 17:43:30 +11002660 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002661 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002662 break;
Paul Mackerras45c940b2016-11-18 17:43:30 +11002663 if (i == n_threads) {
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002664 HMT_medium();
2665 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002666 }
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002667 HMT_low();
Paul Mackerras371fefd2011-06-29 00:23:08 +00002668 }
2669 HMT_medium();
Paul Mackerras45c940b2016-11-18 17:43:30 +11002670 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002671 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002672 pr_err("KVM: CPU %d seems to be stuck\n", cpu + i);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002673}
2674
2675/*
2676 * Check that we are on thread 0 and that any other threads in
Paul Mackerras7b444c62012-10-15 01:16:14 +00002677 * this core are off-line. Then grab the threads so they can't
2678 * enter the kernel.
Paul Mackerras371fefd2011-06-29 00:23:08 +00002679 */
2680static int on_primary_thread(void)
2681{
2682 int cpu = smp_processor_id();
Michael Ellerman3102f782014-05-23 18:15:29 +10002683 int thr;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002684
Michael Ellerman3102f782014-05-23 18:15:29 +10002685 /* Are we on a primary subcore? */
2686 if (cpu_thread_in_subcore(cpu))
Paul Mackerras371fefd2011-06-29 00:23:08 +00002687 return 0;
Michael Ellerman3102f782014-05-23 18:15:29 +10002688
2689 thr = 0;
2690 while (++thr < threads_per_subcore)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002691 if (cpu_online(cpu + thr))
2692 return 0;
Paul Mackerras7b444c62012-10-15 01:16:14 +00002693
2694 /* Grab all hw threads so they can't go into the kernel */
Michael Ellerman3102f782014-05-23 18:15:29 +10002695 for (thr = 1; thr < threads_per_subcore; ++thr) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00002696 if (kvmppc_grab_hwthread(cpu + thr)) {
2697 /* Couldn't grab one; let the others go */
2698 do {
2699 kvmppc_release_hwthread(cpu + thr);
2700 } while (--thr > 0);
2701 return 0;
2702 }
2703 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002704 return 1;
2705}
2706
Paul Mackerrasec257162015-06-24 21:18:03 +10002707/*
2708 * A list of virtual cores for each physical CPU.
2709 * These are vcores that could run but their runner VCPU tasks are
2710 * (or may be) preempted.
2711 */
2712struct preempted_vcore_list {
2713 struct list_head list;
2714 spinlock_t lock;
2715};
2716
2717static DEFINE_PER_CPU(struct preempted_vcore_list, preempted_vcores);
2718
2719static void init_vcore_lists(void)
2720{
2721 int cpu;
2722
2723 for_each_possible_cpu(cpu) {
2724 struct preempted_vcore_list *lp = &per_cpu(preempted_vcores, cpu);
2725 spin_lock_init(&lp->lock);
2726 INIT_LIST_HEAD(&lp->list);
2727 }
2728}
2729
2730static void kvmppc_vcore_preempt(struct kvmppc_vcore *vc)
2731{
2732 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2733
2734 vc->vcore_state = VCORE_PREEMPT;
2735 vc->pcpu = smp_processor_id();
Paul Mackerras516f7892017-10-16 16:11:57 +11002736 if (vc->num_threads < threads_per_vcore(vc->kvm)) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002737 spin_lock(&lp->lock);
2738 list_add_tail(&vc->preempt_list, &lp->list);
2739 spin_unlock(&lp->lock);
2740 }
2741
2742 /* Start accumulating stolen time */
2743 kvmppc_core_start_stolen(vc);
2744}
2745
2746static void kvmppc_vcore_end_preempt(struct kvmppc_vcore *vc)
2747{
Paul Mackerras402813f2015-07-16 17:11:13 +10002748 struct preempted_vcore_list *lp;
Paul Mackerrasec257162015-06-24 21:18:03 +10002749
2750 kvmppc_core_end_stolen(vc);
2751 if (!list_empty(&vc->preempt_list)) {
Paul Mackerras402813f2015-07-16 17:11:13 +10002752 lp = &per_cpu(preempted_vcores, vc->pcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002753 spin_lock(&lp->lock);
2754 list_del_init(&vc->preempt_list);
2755 spin_unlock(&lp->lock);
2756 }
2757 vc->vcore_state = VCORE_INACTIVE;
2758}
2759
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002760/*
2761 * This stores information about the virtual cores currently
2762 * assigned to a physical core.
2763 */
Paul Mackerrasec257162015-06-24 21:18:03 +10002764struct core_info {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002765 int n_subcores;
2766 int max_subcore_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002767 int total_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002768 int subcore_threads[MAX_SUBCORES];
Paul Mackerras898b25b2017-06-22 15:08:42 +10002769 struct kvmppc_vcore *vc[MAX_SUBCORES];
Paul Mackerrasec257162015-06-24 21:18:03 +10002770};
2771
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002772/*
2773 * This mapping means subcores 0 and 1 can use threads 0-3 and 4-7
Paul Mackerras516f7892017-10-16 16:11:57 +11002774 * respectively in 2-way micro-threading (split-core) mode on POWER8.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002775 */
2776static int subcore_thread_map[MAX_SUBCORES] = { 0, 4, 2, 6 };
2777
Paul Mackerrasec257162015-06-24 21:18:03 +10002778static void init_core_info(struct core_info *cip, struct kvmppc_vcore *vc)
2779{
2780 memset(cip, 0, sizeof(*cip));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002781 cip->n_subcores = 1;
2782 cip->max_subcore_threads = vc->num_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002783 cip->total_threads = vc->num_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002784 cip->subcore_threads[0] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002785 cip->vc[0] = vc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002786}
2787
2788static bool subcore_config_ok(int n_subcores, int n_threads)
2789{
Paul Mackerras516f7892017-10-16 16:11:57 +11002790 /*
Paul Mackerras00608e12018-01-11 16:54:26 +11002791 * POWER9 "SMT4" cores are permanently in what is effectively a 4-way
2792 * split-core mode, with one thread per subcore.
Paul Mackerras516f7892017-10-16 16:11:57 +11002793 */
2794 if (cpu_has_feature(CPU_FTR_ARCH_300))
2795 return n_subcores <= 4 && n_threads == 1;
2796
2797 /* On POWER8, can only dynamically split if unsplit to begin with */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002798 if (n_subcores > 1 && threads_per_subcore < MAX_SMT_THREADS)
2799 return false;
2800 if (n_subcores > MAX_SUBCORES)
2801 return false;
2802 if (n_subcores > 1) {
2803 if (!(dynamic_mt_modes & 2))
2804 n_subcores = 4;
2805 if (n_subcores > 2 && !(dynamic_mt_modes & 4))
2806 return false;
2807 }
2808
2809 return n_subcores * roundup_pow_of_two(n_threads) <= MAX_SMT_THREADS;
Paul Mackerrasec257162015-06-24 21:18:03 +10002810}
2811
Paul Mackerras898b25b2017-06-22 15:08:42 +10002812static void init_vcore_to_run(struct kvmppc_vcore *vc)
Paul Mackerrasec257162015-06-24 21:18:03 +10002813{
Paul Mackerrasec257162015-06-24 21:18:03 +10002814 vc->entry_exit_map = 0;
2815 vc->in_guest = 0;
2816 vc->napping_threads = 0;
2817 vc->conferring_threads = 0;
Paul Mackerras57b8daa2018-04-20 22:51:11 +10002818 vc->tb_offset_applied = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002819}
2820
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002821static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip)
2822{
2823 int n_threads = vc->num_threads;
2824 int sub;
2825
2826 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
2827 return false;
2828
Paul Mackerrasaa227862018-09-12 10:42:12 +10002829 /* In one_vm_per_core mode, require all vcores to be from the same vm */
2830 if (one_vm_per_core && vc->kvm != cip->vc[0]->kvm)
2831 return false;
2832
Paul Mackerras00608e12018-01-11 16:54:26 +11002833 /* Some POWER9 chips require all threads to be in the same MMU mode */
2834 if (no_mixing_hpt_and_radix &&
Paul Mackerrasc0101502017-10-19 14:11:23 +11002835 kvm_is_radix(vc->kvm) != kvm_is_radix(cip->vc[0]->kvm))
2836 return false;
2837
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002838 if (n_threads < cip->max_subcore_threads)
2839 n_threads = cip->max_subcore_threads;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002840 if (!subcore_config_ok(cip->n_subcores + 1, n_threads))
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002841 return false;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002842 cip->max_subcore_threads = n_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002843
2844 sub = cip->n_subcores;
2845 ++cip->n_subcores;
2846 cip->total_threads += vc->num_threads;
2847 cip->subcore_threads[sub] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002848 cip->vc[sub] = vc;
2849 init_vcore_to_run(vc);
2850 list_del_init(&vc->preempt_list);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002851
2852 return true;
2853}
2854
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002855/*
2856 * Work out whether it is possible to piggyback the execution of
2857 * vcore *pvc onto the execution of the other vcores described in *cip.
2858 */
2859static bool can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip,
2860 int target_threads)
2861{
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002862 if (cip->total_threads + pvc->num_threads > target_threads)
2863 return false;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002864
Paul Mackerrasb0090312016-09-15 16:27:41 +10002865 return can_dynamic_split(pvc, cip);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002866}
2867
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002868static void prepare_threads(struct kvmppc_vcore *vc)
2869{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002870 int i;
2871 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002872
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002873 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002874 if (signal_pending(vcpu->arch.run_task))
2875 vcpu->arch.ret = -EINTR;
2876 else if (vcpu->arch.vpa.update_pending ||
2877 vcpu->arch.slb_shadow.update_pending ||
2878 vcpu->arch.dtl.update_pending)
2879 vcpu->arch.ret = RESUME_GUEST;
2880 else
2881 continue;
2882 kvmppc_remove_runnable(vc, vcpu);
2883 wake_up(&vcpu->arch.cpu_run);
2884 }
2885}
2886
Paul Mackerrasec257162015-06-24 21:18:03 +10002887static void collect_piggybacks(struct core_info *cip, int target_threads)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002888{
Paul Mackerrasec257162015-06-24 21:18:03 +10002889 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2890 struct kvmppc_vcore *pvc, *vcnext;
2891
2892 spin_lock(&lp->lock);
2893 list_for_each_entry_safe(pvc, vcnext, &lp->list, preempt_list) {
2894 if (!spin_trylock(&pvc->lock))
2895 continue;
2896 prepare_threads(pvc);
2897 if (!pvc->n_runnable) {
2898 list_del_init(&pvc->preempt_list);
2899 if (pvc->runner == NULL) {
2900 pvc->vcore_state = VCORE_INACTIVE;
2901 kvmppc_core_end_stolen(pvc);
2902 }
2903 spin_unlock(&pvc->lock);
2904 continue;
2905 }
2906 if (!can_piggyback(pvc, cip, target_threads)) {
2907 spin_unlock(&pvc->lock);
2908 continue;
2909 }
2910 kvmppc_core_end_stolen(pvc);
2911 pvc->vcore_state = VCORE_PIGGYBACK;
2912 if (cip->total_threads >= target_threads)
2913 break;
2914 }
2915 spin_unlock(&lp->lock);
2916}
2917
Paul Mackerras8b24e692017-06-26 15:45:51 +10002918static bool recheck_signals(struct core_info *cip)
2919{
2920 int sub, i;
2921 struct kvm_vcpu *vcpu;
2922
2923 for (sub = 0; sub < cip->n_subcores; ++sub)
2924 for_each_runnable_thread(i, vcpu, cip->vc[sub])
2925 if (signal_pending(vcpu->arch.run_task))
2926 return true;
2927 return false;
2928}
2929
Paul Mackerrasec257162015-06-24 21:18:03 +10002930static void post_guest_process(struct kvmppc_vcore *vc, bool is_master)
2931{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002932 int still_running = 0, i;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002933 u64 now;
2934 long ret;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002935 struct kvm_vcpu *vcpu;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002936
Paul Mackerrasec257162015-06-24 21:18:03 +10002937 spin_lock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002938 now = get_tb();
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002939 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras53655dd2018-10-08 16:30:54 +11002940 /*
2941 * It's safe to unlock the vcore in the loop here, because
2942 * for_each_runnable_thread() is safe against removal of
2943 * the vcpu, and the vcore state is VCORE_EXITING here,
2944 * so any vcpus becoming runnable will have their arch.trap
2945 * set to zero and can't actually run in the guest.
2946 */
2947 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002948 /* cancel pending dec exception if dec is positive */
2949 if (now < vcpu->arch.dec_expires &&
2950 kvmppc_core_pending_dec(vcpu))
2951 kvmppc_core_dequeue_dec(vcpu);
2952
2953 trace_kvm_guest_exit(vcpu);
2954
2955 ret = RESUME_GUEST;
2956 if (vcpu->arch.trap)
2957 ret = kvmppc_handle_exit_hv(vcpu->arch.kvm_run, vcpu,
2958 vcpu->arch.run_task);
2959
2960 vcpu->arch.ret = ret;
2961 vcpu->arch.trap = 0;
2962
Paul Mackerras53655dd2018-10-08 16:30:54 +11002963 spin_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10002964 if (is_kvmppc_resume_guest(vcpu->arch.ret)) {
2965 if (vcpu->arch.pending_exceptions)
2966 kvmppc_core_prepare_to_enter(vcpu);
2967 if (vcpu->arch.ceded)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002968 kvmppc_set_timer(vcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002969 else
2970 ++still_running;
2971 } else {
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002972 kvmppc_remove_runnable(vc, vcpu);
2973 wake_up(&vcpu->arch.cpu_run);
2974 }
2975 }
Paul Mackerrasec257162015-06-24 21:18:03 +10002976 if (!is_master) {
Paul Mackerras563a1e92015-07-16 17:11:14 +10002977 if (still_running > 0) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002978 kvmppc_vcore_preempt(vc);
Paul Mackerras563a1e92015-07-16 17:11:14 +10002979 } else if (vc->runner) {
2980 vc->vcore_state = VCORE_PREEMPT;
2981 kvmppc_core_start_stolen(vc);
2982 } else {
2983 vc->vcore_state = VCORE_INACTIVE;
2984 }
Paul Mackerrasec257162015-06-24 21:18:03 +10002985 if (vc->n_runnable > 0 && vc->runner == NULL) {
2986 /* make sure there's a candidate runner awake */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002987 i = -1;
2988 vcpu = next_runnable_thread(vc, &i);
Paul Mackerrasec257162015-06-24 21:18:03 +10002989 wake_up(&vcpu->arch.cpu_run);
2990 }
2991 }
2992 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002993}
2994
Paul Mackerras371fefd2011-06-29 00:23:08 +00002995/*
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002996 * Clear core from the list of active host cores as we are about to
2997 * enter the guest. Only do this if it is the primary thread of the
2998 * core (not if a subcore) that is entering the guest.
2999 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003000static inline int kvmppc_clear_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003001{
3002 int core;
3003
3004 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003005 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003006 /*
3007 * Memory barrier can be omitted here as we will do a smp_wmb()
3008 * later in kvmppc_start_thread and we need ensure that state is
3009 * visible to other CPUs only after we enter guest.
3010 */
3011 core = cpu >> threads_shift;
3012 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 0;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003013 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003014}
3015
3016/*
3017 * Advertise this core as an active host core since we exited the guest
3018 * Only need to do this if it is the primary thread of the core that is
3019 * exiting.
3020 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003021static inline int kvmppc_set_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003022{
3023 int core;
3024
3025 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003026 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003027
3028 /*
3029 * Memory barrier can be omitted here because we do a spin_unlock
3030 * immediately after this which provides the memory barrier.
3031 */
3032 core = cpu >> threads_shift;
3033 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 1;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003034 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003035}
3036
Paul Mackerras8b24e692017-06-26 15:45:51 +10003037static void set_irq_happened(int trap)
3038{
3039 switch (trap) {
3040 case BOOK3S_INTERRUPT_EXTERNAL:
3041 local_paca->irq_happened |= PACA_IRQ_EE;
3042 break;
3043 case BOOK3S_INTERRUPT_H_DOORBELL:
3044 local_paca->irq_happened |= PACA_IRQ_DBELL;
3045 break;
3046 case BOOK3S_INTERRUPT_HMI:
3047 local_paca->irq_happened |= PACA_IRQ_HMI;
3048 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11003049 case BOOK3S_INTERRUPT_SYSTEM_RESET:
3050 replay_system_reset();
3051 break;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003052 }
3053}
3054
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003055/*
Paul Mackerras371fefd2011-06-29 00:23:08 +00003056 * Run a set of guest threads on a physical core.
3057 * Called with vc->lock held.
3058 */
Paul Mackerras66feed62015-03-28 14:21:12 +11003059static noinline void kvmppc_run_core(struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003060{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003061 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003062 int i;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003063 int srcu_idx;
Paul Mackerrasec257162015-06-24 21:18:03 +10003064 struct core_info core_info;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003065 struct kvmppc_vcore *pvc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003066 struct kvm_split_mode split_info, *sip;
3067 int split, subcore_size, active;
3068 int sub;
3069 bool thr0_done;
3070 unsigned long cmd_bit, stat_bit;
Paul Mackerrasec257162015-06-24 21:18:03 +10003071 int pcpu, thr;
3072 int target_threads;
Paul Mackerras45c940b2016-11-18 17:43:30 +11003073 int controlled_threads;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003074 int trap;
Paul Mackerras516f7892017-10-16 16:11:57 +11003075 bool is_power8;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003076 bool hpt_on_radix;
Paul Mackerras081f3232012-06-01 20:20:24 +10003077
3078 /*
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003079 * Remove from the list any threads that have a signal pending
3080 * or need a VPA update done
3081 */
3082 prepare_threads(vc);
3083
3084 /* if the runner is no longer runnable, let the caller pick a new one */
3085 if (vc->runner->arch.state != KVMPPC_VCPU_RUNNABLE)
3086 return;
3087
3088 /*
3089 * Initialize *vc.
Paul Mackerras081f3232012-06-01 20:20:24 +10003090 */
Paul Mackerras898b25b2017-06-22 15:08:42 +10003091 init_vcore_to_run(vc);
Paul Mackerras2711e242014-12-04 16:43:28 +11003092 vc->preempt_tb = TB_NIL;
Paul Mackerras081f3232012-06-01 20:20:24 +10003093
3094 /*
Paul Mackerras45c940b2016-11-18 17:43:30 +11003095 * Number of threads that we will be controlling: the same as
3096 * the number of threads per subcore, except on POWER9,
3097 * where it's 1 because the threads are (mostly) independent.
3098 */
Paul Mackerras516f7892017-10-16 16:11:57 +11003099 controlled_threads = threads_per_vcore(vc->kvm);
Paul Mackerras45c940b2016-11-18 17:43:30 +11003100
3101 /*
Michael Ellerman3102f782014-05-23 18:15:29 +10003102 * Make sure we are running on primary threads, and that secondary
3103 * threads are offline. Also check if the number of threads in this
3104 * guest are greater than the current system threads per guest.
Paul Mackerrasc0101502017-10-19 14:11:23 +11003105 * On POWER9, we need to be not in independent-threads mode if
Paul Mackerras00608e12018-01-11 16:54:26 +11003106 * this is a HPT guest on a radix host machine where the
3107 * CPU threads may not be in different MMU modes.
Paul Mackerras7b444c62012-10-15 01:16:14 +00003108 */
Paul Mackerras00608e12018-01-11 16:54:26 +11003109 hpt_on_radix = no_mixing_hpt_and_radix && radix_enabled() &&
3110 !kvm_is_radix(vc->kvm);
Paul Mackerrasc0101502017-10-19 14:11:23 +11003111 if (((controlled_threads > 1) &&
3112 ((vc->num_threads > threads_per_subcore) || !on_primary_thread())) ||
3113 (hpt_on_radix && vc->kvm->arch.threads_indep)) {
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003114 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00003115 vcpu->arch.ret = -EBUSY;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003116 kvmppc_remove_runnable(vc, vcpu);
3117 wake_up(&vcpu->arch.cpu_run);
3118 }
Paul Mackerras7b444c62012-10-15 01:16:14 +00003119 goto out;
3120 }
3121
Paul Mackerrasec257162015-06-24 21:18:03 +10003122 /*
3123 * See if we could run any other vcores on the physical core
3124 * along with this one.
3125 */
3126 init_core_info(&core_info, vc);
3127 pcpu = smp_processor_id();
Paul Mackerras45c940b2016-11-18 17:43:30 +11003128 target_threads = controlled_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10003129 if (target_smt_mode && target_smt_mode < target_threads)
3130 target_threads = target_smt_mode;
3131 if (vc->num_threads < target_threads)
3132 collect_piggybacks(&core_info, target_threads);
Michael Ellerman3102f782014-05-23 18:15:29 +10003133
Paul Mackerras8b24e692017-06-26 15:45:51 +10003134 /*
3135 * On radix, arrange for TLB flushing if necessary.
3136 * This has to be done before disabling interrupts since
3137 * it uses smp_call_function().
3138 */
3139 pcpu = smp_processor_id();
3140 if (kvm_is_radix(vc->kvm)) {
3141 for (sub = 0; sub < core_info.n_subcores; ++sub)
3142 for_each_runnable_thread(i, vcpu, core_info.vc[sub])
3143 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
3144 }
3145
3146 /*
3147 * Hard-disable interrupts, and check resched flag and signals.
3148 * If we need to reschedule or deliver a signal, clean up
3149 * and return without going into the guest(s).
Paul Mackerras072df812017-11-09 14:30:24 +11003150 * If the mmu_ready flag has been cleared, don't go into the
Paul Mackerras38c53af2017-11-08 14:44:04 +11003151 * guest because that means a HPT resize operation is in progress.
Paul Mackerras8b24e692017-06-26 15:45:51 +10003152 */
3153 local_irq_disable();
3154 hard_irq_disable();
3155 if (lazy_irq_pending() || need_resched() ||
Paul Mackerras072df812017-11-09 14:30:24 +11003156 recheck_signals(&core_info) || !vc->kvm->arch.mmu_ready) {
Paul Mackerras8b24e692017-06-26 15:45:51 +10003157 local_irq_enable();
3158 vc->vcore_state = VCORE_INACTIVE;
3159 /* Unlock all except the primary vcore */
3160 for (sub = 1; sub < core_info.n_subcores; ++sub) {
3161 pvc = core_info.vc[sub];
3162 /* Put back on to the preempted vcores list */
3163 kvmppc_vcore_preempt(pvc);
3164 spin_unlock(&pvc->lock);
3165 }
3166 for (i = 0; i < controlled_threads; ++i)
3167 kvmppc_release_hwthread(pcpu + i);
3168 return;
3169 }
3170
3171 kvmppc_clear_host_core(pcpu);
3172
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003173 /* Decide on micro-threading (split-core) mode */
3174 subcore_size = threads_per_subcore;
3175 cmd_bit = stat_bit = 0;
3176 split = core_info.n_subcores;
3177 sip = NULL;
Paul Mackerras516f7892017-10-16 16:11:57 +11003178 is_power8 = cpu_has_feature(CPU_FTR_ARCH_207S)
3179 && !cpu_has_feature(CPU_FTR_ARCH_300);
3180
Paul Mackerrasc0101502017-10-19 14:11:23 +11003181 if (split > 1 || hpt_on_radix) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003182 sip = &split_info;
3183 memset(&split_info, 0, sizeof(split_info));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003184 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003185 split_info.vc[sub] = core_info.vc[sub];
Paul Mackerras516f7892017-10-16 16:11:57 +11003186
3187 if (is_power8) {
3188 if (split == 2 && (dynamic_mt_modes & 2)) {
3189 cmd_bit = HID0_POWER8_1TO2LPAR;
3190 stat_bit = HID0_POWER8_2LPARMODE;
3191 } else {
3192 split = 4;
3193 cmd_bit = HID0_POWER8_1TO4LPAR;
3194 stat_bit = HID0_POWER8_4LPARMODE;
3195 }
3196 subcore_size = MAX_SMT_THREADS / split;
3197 split_info.rpr = mfspr(SPRN_RPR);
3198 split_info.pmmar = mfspr(SPRN_PMMAR);
3199 split_info.ldbar = mfspr(SPRN_LDBAR);
3200 split_info.subcore_size = subcore_size;
3201 } else {
3202 split_info.subcore_size = 1;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003203 if (hpt_on_radix) {
3204 /* Use the split_info for LPCR/LPIDR changes */
3205 split_info.lpcr_req = vc->lpcr;
3206 split_info.lpidr_req = vc->kvm->arch.lpid;
3207 split_info.host_lpcr = vc->kvm->arch.host_lpcr;
3208 split_info.do_set = 1;
3209 }
Paul Mackerras516f7892017-10-16 16:11:57 +11003210 }
3211
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003212 /* order writes to split_info before kvm_split_mode pointer */
3213 smp_wmb();
3214 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003215
Paul Mackerrasc0101502017-10-19 14:11:23 +11003216 for (thr = 0; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003217 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3218
3219 paca->kvm_hstate.tid = thr;
3220 paca->kvm_hstate.napping = 0;
3221 paca->kvm_hstate.kvm_split_mode = sip;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003222 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003223
Paul Mackerras516f7892017-10-16 16:11:57 +11003224 /* Initiate micro-threading (split-core) on POWER8 if required */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003225 if (cmd_bit) {
3226 unsigned long hid0 = mfspr(SPRN_HID0);
3227
3228 hid0 |= cmd_bit | HID0_POWER8_DYNLPARDIS;
3229 mb();
3230 mtspr(SPRN_HID0, hid0);
3231 isync();
3232 for (;;) {
3233 hid0 = mfspr(SPRN_HID0);
3234 if (hid0 & stat_bit)
3235 break;
3236 cpu_relax();
3237 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +00003238 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003239
Paul Mackerras7aa15842018-04-20 19:53:22 +10003240 /*
3241 * On POWER8, set RWMR register.
3242 * Since it only affects PURR and SPURR, it doesn't affect
3243 * the host, so we don't save/restore the host value.
3244 */
3245 if (is_power8) {
3246 unsigned long rwmr_val = RWMR_RPA_P8_8THREAD;
3247 int n_online = atomic_read(&vc->online_count);
3248
3249 /*
3250 * Use the 8-thread value if we're doing split-core
3251 * or if the vcore's online count looks bogus.
3252 */
3253 if (split == 1 && threads_per_subcore == MAX_SMT_THREADS &&
3254 n_online >= 1 && n_online <= MAX_SMT_THREADS)
3255 rwmr_val = p8_rwmr_values[n_online];
3256 mtspr(SPRN_RWMR, rwmr_val);
3257 }
3258
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003259 /* Start all the threads */
3260 active = 0;
3261 for (sub = 0; sub < core_info.n_subcores; ++sub) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003262 thr = is_power8 ? subcore_thread_map[sub] : sub;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003263 thr0_done = false;
3264 active |= 1 << thr;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003265 pvc = core_info.vc[sub];
3266 pvc->pcpu = pcpu + thr;
3267 for_each_runnable_thread(i, vcpu, pvc) {
3268 kvmppc_start_thread(vcpu, pvc);
3269 kvmppc_create_dtl_entry(vcpu, pvc);
3270 trace_kvm_guest_enter(vcpu);
3271 if (!vcpu->arch.ptid)
3272 thr0_done = true;
3273 active |= 1 << (thr + vcpu->arch.ptid);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003274 }
Paul Mackerras898b25b2017-06-22 15:08:42 +10003275 /*
3276 * We need to start the first thread of each subcore
3277 * even if it doesn't have a vcpu.
3278 */
3279 if (!thr0_done)
3280 kvmppc_start_thread(NULL, pvc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003281 }
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303282
3283 /*
3284 * Ensure that split_info.do_nap is set after setting
3285 * the vcore pointer in the PACA of the secondaries.
3286 */
3287 smp_mb();
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303288
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003289 /*
3290 * When doing micro-threading, poke the inactive threads as well.
3291 * This gets them to the nap instruction after kvm_do_nap,
3292 * which reduces the time taken to unsplit later.
Paul Mackerrasc0101502017-10-19 14:11:23 +11003293 * For POWER9 HPT guest on radix host, we need all the secondary
3294 * threads woken up so they can do the LPCR/LPIDR change.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003295 */
Paul Mackerrasc0101502017-10-19 14:11:23 +11003296 if (cmd_bit || hpt_on_radix) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003297 split_info.do_nap = 1; /* ask secondaries to nap when done */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003298 for (thr = 1; thr < threads_per_subcore; ++thr)
3299 if (!(active & (1 << thr)))
3300 kvmppc_ipi_thread(pcpu + thr);
Paul Mackerras516f7892017-10-16 16:11:57 +11003301 }
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003302
Paul Mackerras2f12f032012-10-15 01:17:17 +00003303 vc->vcore_state = VCORE_RUNNING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003304 preempt_disable();
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003305
3306 trace_kvmppc_run_core(vc, 0);
3307
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003308 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003309 spin_unlock(&core_info.vc[sub]->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003310
Nicholas Piggin9a4506e2018-05-17 17:06:29 +10003311 if (kvm_is_radix(vc->kvm)) {
Nicholas Piggin9a4506e2018-05-17 17:06:29 +10003312 /*
3313 * Do we need to flush the process scoped TLB for the LPAR?
3314 *
3315 * On POWER9, individual threads can come in here, but the
3316 * TLB is shared between the 4 threads in a core, hence
3317 * invalidating on one thread invalidates for all.
3318 * Thus we make all 4 threads use the same bit here.
3319 *
3320 * Hash must be flushed in realmode in order to use tlbiel.
3321 */
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11003322 kvmppc_radix_check_need_tlb_flush(vc->kvm, pcpu, NULL);
Nicholas Piggin9a4506e2018-05-17 17:06:29 +10003323 }
3324
Paul Mackerras8b24e692017-06-26 15:45:51 +10003325 /*
3326 * Interrupts will be enabled once we get into the guest,
3327 * so tell lockdep that we're about to enable interrupts.
3328 */
3329 trace_hardirqs_on();
Paul Mackerrasde56a942011-06-29 00:21:34 +00003330
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003331 guest_enter_irqoff();
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003332
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003333 srcu_idx = srcu_read_lock(&vc->kvm->srcu);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003334
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303335 this_cpu_disable_ftrace();
3336
Paul Mackerras8b24e692017-06-26 15:45:51 +10003337 trap = __kvmppc_vcore_entry();
Paul Mackerras19ccb762011-07-23 17:42:46 +10003338
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303339 this_cpu_enable_ftrace();
3340
Paul Mackerrasec257162015-06-24 21:18:03 +10003341 srcu_read_unlock(&vc->kvm->srcu, srcu_idx);
3342
Paul Mackerras8b24e692017-06-26 15:45:51 +10003343 trace_hardirqs_off();
3344 set_irq_happened(trap);
3345
Paul Mackerrasec257162015-06-24 21:18:03 +10003346 spin_lock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003347 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
Paul Mackerras19ccb762011-07-23 17:42:46 +10003348 vc->vcore_state = VCORE_EXITING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003349
Paul Mackerras371fefd2011-06-29 00:23:08 +00003350 /* wait for secondary threads to finish writing their state to memory */
Paul Mackerras516f7892017-10-16 16:11:57 +11003351 kvmppc_wait_for_nap(controlled_threads);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003352
3353 /* Return to whole-core mode if we split the core earlier */
Paul Mackerras516f7892017-10-16 16:11:57 +11003354 if (cmd_bit) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003355 unsigned long hid0 = mfspr(SPRN_HID0);
3356 unsigned long loops = 0;
3357
3358 hid0 &= ~HID0_POWER8_DYNLPARDIS;
3359 stat_bit = HID0_POWER8_2LPARMODE | HID0_POWER8_4LPARMODE;
3360 mb();
3361 mtspr(SPRN_HID0, hid0);
3362 isync();
3363 for (;;) {
3364 hid0 = mfspr(SPRN_HID0);
3365 if (!(hid0 & stat_bit))
3366 break;
3367 cpu_relax();
3368 ++loops;
3369 }
Paul Mackerrasc0101502017-10-19 14:11:23 +11003370 } else if (hpt_on_radix) {
3371 /* Wait for all threads to have seen final sync */
3372 for (thr = 1; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003373 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3374
3375 while (paca->kvm_hstate.kvm_split_mode) {
Paul Mackerrasc0101502017-10-19 14:11:23 +11003376 HMT_low();
3377 barrier();
3378 }
3379 HMT_medium();
3380 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003381 }
Paul Mackerrasc0101502017-10-19 14:11:23 +11003382 split_info.do_nap = 0;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003383
Paul Mackerras8b24e692017-06-26 15:45:51 +10003384 kvmppc_set_host_core(pcpu);
3385
3386 local_irq_enable();
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003387 guest_exit();
Paul Mackerras8b24e692017-06-26 15:45:51 +10003388
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003389 /* Let secondaries go back to the offline loop */
Paul Mackerras45c940b2016-11-18 17:43:30 +11003390 for (i = 0; i < controlled_threads; ++i) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003391 kvmppc_release_hwthread(pcpu + i);
3392 if (sip && sip->napped[i])
3393 kvmppc_ipi_thread(pcpu + i);
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003394 cpumask_clear_cpu(pcpu + i, &vc->kvm->arch.cpu_in_guest);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003395 }
3396
Paul Mackerras371fefd2011-06-29 00:23:08 +00003397 spin_unlock(&vc->lock);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003398
Paul Mackerras371fefd2011-06-29 00:23:08 +00003399 /* make sure updates to secondary vcpu structs are visible now */
3400 smp_mb();
Paul Mackerrasde56a942011-06-29 00:21:34 +00003401
Paul Mackerras36ee41d2018-01-30 10:51:32 +11003402 preempt_enable();
3403
Paul Mackerras898b25b2017-06-22 15:08:42 +10003404 for (sub = 0; sub < core_info.n_subcores; ++sub) {
3405 pvc = core_info.vc[sub];
3406 post_guest_process(pvc, pvc == vc);
3407 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00003408
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003409 spin_lock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003410
Paul Mackerrasde56a942011-06-29 00:21:34 +00003411 out:
Paul Mackerras19ccb762011-07-23 17:42:46 +10003412 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003413 trace_kvmppc_run_core(vc, 1);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003414}
3415
Paul Mackerras19ccb762011-07-23 17:42:46 +10003416/*
Paul Mackerras95a64322018-10-08 16:30:55 +11003417 * Load up hypervisor-mode registers on P9.
3418 */
Paul Mackerras360cae32018-10-08 16:31:04 +11003419static int kvmhv_load_hv_regs_and_go(struct kvm_vcpu *vcpu, u64 time_limit,
3420 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003421{
3422 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3423 s64 hdec;
3424 u64 tb, purr, spurr;
3425 int trap;
3426 unsigned long host_hfscr = mfspr(SPRN_HFSCR);
3427 unsigned long host_ciabr = mfspr(SPRN_CIABR);
3428 unsigned long host_dawr = mfspr(SPRN_DAWR);
3429 unsigned long host_dawrx = mfspr(SPRN_DAWRX);
3430 unsigned long host_psscr = mfspr(SPRN_PSSCR);
3431 unsigned long host_pidr = mfspr(SPRN_PID);
3432
3433 hdec = time_limit - mftb();
3434 if (hdec < 0)
3435 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3436 mtspr(SPRN_HDEC, hdec);
3437
3438 if (vc->tb_offset) {
3439 u64 new_tb = mftb() + vc->tb_offset;
3440 mtspr(SPRN_TBU40, new_tb);
3441 tb = mftb();
3442 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3443 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3444 vc->tb_offset_applied = vc->tb_offset;
3445 }
3446
3447 if (vc->pcr)
3448 mtspr(SPRN_PCR, vc->pcr);
3449 mtspr(SPRN_DPDES, vc->dpdes);
3450 mtspr(SPRN_VTB, vc->vtb);
3451
3452 local_paca->kvm_hstate.host_purr = mfspr(SPRN_PURR);
3453 local_paca->kvm_hstate.host_spurr = mfspr(SPRN_SPURR);
3454 mtspr(SPRN_PURR, vcpu->arch.purr);
3455 mtspr(SPRN_SPURR, vcpu->arch.spurr);
3456
3457 if (cpu_has_feature(CPU_FTR_DAWR)) {
3458 mtspr(SPRN_DAWR, vcpu->arch.dawr);
3459 mtspr(SPRN_DAWRX, vcpu->arch.dawrx);
3460 }
3461 mtspr(SPRN_CIABR, vcpu->arch.ciabr);
3462 mtspr(SPRN_IC, vcpu->arch.ic);
3463 mtspr(SPRN_PID, vcpu->arch.pid);
3464
3465 mtspr(SPRN_PSSCR, vcpu->arch.psscr | PSSCR_EC |
3466 (local_paca->kvm_hstate.fake_suspend << PSSCR_FAKE_SUSPEND_LG));
3467
3468 mtspr(SPRN_HFSCR, vcpu->arch.hfscr);
3469
3470 mtspr(SPRN_SPRG0, vcpu->arch.shregs.sprg0);
3471 mtspr(SPRN_SPRG1, vcpu->arch.shregs.sprg1);
3472 mtspr(SPRN_SPRG2, vcpu->arch.shregs.sprg2);
3473 mtspr(SPRN_SPRG3, vcpu->arch.shregs.sprg3);
3474
3475 mtspr(SPRN_AMOR, ~0UL);
3476
Paul Mackerras360cae32018-10-08 16:31:04 +11003477 mtspr(SPRN_LPCR, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11003478 isync();
3479
3480 kvmppc_xive_push_vcpu(vcpu);
3481
3482 mtspr(SPRN_SRR0, vcpu->arch.shregs.srr0);
3483 mtspr(SPRN_SRR1, vcpu->arch.shregs.srr1);
3484
3485 trap = __kvmhv_vcpu_entry_p9(vcpu);
3486
3487 /* Advance host PURR/SPURR by the amount used by guest */
3488 purr = mfspr(SPRN_PURR);
3489 spurr = mfspr(SPRN_SPURR);
3490 mtspr(SPRN_PURR, local_paca->kvm_hstate.host_purr +
3491 purr - vcpu->arch.purr);
3492 mtspr(SPRN_SPURR, local_paca->kvm_hstate.host_spurr +
3493 spurr - vcpu->arch.spurr);
3494 vcpu->arch.purr = purr;
3495 vcpu->arch.spurr = spurr;
3496
3497 vcpu->arch.ic = mfspr(SPRN_IC);
3498 vcpu->arch.pid = mfspr(SPRN_PID);
3499 vcpu->arch.psscr = mfspr(SPRN_PSSCR) & PSSCR_GUEST_VIS;
3500
3501 vcpu->arch.shregs.sprg0 = mfspr(SPRN_SPRG0);
3502 vcpu->arch.shregs.sprg1 = mfspr(SPRN_SPRG1);
3503 vcpu->arch.shregs.sprg2 = mfspr(SPRN_SPRG2);
3504 vcpu->arch.shregs.sprg3 = mfspr(SPRN_SPRG3);
3505
Suraj Jitindar Singh7cb9eb12019-03-18 13:59:46 +11003506 /* Preserve PSSCR[FAKE_SUSPEND] until we've called kvmppc_save_tm_hv */
3507 mtspr(SPRN_PSSCR, host_psscr |
3508 (local_paca->kvm_hstate.fake_suspend << PSSCR_FAKE_SUSPEND_LG));
Paul Mackerras95a64322018-10-08 16:30:55 +11003509 mtspr(SPRN_HFSCR, host_hfscr);
3510 mtspr(SPRN_CIABR, host_ciabr);
3511 mtspr(SPRN_DAWR, host_dawr);
3512 mtspr(SPRN_DAWRX, host_dawrx);
3513 mtspr(SPRN_PID, host_pidr);
3514
3515 /*
3516 * Since this is radix, do a eieio; tlbsync; ptesync sequence in
3517 * case we interrupted the guest between a tlbie and a ptesync.
3518 */
3519 asm volatile("eieio; tlbsync; ptesync");
3520
3521 mtspr(SPRN_LPID, vcpu->kvm->arch.host_lpid); /* restore host LPID */
3522 isync();
3523
3524 vc->dpdes = mfspr(SPRN_DPDES);
3525 vc->vtb = mfspr(SPRN_VTB);
3526 mtspr(SPRN_DPDES, 0);
3527 if (vc->pcr)
3528 mtspr(SPRN_PCR, 0);
3529
3530 if (vc->tb_offset_applied) {
3531 u64 new_tb = mftb() - vc->tb_offset_applied;
3532 mtspr(SPRN_TBU40, new_tb);
3533 tb = mftb();
3534 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3535 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3536 vc->tb_offset_applied = 0;
3537 }
3538
3539 mtspr(SPRN_HDEC, 0x7fffffff);
3540 mtspr(SPRN_LPCR, vcpu->kvm->arch.host_lpcr);
3541
3542 return trap;
3543}
3544
3545/*
3546 * Virtual-mode guest entry for POWER9 and later when the host and
3547 * guest are both using the radix MMU. The LPIDR has already been set.
3548 */
Paul Mackerras360cae32018-10-08 16:31:04 +11003549int kvmhv_p9_guest_entry(struct kvm_vcpu *vcpu, u64 time_limit,
3550 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003551{
3552 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3553 unsigned long host_dscr = mfspr(SPRN_DSCR);
3554 unsigned long host_tidr = mfspr(SPRN_TIDR);
3555 unsigned long host_iamr = mfspr(SPRN_IAMR);
Michael Ellermand976f682019-02-20 19:55:00 +11003556 unsigned long host_amr = mfspr(SPRN_AMR);
Paul Mackerras95a64322018-10-08 16:30:55 +11003557 s64 dec;
3558 u64 tb;
3559 int trap, save_pmu;
3560
3561 dec = mfspr(SPRN_DEC);
3562 tb = mftb();
3563 if (dec < 512)
3564 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3565 local_paca->kvm_hstate.dec_expires = dec + tb;
3566 if (local_paca->kvm_hstate.dec_expires < time_limit)
3567 time_limit = local_paca->kvm_hstate.dec_expires;
3568
3569 vcpu->arch.ceded = 0;
3570
3571 kvmhv_save_host_pmu(); /* saves it to PACA kvm_hstate */
3572
3573 kvmppc_subcore_enter_guest();
3574
3575 vc->entry_exit_map = 1;
3576 vc->in_guest = 1;
3577
3578 if (vcpu->arch.vpa.pinned_addr) {
3579 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3580 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3581 lp->yield_count = cpu_to_be32(yield_count);
3582 vcpu->arch.vpa.dirty = 1;
3583 }
3584
3585 if (cpu_has_feature(CPU_FTR_TM) ||
3586 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3587 kvmppc_restore_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3588
3589 kvmhv_load_guest_pmu(vcpu);
3590
3591 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3592 load_fp_state(&vcpu->arch.fp);
3593#ifdef CONFIG_ALTIVEC
3594 load_vr_state(&vcpu->arch.vr);
3595#endif
3596
3597 mtspr(SPRN_DSCR, vcpu->arch.dscr);
3598 mtspr(SPRN_IAMR, vcpu->arch.iamr);
3599 mtspr(SPRN_PSPB, vcpu->arch.pspb);
3600 mtspr(SPRN_FSCR, vcpu->arch.fscr);
3601 mtspr(SPRN_TAR, vcpu->arch.tar);
3602 mtspr(SPRN_EBBHR, vcpu->arch.ebbhr);
3603 mtspr(SPRN_EBBRR, vcpu->arch.ebbrr);
3604 mtspr(SPRN_BESCR, vcpu->arch.bescr);
3605 mtspr(SPRN_WORT, vcpu->arch.wort);
3606 mtspr(SPRN_TIDR, vcpu->arch.tid);
3607 mtspr(SPRN_DAR, vcpu->arch.shregs.dar);
3608 mtspr(SPRN_DSISR, vcpu->arch.shregs.dsisr);
3609 mtspr(SPRN_AMR, vcpu->arch.amr);
3610 mtspr(SPRN_UAMOR, vcpu->arch.uamor);
3611
3612 if (!(vcpu->arch.ctrl & 1))
3613 mtspr(SPRN_CTRLT, mfspr(SPRN_CTRLF) & ~1);
3614
3615 mtspr(SPRN_DEC, vcpu->arch.dec_expires - mftb());
3616
Paul Mackerras360cae32018-10-08 16:31:04 +11003617 if (kvmhv_on_pseries()) {
3618 /* call our hypervisor to load up HV regs and go */
3619 struct hv_guest_state hvregs;
Paul Mackerras95a64322018-10-08 16:30:55 +11003620
Paul Mackerras360cae32018-10-08 16:31:04 +11003621 kvmhv_save_hv_regs(vcpu, &hvregs);
3622 hvregs.lpcr = lpcr;
3623 vcpu->arch.regs.msr = vcpu->arch.shregs.msr;
3624 hvregs.version = HV_GUEST_STATE_VERSION;
3625 if (vcpu->arch.nested) {
3626 hvregs.lpid = vcpu->arch.nested->shadow_lpid;
3627 hvregs.vcpu_token = vcpu->arch.nested_vcpu_id;
3628 } else {
3629 hvregs.lpid = vcpu->kvm->arch.lpid;
3630 hvregs.vcpu_token = vcpu->vcpu_id;
3631 }
3632 hvregs.hdec_expiry = time_limit;
3633 trap = plpar_hcall_norets(H_ENTER_NESTED, __pa(&hvregs),
3634 __pa(&vcpu->arch.regs));
3635 kvmhv_restore_hv_return_state(vcpu, &hvregs);
3636 vcpu->arch.shregs.msr = vcpu->arch.regs.msr;
3637 vcpu->arch.shregs.dar = mfspr(SPRN_DAR);
3638 vcpu->arch.shregs.dsisr = mfspr(SPRN_DSISR);
Paul Mackerras4bad7772018-10-08 16:31:06 +11003639
3640 /* H_CEDE has to be handled now, not later */
3641 if (trap == BOOK3S_INTERRUPT_SYSCALL && !vcpu->arch.nested &&
3642 kvmppc_get_gpr(vcpu, 3) == H_CEDE) {
3643 kvmppc_nested_cede(vcpu);
3644 trap = 0;
3645 }
Paul Mackerras360cae32018-10-08 16:31:04 +11003646 } else {
3647 trap = kvmhv_load_hv_regs_and_go(vcpu, time_limit, lpcr);
3648 }
Paul Mackerras95a64322018-10-08 16:30:55 +11003649
3650 vcpu->arch.slb_max = 0;
3651 dec = mfspr(SPRN_DEC);
3652 tb = mftb();
3653 vcpu->arch.dec_expires = dec + tb;
3654 vcpu->cpu = -1;
3655 vcpu->arch.thread_cpu = -1;
3656 vcpu->arch.ctrl = mfspr(SPRN_CTRLF);
3657
3658 vcpu->arch.iamr = mfspr(SPRN_IAMR);
3659 vcpu->arch.pspb = mfspr(SPRN_PSPB);
3660 vcpu->arch.fscr = mfspr(SPRN_FSCR);
3661 vcpu->arch.tar = mfspr(SPRN_TAR);
3662 vcpu->arch.ebbhr = mfspr(SPRN_EBBHR);
3663 vcpu->arch.ebbrr = mfspr(SPRN_EBBRR);
3664 vcpu->arch.bescr = mfspr(SPRN_BESCR);
3665 vcpu->arch.wort = mfspr(SPRN_WORT);
3666 vcpu->arch.tid = mfspr(SPRN_TIDR);
3667 vcpu->arch.amr = mfspr(SPRN_AMR);
3668 vcpu->arch.uamor = mfspr(SPRN_UAMOR);
3669 vcpu->arch.dscr = mfspr(SPRN_DSCR);
3670
3671 mtspr(SPRN_PSPB, 0);
3672 mtspr(SPRN_WORT, 0);
Paul Mackerras95a64322018-10-08 16:30:55 +11003673 mtspr(SPRN_UAMOR, 0);
3674 mtspr(SPRN_DSCR, host_dscr);
3675 mtspr(SPRN_TIDR, host_tidr);
3676 mtspr(SPRN_IAMR, host_iamr);
3677 mtspr(SPRN_PSPB, 0);
3678
Michael Ellermand976f682019-02-20 19:55:00 +11003679 if (host_amr != vcpu->arch.amr)
3680 mtspr(SPRN_AMR, host_amr);
3681
Paul Mackerras95a64322018-10-08 16:30:55 +11003682 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3683 store_fp_state(&vcpu->arch.fp);
3684#ifdef CONFIG_ALTIVEC
3685 store_vr_state(&vcpu->arch.vr);
3686#endif
3687
3688 if (cpu_has_feature(CPU_FTR_TM) ||
3689 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3690 kvmppc_save_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3691
3692 save_pmu = 1;
3693 if (vcpu->arch.vpa.pinned_addr) {
3694 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3695 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3696 lp->yield_count = cpu_to_be32(yield_count);
3697 vcpu->arch.vpa.dirty = 1;
3698 save_pmu = lp->pmcregs_in_use;
3699 }
3700
3701 kvmhv_save_guest_pmu(vcpu, save_pmu);
3702
3703 vc->entry_exit_map = 0x101;
3704 vc->in_guest = 0;
3705
3706 mtspr(SPRN_DEC, local_paca->kvm_hstate.dec_expires - mftb());
3707
3708 kvmhv_load_host_pmu();
3709
3710 kvmppc_subcore_exit_guest();
3711
3712 return trap;
3713}
3714
3715/*
Paul Mackerras19ccb762011-07-23 17:42:46 +10003716 * Wait for some other vcpu thread to execute us, and
3717 * wake us up when we need to handle something in the host.
3718 */
Paul Mackerrasec257162015-06-24 21:18:03 +10003719static void kvmppc_wait_for_exec(struct kvmppc_vcore *vc,
3720 struct kvm_vcpu *vcpu, int wait_state)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003721{
Paul Mackerras371fefd2011-06-29 00:23:08 +00003722 DEFINE_WAIT(wait);
3723
Paul Mackerras19ccb762011-07-23 17:42:46 +10003724 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
Paul Mackerrasec257162015-06-24 21:18:03 +10003725 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
3726 spin_unlock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003727 schedule();
Paul Mackerrasec257162015-06-24 21:18:03 +10003728 spin_lock(&vc->lock);
3729 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003730 finish_wait(&vcpu->arch.cpu_run, &wait);
3731}
Paul Mackerras371fefd2011-06-29 00:23:08 +00003732
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003733static void grow_halt_poll_ns(struct kvmppc_vcore *vc)
3734{
Nir Weiner7fa08e72019-01-27 12:17:14 +02003735 if (!halt_poll_ns_grow)
3736 return;
3737
Nir Weinerdee339b2019-01-27 12:17:16 +02003738 vc->halt_poll_ns *= halt_poll_ns_grow;
3739 if (vc->halt_poll_ns < halt_poll_ns_grow_start)
Nir Weiner49113d32019-01-27 12:17:15 +02003740 vc->halt_poll_ns = halt_poll_ns_grow_start;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003741}
3742
3743static void shrink_halt_poll_ns(struct kvmppc_vcore *vc)
3744{
3745 if (halt_poll_ns_shrink == 0)
3746 vc->halt_poll_ns = 0;
3747 else
3748 vc->halt_poll_ns /= halt_poll_ns_shrink;
3749}
3750
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003751#ifdef CONFIG_KVM_XICS
3752static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3753{
Paul Mackerras03f95332019-02-04 22:07:20 +11003754 if (!xics_on_xive())
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003755 return false;
Benjamin Herrenschmidt2267ea72018-01-12 13:37:13 +11003756 return vcpu->arch.irq_pending || vcpu->arch.xive_saved_state.pipr <
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003757 vcpu->arch.xive_saved_state.cppr;
3758}
3759#else
3760static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3761{
3762 return false;
3763}
3764#endif /* CONFIG_KVM_XICS */
3765
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003766static bool kvmppc_vcpu_woken(struct kvm_vcpu *vcpu)
3767{
3768 if (vcpu->arch.pending_exceptions || vcpu->arch.prodded ||
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003769 kvmppc_doorbell_pending(vcpu) || xive_interrupt_pending(vcpu))
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003770 return true;
3771
3772 return false;
3773}
3774
Suraj Jitindar Singh908a0932016-10-14 11:53:23 +11003775/*
3776 * Check to see if any of the runnable vcpus on the vcore have pending
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003777 * exceptions or are no longer ceded
3778 */
3779static int kvmppc_vcore_check_block(struct kvmppc_vcore *vc)
3780{
3781 struct kvm_vcpu *vcpu;
3782 int i;
3783
3784 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003785 if (!vcpu->arch.ceded || kvmppc_vcpu_woken(vcpu))
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003786 return 1;
3787 }
3788
3789 return 0;
3790}
3791
Paul Mackerras19ccb762011-07-23 17:42:46 +10003792/*
3793 * All the vcpus in this vcore are idle, so wait for a decrementer
3794 * or external interrupt to one of the vcpus. vc->lock is held.
3795 */
3796static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
3797{
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003798 ktime_t cur, start_poll, start_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003799 int do_sleep = 1;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003800 u64 block_ns;
Marcelo Tosatti85773702016-02-19 09:46:39 +01003801 DECLARE_SWAITQUEUE(wait);
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003802
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003803 /* Poll for pending exceptions and ceded state */
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003804 cur = start_poll = ktime_get();
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003805 if (vc->halt_poll_ns) {
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003806 ktime_t stop = ktime_add_ns(start_poll, vc->halt_poll_ns);
3807 ++vc->runner->stat.halt_attempted_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003808
3809 vc->vcore_state = VCORE_POLLING;
3810 spin_unlock(&vc->lock);
3811
3812 do {
3813 if (kvmppc_vcore_check_block(vc)) {
3814 do_sleep = 0;
3815 break;
3816 }
3817 cur = ktime_get();
3818 } while (single_task_running() && ktime_before(cur, stop));
3819
3820 spin_lock(&vc->lock);
3821 vc->vcore_state = VCORE_INACTIVE;
3822
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003823 if (!do_sleep) {
3824 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003825 goto out;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003826 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003827 }
3828
Peter Zijlstrab3dae102018-06-12 10:34:52 +02003829 prepare_to_swait_exclusive(&vc->wq, &wait, TASK_INTERRUPTIBLE);
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003830
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003831 if (kvmppc_vcore_check_block(vc)) {
Marcelo Tosatti85773702016-02-19 09:46:39 +01003832 finish_swait(&vc->wq, &wait);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003833 do_sleep = 0;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003834 /* If we polled, count this as a successful poll */
3835 if (vc->halt_poll_ns)
3836 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003837 goto out;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003838 }
3839
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003840 start_wait = ktime_get();
3841
Paul Mackerras19ccb762011-07-23 17:42:46 +10003842 vc->vcore_state = VCORE_SLEEPING;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003843 trace_kvmppc_vcore_blocked(vc, 0);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003844 spin_unlock(&vc->lock);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003845 schedule();
Marcelo Tosatti85773702016-02-19 09:46:39 +01003846 finish_swait(&vc->wq, &wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003847 spin_lock(&vc->lock);
3848 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003849 trace_kvmppc_vcore_blocked(vc, 1);
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003850 ++vc->runner->stat.halt_successful_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003851
3852 cur = ktime_get();
3853
3854out:
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003855 block_ns = ktime_to_ns(cur) - ktime_to_ns(start_poll);
3856
3857 /* Attribute wait time */
3858 if (do_sleep) {
3859 vc->runner->stat.halt_wait_ns +=
3860 ktime_to_ns(cur) - ktime_to_ns(start_wait);
3861 /* Attribute failed poll time */
3862 if (vc->halt_poll_ns)
3863 vc->runner->stat.halt_poll_fail_ns +=
3864 ktime_to_ns(start_wait) -
3865 ktime_to_ns(start_poll);
3866 } else {
3867 /* Attribute successful poll time */
3868 if (vc->halt_poll_ns)
3869 vc->runner->stat.halt_poll_success_ns +=
3870 ktime_to_ns(cur) -
3871 ktime_to_ns(start_poll);
3872 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003873
3874 /* Adjust poll time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003875 if (halt_poll_ns) {
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003876 if (block_ns <= vc->halt_poll_ns)
3877 ;
3878 /* We slept and blocked for longer than the max halt time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003879 else if (vc->halt_poll_ns && block_ns > halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003880 shrink_halt_poll_ns(vc);
3881 /* We slept and our poll time is too small */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003882 else if (vc->halt_poll_ns < halt_poll_ns &&
3883 block_ns < halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003884 grow_halt_poll_ns(vc);
Suraj Jitindar Singhe03f3922016-10-14 11:53:21 +11003885 if (vc->halt_poll_ns > halt_poll_ns)
3886 vc->halt_poll_ns = halt_poll_ns;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003887 } else
3888 vc->halt_poll_ns = 0;
3889
3890 trace_kvmppc_vcore_wakeup(do_sleep, block_ns);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003891}
3892
Paul Mackerras360cae32018-10-08 16:31:04 +11003893/*
3894 * This never fails for a radix guest, as none of the operations it does
3895 * for a radix guest can fail or have a way to report failure.
3896 * kvmhv_run_single_vcpu() relies on this fact.
3897 */
Paul Mackerras432953b2017-11-09 15:37:10 +11003898static int kvmhv_setup_mmu(struct kvm_vcpu *vcpu)
3899{
3900 int r = 0;
3901 struct kvm *kvm = vcpu->kvm;
3902
3903 mutex_lock(&kvm->lock);
3904 if (!kvm->arch.mmu_ready) {
3905 if (!kvm_is_radix(kvm))
3906 r = kvmppc_hv_setup_htab_rma(vcpu);
3907 if (!r) {
3908 if (cpu_has_feature(CPU_FTR_ARCH_300))
3909 kvmppc_setup_partition_table(kvm);
3910 kvm->arch.mmu_ready = 1;
3911 }
3912 }
3913 mutex_unlock(&kvm->lock);
3914 return r;
3915}
3916
Paul Mackerras19ccb762011-07-23 17:42:46 +10003917static int kvmppc_run_vcpu(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
3918{
Paul Mackerras38c53af2017-11-08 14:44:04 +11003919 int n_ceded, i, r;
Paul Mackerras19ccb762011-07-23 17:42:46 +10003920 struct kvmppc_vcore *vc;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003921 struct kvm_vcpu *v;
Paul Mackerras9e368f22011-06-29 00:40:08 +00003922
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003923 trace_kvmppc_run_vcpu_enter(vcpu);
3924
Paul Mackerras371fefd2011-06-29 00:23:08 +00003925 kvm_run->exit_reason = 0;
3926 vcpu->arch.ret = RESUME_GUEST;
3927 vcpu->arch.trap = 0;
Paul Mackerras2f12f032012-10-15 01:17:17 +00003928 kvmppc_update_vpas(vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003929
Paul Mackerras371fefd2011-06-29 00:23:08 +00003930 /*
3931 * Synchronize with other threads in this virtual core
3932 */
3933 vc = vcpu->arch.vcore;
3934 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003935 vcpu->arch.ceded = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003936 vcpu->arch.run_task = current;
3937 vcpu->arch.kvm_run = kvm_run;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003938 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
Paul Mackerras19ccb762011-07-23 17:42:46 +10003939 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003940 vcpu->arch.busy_preempt = TB_NIL;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003941 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003942 ++vc->n_runnable;
3943
Paul Mackerras19ccb762011-07-23 17:42:46 +10003944 /*
3945 * This happens the first time this is called for a vcpu.
3946 * If the vcore is already running, we may be able to start
3947 * this thread straight away and have it join in.
3948 */
Paul Mackerras8455d792012-10-15 01:17:42 +00003949 if (!signal_pending(current)) {
Paul Mackerrasc0093f12017-11-20 16:12:25 +11003950 if ((vc->vcore_state == VCORE_PIGGYBACK ||
3951 vc->vcore_state == VCORE_RUNNING) &&
Paul Mackerrasec257162015-06-24 21:18:03 +10003952 !VCORE_IS_EXITING(vc)) {
Paul Mackerras2f12f032012-10-15 01:17:17 +00003953 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003954 kvmppc_start_thread(vcpu, vc);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003955 trace_kvm_guest_enter(vcpu);
Paul Mackerras8455d792012-10-15 01:17:42 +00003956 } else if (vc->vcore_state == VCORE_SLEEPING) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +02003957 swake_up_one(&vc->wq);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003958 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003959
Paul Mackerras8455d792012-10-15 01:17:42 +00003960 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003961
3962 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
3963 !signal_pending(current)) {
Paul Mackerras072df812017-11-09 14:30:24 +11003964 /* See if the MMU is ready to go */
3965 if (!vcpu->kvm->arch.mmu_ready) {
Paul Mackerras38c53af2017-11-08 14:44:04 +11003966 spin_unlock(&vc->lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11003967 r = kvmhv_setup_mmu(vcpu);
Paul Mackerras38c53af2017-11-08 14:44:04 +11003968 spin_lock(&vc->lock);
3969 if (r) {
3970 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
Paul Mackerras432953b2017-11-09 15:37:10 +11003971 kvm_run->fail_entry.
3972 hardware_entry_failure_reason = 0;
Paul Mackerras38c53af2017-11-08 14:44:04 +11003973 vcpu->arch.ret = r;
3974 break;
3975 }
3976 }
3977
Paul Mackerrasec257162015-06-24 21:18:03 +10003978 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
3979 kvmppc_vcore_end_preempt(vc);
3980
Paul Mackerras8455d792012-10-15 01:17:42 +00003981 if (vc->vcore_state != VCORE_INACTIVE) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003982 kvmppc_wait_for_exec(vc, vcpu, TASK_INTERRUPTIBLE);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003983 continue;
3984 }
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003985 for_each_runnable_thread(i, v, vc) {
Scott Wood7e28e60e2011-11-08 18:23:20 -06003986 kvmppc_core_prepare_to_enter(v);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003987 if (signal_pending(v->arch.run_task)) {
3988 kvmppc_remove_runnable(vc, v);
3989 v->stat.signal_exits++;
3990 v->arch.kvm_run->exit_reason = KVM_EXIT_INTR;
3991 v->arch.ret = -EINTR;
3992 wake_up(&v->arch.cpu_run);
3993 }
3994 }
Paul Mackerras8455d792012-10-15 01:17:42 +00003995 if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
3996 break;
Paul Mackerras8455d792012-10-15 01:17:42 +00003997 n_ceded = 0;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003998 for_each_runnable_thread(i, v, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003999 if (!kvmppc_vcpu_woken(v))
Paul Mackerras8455d792012-10-15 01:17:42 +00004000 n_ceded += v->arch.ceded;
Paul Mackerras4619ac82013-04-17 20:31:41 +00004001 else
4002 v->arch.ceded = 0;
4003 }
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004004 vc->runner = vcpu;
4005 if (n_ceded == vc->n_runnable) {
Paul Mackerras8455d792012-10-15 01:17:42 +00004006 kvmppc_vcore_blocked(vc);
Konstantin Khlebnikovc56dadf2015-07-15 12:52:03 +03004007 } else if (need_resched()) {
Paul Mackerrasec257162015-06-24 21:18:03 +10004008 kvmppc_vcore_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004009 /* Let something else run */
4010 cond_resched_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10004011 if (vc->vcore_state == VCORE_PREEMPT)
4012 kvmppc_vcore_end_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004013 } else {
Paul Mackerras8455d792012-10-15 01:17:42 +00004014 kvmppc_run_core(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004015 }
Paul Mackerras0456ec42012-02-03 00:56:21 +00004016 vc->runner = NULL;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004017 }
4018
Paul Mackerras8455d792012-10-15 01:17:42 +00004019 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
4020 (vc->vcore_state == VCORE_RUNNING ||
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004021 vc->vcore_state == VCORE_EXITING ||
4022 vc->vcore_state == VCORE_PIGGYBACK))
Paul Mackerrasec257162015-06-24 21:18:03 +10004023 kvmppc_wait_for_exec(vc, vcpu, TASK_UNINTERRUPTIBLE);
Paul Mackerras8455d792012-10-15 01:17:42 +00004024
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004025 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
4026 kvmppc_vcore_end_preempt(vc);
4027
Paul Mackerras8455d792012-10-15 01:17:42 +00004028 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
4029 kvmppc_remove_runnable(vc, vcpu);
4030 vcpu->stat.signal_exits++;
4031 kvm_run->exit_reason = KVM_EXIT_INTR;
4032 vcpu->arch.ret = -EINTR;
4033 }
4034
4035 if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) {
4036 /* Wake up some vcpu to run the core */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004037 i = -1;
4038 v = next_runnable_thread(vc, &i);
Paul Mackerras8455d792012-10-15 01:17:42 +00004039 wake_up(&v->arch.cpu_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004040 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00004041
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004042 trace_kvmppc_run_vcpu_exit(vcpu, kvm_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004043 spin_unlock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004044 return vcpu->arch.ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004045}
4046
Paul Mackerras360cae32018-10-08 16:31:04 +11004047int kvmhv_run_single_vcpu(struct kvm_run *kvm_run,
4048 struct kvm_vcpu *vcpu, u64 time_limit,
4049 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11004050{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11004051 int trap, r, pcpu;
Paul Mackerras95a64322018-10-08 16:30:55 +11004052 int srcu_idx;
4053 struct kvmppc_vcore *vc;
4054 struct kvm *kvm = vcpu->kvm;
Paul Mackerras360cae32018-10-08 16:31:04 +11004055 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras95a64322018-10-08 16:30:55 +11004056
4057 trace_kvmppc_run_vcpu_enter(vcpu);
4058
4059 kvm_run->exit_reason = 0;
4060 vcpu->arch.ret = RESUME_GUEST;
4061 vcpu->arch.trap = 0;
4062
4063 vc = vcpu->arch.vcore;
4064 vcpu->arch.ceded = 0;
4065 vcpu->arch.run_task = current;
4066 vcpu->arch.kvm_run = kvm_run;
4067 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
4068 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
4069 vcpu->arch.busy_preempt = TB_NIL;
4070 vcpu->arch.last_inst = KVM_INST_FETCH_FAILED;
4071 vc->runnable_threads[0] = vcpu;
4072 vc->n_runnable = 1;
4073 vc->runner = vcpu;
4074
4075 /* See if the MMU is ready to go */
Paul Mackerras360cae32018-10-08 16:31:04 +11004076 if (!kvm->arch.mmu_ready)
4077 kvmhv_setup_mmu(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004078
4079 if (need_resched())
4080 cond_resched();
4081
4082 kvmppc_update_vpas(vcpu);
4083
4084 init_vcore_to_run(vc);
4085 vc->preempt_tb = TB_NIL;
4086
4087 preempt_disable();
4088 pcpu = smp_processor_id();
4089 vc->pcpu = pcpu;
4090 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
4091
4092 local_irq_disable();
4093 hard_irq_disable();
4094 if (signal_pending(current))
4095 goto sigpend;
4096 if (lazy_irq_pending() || need_resched() || !kvm->arch.mmu_ready)
4097 goto out;
4098
Paul Mackerras360cae32018-10-08 16:31:04 +11004099 if (!nested) {
4100 kvmppc_core_prepare_to_enter(vcpu);
4101 if (vcpu->arch.doorbell_request) {
4102 vc->dpdes = 1;
4103 smp_wmb();
4104 vcpu->arch.doorbell_request = 0;
4105 }
4106 if (test_bit(BOOK3S_IRQPRIO_EXTERNAL,
4107 &vcpu->arch.pending_exceptions))
4108 lpcr |= LPCR_MER;
4109 } else if (vcpu->arch.pending_exceptions ||
4110 vcpu->arch.doorbell_request ||
4111 xive_interrupt_pending(vcpu)) {
4112 vcpu->arch.ret = RESUME_HOST;
4113 goto out;
4114 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004115
4116 kvmppc_clear_host_core(pcpu);
4117
4118 local_paca->kvm_hstate.tid = 0;
4119 local_paca->kvm_hstate.napping = 0;
4120 local_paca->kvm_hstate.kvm_split_mode = NULL;
4121 kvmppc_start_thread(vcpu, vc);
4122 kvmppc_create_dtl_entry(vcpu, vc);
4123 trace_kvm_guest_enter(vcpu);
4124
4125 vc->vcore_state = VCORE_RUNNING;
4126 trace_kvmppc_run_core(vc, 0);
4127
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11004128 if (cpu_has_feature(CPU_FTR_HVMODE))
4129 kvmppc_radix_check_need_tlb_flush(kvm, pcpu, nested);
Paul Mackerras95a64322018-10-08 16:30:55 +11004130
4131 trace_hardirqs_on();
4132 guest_enter_irqoff();
4133
4134 srcu_idx = srcu_read_lock(&kvm->srcu);
4135
4136 this_cpu_disable_ftrace();
4137
Paul Mackerras360cae32018-10-08 16:31:04 +11004138 trap = kvmhv_p9_guest_entry(vcpu, time_limit, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004139 vcpu->arch.trap = trap;
4140
4141 this_cpu_enable_ftrace();
4142
4143 srcu_read_unlock(&kvm->srcu, srcu_idx);
4144
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11004145 if (cpu_has_feature(CPU_FTR_HVMODE)) {
4146 mtspr(SPRN_LPID, kvm->arch.host_lpid);
4147 isync();
4148 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004149
4150 trace_hardirqs_off();
4151 set_irq_happened(trap);
4152
4153 kvmppc_set_host_core(pcpu);
4154
4155 local_irq_enable();
4156 guest_exit();
4157
4158 cpumask_clear_cpu(pcpu, &kvm->arch.cpu_in_guest);
4159
4160 preempt_enable();
4161
4162 /* cancel pending decrementer exception if DEC is now positive */
4163 if (get_tb() < vcpu->arch.dec_expires && kvmppc_core_pending_dec(vcpu))
4164 kvmppc_core_dequeue_dec(vcpu);
4165
4166 trace_kvm_guest_exit(vcpu);
4167 r = RESUME_GUEST;
Paul Mackerras360cae32018-10-08 16:31:04 +11004168 if (trap) {
4169 if (!nested)
4170 r = kvmppc_handle_exit_hv(kvm_run, vcpu, current);
4171 else
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11004172 r = kvmppc_handle_nested_exit(kvm_run, vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11004173 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004174 vcpu->arch.ret = r;
4175
4176 if (is_kvmppc_resume_guest(r) && vcpu->arch.ceded &&
4177 !kvmppc_vcpu_woken(vcpu)) {
4178 kvmppc_set_timer(vcpu);
4179 while (vcpu->arch.ceded && !kvmppc_vcpu_woken(vcpu)) {
4180 if (signal_pending(current)) {
4181 vcpu->stat.signal_exits++;
4182 kvm_run->exit_reason = KVM_EXIT_INTR;
4183 vcpu->arch.ret = -EINTR;
4184 break;
4185 }
4186 spin_lock(&vc->lock);
4187 kvmppc_vcore_blocked(vc);
4188 spin_unlock(&vc->lock);
4189 }
4190 }
4191 vcpu->arch.ceded = 0;
4192
4193 vc->vcore_state = VCORE_INACTIVE;
4194 trace_kvmppc_run_core(vc, 1);
4195
4196 done:
4197 kvmppc_remove_runnable(vc, vcpu);
4198 trace_kvmppc_run_vcpu_exit(vcpu, kvm_run);
4199
4200 return vcpu->arch.ret;
4201
4202 sigpend:
4203 vcpu->stat.signal_exits++;
4204 kvm_run->exit_reason = KVM_EXIT_INTR;
4205 vcpu->arch.ret = -EINTR;
4206 out:
4207 local_irq_enable();
4208 preempt_enable();
4209 goto done;
4210}
4211
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304212static int kvmppc_vcpu_run_hv(struct kvm_run *run, struct kvm_vcpu *vcpu)
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004213{
4214 int r;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004215 int srcu_idx;
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004216 unsigned long ebb_regs[3] = {}; /* shut up GCC */
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004217 unsigned long user_tar = 0;
4218 unsigned int user_vrsave;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004219 struct kvm *kvm;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004220
Alexander Grafaf8f38b2011-08-10 13:57:08 +02004221 if (!vcpu->arch.sane) {
4222 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4223 return -EINVAL;
4224 }
4225
Paul Mackerras46a704f2017-06-15 16:10:27 +10004226 /*
4227 * Don't allow entry with a suspended transaction, because
4228 * the guest entry/exit code will lose it.
4229 * If the guest has TM enabled, save away their TM-related SPRs
4230 * (they will get restored by the TM unavailable interrupt).
4231 */
4232#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
4233 if (cpu_has_feature(CPU_FTR_TM) && current->thread.regs &&
4234 (current->thread.regs->msr & MSR_TM)) {
4235 if (MSR_TM_ACTIVE(current->thread.regs->msr)) {
4236 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4237 run->fail_entry.hardware_entry_failure_reason = 0;
4238 return -EINVAL;
4239 }
Paul Mackerrase4705712017-07-21 13:57:14 +10004240 /* Enable TM so we can read the TM SPRs */
4241 mtmsr(mfmsr() | MSR_TM);
Paul Mackerras46a704f2017-06-15 16:10:27 +10004242 current->thread.tm_tfhar = mfspr(SPRN_TFHAR);
4243 current->thread.tm_tfiar = mfspr(SPRN_TFIAR);
4244 current->thread.tm_texasr = mfspr(SPRN_TEXASR);
4245 current->thread.regs->msr &= ~MSR_TM;
4246 }
4247#endif
4248
Paul Mackerras7aa15842018-04-20 19:53:22 +10004249 /*
4250 * Force online to 1 for the sake of old userspace which doesn't
4251 * set it.
4252 */
4253 if (!vcpu->arch.online) {
4254 atomic_inc(&vcpu->arch.vcore->online_count);
4255 vcpu->arch.online = 1;
4256 }
4257
Scott Wood25051b5a2011-11-08 18:23:23 -06004258 kvmppc_core_prepare_to_enter(vcpu);
4259
Paul Mackerras19ccb762011-07-23 17:42:46 +10004260 /* No need to go into the guest when all we'll do is come back out */
4261 if (signal_pending(current)) {
4262 run->exit_reason = KVM_EXIT_INTR;
4263 return -EINTR;
4264 }
4265
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004266 kvm = vcpu->kvm;
4267 atomic_inc(&kvm->arch.vcpus_running);
4268 /* Order vcpus_running vs. mmu_ready, see kvmppc_alloc_reset_hpt */
Paul Mackerras32fad282012-05-04 02:32:53 +00004269 smp_mb();
4270
Anton Blanchard579e6332015-10-29 11:44:09 +11004271 flush_all_to_thread(current);
4272
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004273 /* Save userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004274 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4275 ebb_regs[0] = mfspr(SPRN_EBBHR);
4276 ebb_regs[1] = mfspr(SPRN_EBBRR);
4277 ebb_regs[2] = mfspr(SPRN_BESCR);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004278 user_tar = mfspr(SPRN_TAR);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004279 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004280 user_vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004281
Paul Mackerras19ccb762011-07-23 17:42:46 +10004282 vcpu->arch.wqp = &vcpu->arch.vcore->wq;
Paul Mackerras342d3db2011-12-12 12:38:05 +00004283 vcpu->arch.pgdir = current->mm->pgd;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004284 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004285
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004286 do {
Paul Mackerras8d9fcac2018-10-19 20:44:04 +11004287 /*
4288 * The early POWER9 chips that can't mix radix and HPT threads
4289 * on the same core also need the workaround for the problem
4290 * where the TLB would prefetch entries in the guest exit path
4291 * for radix guests using the guest PIDR value and LPID 0.
4292 * The workaround is in the old path (kvmppc_run_vcpu())
4293 * but not the new path (kvmhv_run_single_vcpu()).
4294 */
4295 if (kvm->arch.threads_indep && kvm_is_radix(kvm) &&
4296 !no_mixing_hpt_and_radix)
Paul Mackerras360cae32018-10-08 16:31:04 +11004297 r = kvmhv_run_single_vcpu(run, vcpu, ~(u64)0,
4298 vcpu->arch.vcore->lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004299 else
4300 r = kvmppc_run_vcpu(run, vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004301
4302 if (run->exit_reason == KVM_EXIT_PAPR_HCALL &&
4303 !(vcpu->arch.shregs.msr & MSR_PR)) {
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004304 trace_kvm_hcall_enter(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004305 r = kvmppc_pseries_do_hcall(vcpu);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004306 trace_kvm_hcall_exit(vcpu, r);
Scott Wood7e28e60e2011-11-08 18:23:20 -06004307 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004308 } else if (r == RESUME_PAGE_FAULT) {
Paul Mackerras432953b2017-11-09 15:37:10 +11004309 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004310 r = kvmppc_book3s_hv_page_fault(run, vcpu,
4311 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
Paul Mackerras432953b2017-11-09 15:37:10 +11004312 srcu_read_unlock(&kvm->srcu, srcu_idx);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004313 } else if (r == RESUME_PASSTHROUGH) {
Paul Mackerras03f95332019-02-04 22:07:20 +11004314 if (WARN_ON(xics_on_xive()))
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004315 r = H_SUCCESS;
4316 else
4317 r = kvmppc_xics_rm_complete(vcpu, 0);
4318 }
Greg Kurze59d24e2014-02-06 17:36:56 +01004319 } while (is_kvmppc_resume_guest(r));
Paul Mackerras32fad282012-05-04 02:32:53 +00004320
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004321 /* Restore userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004322 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4323 mtspr(SPRN_EBBHR, ebb_regs[0]);
4324 mtspr(SPRN_EBBRR, ebb_regs[1]);
4325 mtspr(SPRN_BESCR, ebb_regs[2]);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004326 mtspr(SPRN_TAR, user_tar);
4327 mtspr(SPRN_FSCR, current->thread.fscr);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004328 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004329 mtspr(SPRN_VRSAVE, user_vrsave);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004330
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004331 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras432953b2017-11-09 15:37:10 +11004332 atomic_dec(&kvm->arch.vcpus_running);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004333 return r;
4334}
4335
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004336static void kvmppc_add_seg_page_size(struct kvm_ppc_one_seg_page_size **sps,
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004337 int shift, int sllp)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004338{
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004339 (*sps)->page_shift = shift;
4340 (*sps)->slb_enc = sllp;
4341 (*sps)->enc[0].page_shift = shift;
4342 (*sps)->enc[0].pte_enc = kvmppc_pgsize_lp_encoding(shift, shift);
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304343 /*
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004344 * Add 16MB MPSS support (may get filtered out by userspace)
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304345 */
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004346 if (shift != 24) {
4347 int penc = kvmppc_pgsize_lp_encoding(shift, 24);
4348 if (penc != -1) {
4349 (*sps)->enc[1].page_shift = 24;
4350 (*sps)->enc[1].pte_enc = penc;
4351 }
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304352 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004353 (*sps)++;
4354}
4355
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304356static int kvm_vm_ioctl_get_smmu_info_hv(struct kvm *kvm,
4357 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004358{
4359 struct kvm_ppc_one_seg_page_size *sps;
4360
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004361 /*
Paul Mackerrase3bfed12017-08-25 19:53:39 +10004362 * POWER7, POWER8 and POWER9 all support 32 storage keys for data.
4363 * POWER7 doesn't support keys for instruction accesses,
4364 * POWER8 and POWER9 do.
4365 */
4366 info->data_keys = 32;
4367 info->instr_keys = cpu_has_feature(CPU_FTR_ARCH_207S) ? 32 : 0;
4368
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004369 /* POWER7, 8 and 9 all have 1T segments and 32-entry SLB */
4370 info->flags = KVM_PPC_PAGE_SIZES_REAL | KVM_PPC_1T_SEGMENTS;
4371 info->slb_size = 32;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004372
4373 /* We only support these sizes for now, and no muti-size segments */
4374 sps = &info->sps[0];
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004375 kvmppc_add_seg_page_size(&sps, 12, 0);
4376 kvmppc_add_seg_page_size(&sps, 16, SLB_VSID_L | SLB_VSID_LP_01);
4377 kvmppc_add_seg_page_size(&sps, 24, SLB_VSID_L);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004378
Paul Mackerras901f8c32018-10-08 14:24:30 +11004379 /* If running as a nested hypervisor, we don't support HPT guests */
4380 if (kvmhv_on_pseries())
4381 info->flags |= KVM_PPC_NO_HASH;
4382
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004383 return 0;
4384}
4385
Paul Mackerras82ed3612011-12-15 02:03:22 +00004386/*
4387 * Get (and clear) the dirty memory log for a memory slot.
4388 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304389static int kvm_vm_ioctl_get_dirty_log_hv(struct kvm *kvm,
4390 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004391{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004392 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004393 struct kvm_memory_slot *memslot;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004394 int i, r;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004395 unsigned long n;
Paul Mackerrase641a312017-10-26 16:39:19 +11004396 unsigned long *buf, *p;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004397 struct kvm_vcpu *vcpu;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004398
4399 mutex_lock(&kvm->slots_lock);
4400
4401 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07004402 if (log->slot >= KVM_USER_MEM_SLOTS)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004403 goto out;
4404
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004405 slots = kvm_memslots(kvm);
4406 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004407 r = -ENOENT;
4408 if (!memslot->dirty_bitmap)
4409 goto out;
4410
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004411 /*
Paul Mackerrase641a312017-10-26 16:39:19 +11004412 * Use second half of bitmap area because both HPT and radix
4413 * accumulate bits in the first half.
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004414 */
Paul Mackerras82ed3612011-12-15 02:03:22 +00004415 n = kvm_dirty_bitmap_bytes(memslot);
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004416 buf = memslot->dirty_bitmap + n / sizeof(long);
4417 memset(buf, 0, n);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004418
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004419 if (kvm_is_radix(kvm))
4420 r = kvmppc_hv_get_dirty_log_radix(kvm, memslot, buf);
4421 else
4422 r = kvmppc_hv_get_dirty_log_hpt(kvm, memslot, buf);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004423 if (r)
4424 goto out;
4425
Paul Mackerrase641a312017-10-26 16:39:19 +11004426 /*
4427 * We accumulate dirty bits in the first half of the
4428 * memslot's dirty_bitmap area, for when pages are paged
4429 * out or modified by the host directly. Pick up these
4430 * bits and add them to the map.
4431 */
4432 p = memslot->dirty_bitmap;
4433 for (i = 0; i < n / sizeof(long); ++i)
4434 buf[i] |= xchg(&p[i], 0);
4435
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004436 /* Harvest dirty bits from VPA and DTL updates */
4437 /* Note: we never modify the SLB shadow buffer areas */
4438 kvm_for_each_vcpu(i, vcpu, kvm) {
4439 spin_lock(&vcpu->arch.vpa_update_lock);
4440 kvmppc_harvest_vpa_dirty(&vcpu->arch.vpa, memslot, buf);
4441 kvmppc_harvest_vpa_dirty(&vcpu->arch.dtl, memslot, buf);
4442 spin_unlock(&vcpu->arch.vpa_update_lock);
4443 }
4444
Paul Mackerras82ed3612011-12-15 02:03:22 +00004445 r = -EFAULT;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004446 if (copy_to_user(log->dirty_bitmap, buf, n))
Paul Mackerras82ed3612011-12-15 02:03:22 +00004447 goto out;
4448
4449 r = 0;
4450out:
4451 mutex_unlock(&kvm->slots_lock);
4452 return r;
4453}
4454
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304455static void kvmppc_core_free_memslot_hv(struct kvm_memory_slot *free,
4456 struct kvm_memory_slot *dont)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004457{
4458 if (!dont || free->arch.rmap != dont->arch.rmap) {
4459 vfree(free->arch.rmap);
4460 free->arch.rmap = NULL;
4461 }
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004462}
4463
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304464static int kvmppc_core_create_memslot_hv(struct kvm_memory_slot *slot,
4465 unsigned long npages)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004466{
Kees Cookfad953c2018-06-12 14:27:37 -07004467 slot->arch.rmap = vzalloc(array_size(npages, sizeof(*slot->arch.rmap)));
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004468 if (!slot->arch.rmap)
4469 return -ENOMEM;
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004470
4471 return 0;
4472}
4473
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304474static int kvmppc_core_prepare_memory_region_hv(struct kvm *kvm,
4475 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02004476 const struct kvm_userspace_memory_region *mem)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004477{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004478 return 0;
4479}
4480
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304481static void kvmppc_core_commit_memory_region_hv(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02004482 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004483 const struct kvm_memory_slot *old,
Bharata B Raof032b732018-12-12 15:15:30 +11004484 const struct kvm_memory_slot *new,
4485 enum kvm_mr_change change)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004486{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004487 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004488
Yongji Xiea56ee9f2016-11-04 13:55:12 +08004489 /*
4490 * If we are making a new memslot, it might make
4491 * some address that was previously cached as emulated
4492 * MMIO be no longer emulated MMIO, so invalidate
4493 * all the caches of emulated MMIO translations.
4494 */
4495 if (npages)
4496 atomic64_inc(&kvm->arch.mmio_update);
Paul Mackerras5af3e9d2018-12-12 15:17:17 +11004497
4498 /*
4499 * For change == KVM_MR_MOVE or KVM_MR_DELETE, higher levels
4500 * have already called kvm_arch_flush_shadow_memslot() to
4501 * flush shadow mappings. For KVM_MR_CREATE we have no
4502 * previous mappings. So the only case to handle is
4503 * KVM_MR_FLAGS_ONLY when the KVM_MEM_LOG_DIRTY_PAGES bit
4504 * has been changed.
4505 * For radix guests, we flush on setting KVM_MEM_LOG_DIRTY_PAGES
4506 * to get rid of any THP PTEs in the partition-scoped page tables
4507 * so we can track dirtiness at the page level; we flush when
4508 * clearing KVM_MEM_LOG_DIRTY_PAGES so that we can go back to
4509 * using THP PTEs.
4510 */
4511 if (change == KVM_MR_FLAGS_ONLY && kvm_is_radix(kvm) &&
4512 ((new->flags ^ old->flags) & KVM_MEM_LOG_DIRTY_PAGES))
4513 kvmppc_radix_flush_memslot(kvm, old);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004514}
4515
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004516/*
4517 * Update LPCR values in kvm->arch and in vcores.
4518 * Caller must hold kvm->lock.
4519 */
4520void kvmppc_update_lpcr(struct kvm *kvm, unsigned long lpcr, unsigned long mask)
4521{
4522 long int i;
4523 u32 cores_done = 0;
4524
4525 if ((kvm->arch.lpcr & mask) == lpcr)
4526 return;
4527
4528 kvm->arch.lpcr = (kvm->arch.lpcr & ~mask) | lpcr;
4529
4530 for (i = 0; i < KVM_MAX_VCORES; ++i) {
4531 struct kvmppc_vcore *vc = kvm->arch.vcores[i];
4532 if (!vc)
4533 continue;
4534 spin_lock(&vc->lock);
4535 vc->lpcr = (vc->lpcr & ~mask) | lpcr;
4536 spin_unlock(&vc->lock);
4537 if (++cores_done >= kvm->arch.online_vcores)
4538 break;
4539 }
4540}
4541
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304542static void kvmppc_mmu_destroy_hv(struct kvm_vcpu *vcpu)
4543{
4544 return;
4545}
4546
Paul Mackerrasded13fc2017-11-22 14:38:53 +11004547void kvmppc_setup_partition_table(struct kvm *kvm)
Paul Mackerras7a840842016-11-16 22:25:20 +11004548{
4549 unsigned long dw0, dw1;
4550
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004551 if (!kvm_is_radix(kvm)) {
4552 /* PS field - page size for VRMA */
4553 dw0 = ((kvm->arch.vrma_slb_v & SLB_VSID_L) >> 1) |
4554 ((kvm->arch.vrma_slb_v & SLB_VSID_LP) << 1);
4555 /* HTABSIZE and HTABORG fields */
4556 dw0 |= kvm->arch.sdr1;
Paul Mackerras7a840842016-11-16 22:25:20 +11004557
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004558 /* Second dword as set by userspace */
4559 dw1 = kvm->arch.process_table;
4560 } else {
4561 dw0 = PATB_HR | radix__get_tree_size() |
4562 __pa(kvm->arch.pgtable) | RADIX_PGD_INDEX_SIZE;
4563 dw1 = PATB_GR | kvm->arch.process_table;
4564 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004565 kvmhv_set_ptbl_entry(kvm->arch.lpid, dw0, dw1);
Paul Mackerras7a840842016-11-16 22:25:20 +11004566}
4567
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004568/*
4569 * Set up HPT (hashed page table) and RMA (real-mode area).
4570 * Must be called with kvm->lock held.
4571 */
Paul Mackerras32fad282012-05-04 02:32:53 +00004572static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004573{
4574 int err = 0;
4575 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004576 unsigned long hva;
4577 struct kvm_memory_slot *memslot;
4578 struct vm_area_struct *vma;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004579 unsigned long lpcr = 0, senc;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004580 unsigned long psize, porder;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004581 int srcu_idx;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004582
Paul Mackerras32fad282012-05-04 02:32:53 +00004583 /* Allocate hashed page table (if not done already) and reset it */
David Gibson3f9d4f52016-12-20 16:49:00 +11004584 if (!kvm->arch.hpt.virt) {
David Gibsonaae07772016-12-20 16:49:02 +11004585 int order = KVM_DEFAULT_HPT_ORDER;
4586 struct kvm_hpt_info info;
4587
4588 err = kvmppc_allocate_hpt(&info, order);
4589 /* If we get here, it means userspace didn't specify a
4590 * size explicitly. So, try successively smaller
4591 * sizes if the default failed. */
4592 while ((err == -ENOMEM) && --order >= PPC_MIN_HPT_ORDER)
4593 err = kvmppc_allocate_hpt(&info, order);
4594
4595 if (err < 0) {
Paul Mackerras32fad282012-05-04 02:32:53 +00004596 pr_err("KVM: Couldn't alloc HPT\n");
4597 goto out;
4598 }
David Gibsonaae07772016-12-20 16:49:02 +11004599
4600 kvmppc_set_hpt(kvm, &info);
Paul Mackerras32fad282012-05-04 02:32:53 +00004601 }
4602
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004603 /* Look up the memslot for guest physical address 0 */
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004604 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004605 memslot = gfn_to_memslot(kvm, 0);
4606
4607 /* We must have some memory at 0 by now */
4608 err = -EINVAL;
4609 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004610 goto out_srcu;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004611
4612 /* Look up the VMA for the start of this memory slot */
4613 hva = memslot->userspace_addr;
4614 down_read(&current->mm->mmap_sem);
4615 vma = find_vma(current->mm, hva);
4616 if (!vma || vma->vm_start > hva || (vma->vm_flags & VM_IO))
4617 goto up_out;
4618
4619 psize = vma_kernel_pagesize(vma);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004620
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004621 up_read(&current->mm->mmap_sem);
4622
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004623 /* We can handle 4k, 64k or 16M pages in the VRMA */
Paul Mackerrasdebd5742018-03-02 15:38:04 +11004624 if (psize >= 0x1000000)
4625 psize = 0x1000000;
4626 else if (psize >= 0x10000)
4627 psize = 0x10000;
4628 else
4629 psize = 0x1000;
4630 porder = __ilog2(psize);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004631
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004632 senc = slb_pgsize_encoding(psize);
4633 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
4634 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004635 /* Create HPTEs in the hash page table for the VRMA */
4636 kvmppc_map_vrma(vcpu, memslot, porder);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004637
Paul Mackerras7a840842016-11-16 22:25:20 +11004638 /* Update VRMASD field in the LPCR */
4639 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
4640 /* the -4 is to account for senc values starting at 0x10 */
4641 lpcr = senc << (LPCR_VRMASD_SH - 4);
4642 kvmppc_update_lpcr(kvm, lpcr, LPCR_VRMASD);
Paul Mackerras7a840842016-11-16 22:25:20 +11004643 }
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004644
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004645 /* Order updates to kvm->arch.lpcr etc. vs. mmu_ready */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004646 smp_wmb();
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004647 err = 0;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004648 out_srcu:
4649 srcu_read_unlock(&kvm->srcu, srcu_idx);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004650 out:
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004651 return err;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004652
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004653 up_out:
4654 up_read(&current->mm->mmap_sem);
Lai Jiangshan505d6422013-03-16 00:50:49 +08004655 goto out_srcu;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004656}
4657
Paul Mackerras18c36402017-09-13 16:00:10 +10004658/* Must be called with kvm->lock held and mmu_ready = 0 and no vcpus running */
4659int kvmppc_switch_mmu_to_hpt(struct kvm *kvm)
4660{
Paul Mackerrasaa069a92018-09-21 20:02:01 +10004661 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004662 kvmhv_release_all_nested(kvm);
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004663 kvmppc_rmap_reset(kvm);
4664 kvm->arch.process_table = 0;
4665 /* Mutual exclusion with kvm_unmap_hva_range etc. */
4666 spin_lock(&kvm->mmu_lock);
4667 kvm->arch.radix = 0;
4668 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10004669 kvmppc_free_radix(kvm);
4670 kvmppc_update_lpcr(kvm, LPCR_VPM1,
4671 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Paul Mackerras18c36402017-09-13 16:00:10 +10004672 return 0;
4673}
4674
4675/* Must be called with kvm->lock held and mmu_ready = 0 and no vcpus running */
4676int kvmppc_switch_mmu_to_radix(struct kvm *kvm)
4677{
4678 int err;
4679
4680 err = kvmppc_init_vm_radix(kvm);
4681 if (err)
4682 return err;
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004683 kvmppc_rmap_reset(kvm);
4684 /* Mutual exclusion with kvm_unmap_hva_range etc. */
4685 spin_lock(&kvm->mmu_lock);
4686 kvm->arch.radix = 1;
4687 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10004688 kvmppc_free_hpt(&kvm->arch.hpt);
4689 kvmppc_update_lpcr(kvm, LPCR_UPRT | LPCR_GTSE | LPCR_HR,
4690 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Paul Mackerras18c36402017-09-13 16:00:10 +10004691 return 0;
4692}
4693
Suresh Warrier79b6c242015-12-17 14:59:06 -06004694#ifdef CONFIG_KVM_XICS
4695/*
4696 * Allocate a per-core structure for managing state about which cores are
4697 * running in the host versus the guest and for exchanging data between
4698 * real mode KVM and CPU running in the host.
4699 * This is only done for the first VM.
4700 * The allocated structure stays even if all VMs have stopped.
4701 * It is only freed when the kvm-hv module is unloaded.
4702 * It's OK for this routine to fail, we just don't support host
4703 * core operations like redirecting H_IPI wakeups.
4704 */
4705void kvmppc_alloc_host_rm_ops(void)
4706{
4707 struct kvmppc_host_rm_ops *ops;
4708 unsigned long l_ops;
4709 int cpu, core;
4710 int size;
4711
4712 /* Not the first time here ? */
4713 if (kvmppc_host_rm_ops_hv != NULL)
4714 return;
4715
4716 ops = kzalloc(sizeof(struct kvmppc_host_rm_ops), GFP_KERNEL);
4717 if (!ops)
4718 return;
4719
4720 size = cpu_nr_cores() * sizeof(struct kvmppc_host_rm_core);
4721 ops->rm_core = kzalloc(size, GFP_KERNEL);
4722
4723 if (!ops->rm_core) {
4724 kfree(ops);
4725 return;
4726 }
4727
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004728 cpus_read_lock();
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004729
Suresh Warrier79b6c242015-12-17 14:59:06 -06004730 for (cpu = 0; cpu < nr_cpu_ids; cpu += threads_per_core) {
4731 if (!cpu_online(cpu))
4732 continue;
4733
4734 core = cpu >> threads_shift;
4735 ops->rm_core[core].rm_state.in_host = 1;
4736 }
4737
Suresh Warrier0c2a6602015-12-17 14:59:09 -06004738 ops->vcpu_kick = kvmppc_fast_vcpu_kick_hv;
4739
Suresh Warrier79b6c242015-12-17 14:59:06 -06004740 /*
4741 * Make the contents of the kvmppc_host_rm_ops structure visible
4742 * to other CPUs before we assign it to the global variable.
4743 * Do an atomic assignment (no locks used here), but if someone
4744 * beats us to it, just free our copy and return.
4745 */
4746 smp_wmb();
4747 l_ops = (unsigned long) ops;
4748
4749 if (cmpxchg64((unsigned long *)&kvmppc_host_rm_ops_hv, 0, l_ops)) {
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004750 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06004751 kfree(ops->rm_core);
4752 kfree(ops);
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004753 return;
Suresh Warrier79b6c242015-12-17 14:59:06 -06004754 }
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004755
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004756 cpuhp_setup_state_nocalls_cpuslocked(CPUHP_KVM_PPC_BOOK3S_PREPARE,
4757 "ppc/kvm_book3s:prepare",
4758 kvmppc_set_host_core,
4759 kvmppc_clear_host_core);
4760 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06004761}
4762
4763void kvmppc_free_host_rm_ops(void)
4764{
4765 if (kvmppc_host_rm_ops_hv) {
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01004766 cpuhp_remove_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE);
Suresh Warrier79b6c242015-12-17 14:59:06 -06004767 kfree(kvmppc_host_rm_ops_hv->rm_core);
4768 kfree(kvmppc_host_rm_ops_hv);
4769 kvmppc_host_rm_ops_hv = NULL;
4770 }
4771}
4772#endif
4773
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304774static int kvmppc_core_init_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004775{
Paul Mackerras32fad282012-05-04 02:32:53 +00004776 unsigned long lpcr, lpid;
Paul Mackerrase23a8082015-03-28 14:21:01 +11004777 char buf[32];
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004778 int ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004779
Paul Mackerras32fad282012-05-04 02:32:53 +00004780 /* Allocate the guest's logical partition ID */
4781
4782 lpid = kvmppc_alloc_lpid();
Chen Gang5d226ae2013-07-22 14:32:35 +08004783 if ((long)lpid < 0)
Paul Mackerras32fad282012-05-04 02:32:53 +00004784 return -ENOMEM;
4785 kvm->arch.lpid = lpid;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004786
Suresh Warrier79b6c242015-12-17 14:59:06 -06004787 kvmppc_alloc_host_rm_ops();
4788
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004789 kvmhv_vm_nested_init(kvm);
4790
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004791 /*
4792 * Since we don't flush the TLB when tearing down a VM,
4793 * and this lpid might have previously been used,
4794 * make sure we flush on each core before running the new VM.
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004795 * On POWER9, the tlbie in mmu_partition_table_set_entry()
4796 * does this flush for us.
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004797 */
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004798 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4799 cpumask_setall(&kvm->arch.need_tlb_flush);
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004800
Paul Mackerras699a0ea2014-06-02 11:02:59 +10004801 /* Start out with the default set of hcalls enabled */
4802 memcpy(kvm->arch.enabled_hcalls, default_enabled_hcalls,
4803 sizeof(kvm->arch.enabled_hcalls));
4804
Paul Mackerras7a840842016-11-16 22:25:20 +11004805 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4806 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004807
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004808 /* Init LPCR for virtual RMA mode */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11004809 if (cpu_has_feature(CPU_FTR_HVMODE)) {
4810 kvm->arch.host_lpid = mfspr(SPRN_LPID);
4811 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
4812 lpcr &= LPCR_PECE | LPCR_LPES;
4813 } else {
4814 lpcr = 0;
4815 }
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004816 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
4817 LPCR_VPM0 | LPCR_VPM1;
4818 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
4819 (VRMA_VSID << SLB_VSID_SHIFT_1T);
4820 /* On POWER8 turn on online bit to enable PURR/SPURR */
4821 if (cpu_has_feature(CPU_FTR_ARCH_207S))
4822 lpcr |= LPCR_ONL;
Paul Mackerras84f71392016-11-22 14:30:14 +11004823 /*
4824 * On POWER9, VPM0 bit is reserved (VPM0=1 behaviour is assumed)
4825 * Set HVICE bit to enable hypervisor virtualization interrupts.
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004826 * Set HEIC to prevent OS interrupts to go to hypervisor (should
4827 * be unnecessary but better safe than sorry in case we re-enable
4828 * EE in HV mode with this LPCR still set)
Paul Mackerras84f71392016-11-22 14:30:14 +11004829 */
4830 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerras7a840842016-11-16 22:25:20 +11004831 lpcr &= ~LPCR_VPM0;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004832 lpcr |= LPCR_HVICE | LPCR_HEIC;
4833
4834 /*
4835 * If xive is enabled, we route 0x500 interrupts directly
4836 * to the guest.
4837 */
Paul Mackerras03f95332019-02-04 22:07:20 +11004838 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004839 lpcr |= LPCR_LPES;
Paul Mackerras84f71392016-11-22 14:30:14 +11004840 }
4841
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004842 /*
Paul Mackerras18c36402017-09-13 16:00:10 +10004843 * If the host uses radix, the guest starts out as radix.
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004844 */
4845 if (radix_enabled()) {
4846 kvm->arch.radix = 1;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004847 kvm->arch.mmu_ready = 1;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004848 lpcr &= ~LPCR_VPM1;
4849 lpcr |= LPCR_UPRT | LPCR_GTSE | LPCR_HR;
4850 ret = kvmppc_init_vm_radix(kvm);
4851 if (ret) {
4852 kvmppc_free_lpid(kvm->arch.lpid);
4853 return ret;
4854 }
4855 kvmppc_setup_partition_table(kvm);
4856 }
4857
Paul Mackerras9e368f22011-06-29 00:40:08 +00004858 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004859
David Gibson5e985962016-12-20 16:49:05 +11004860 /* Initialization for future HPT resizes */
4861 kvm->arch.resize_hpt = NULL;
4862
Paul Mackerras512691d2012-10-15 01:15:41 +00004863 /*
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004864 * Work out how many sets the TLB has, for the use of
4865 * the TLB invalidation loop in book3s_hv_rmhandlers.S.
4866 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004867 if (radix_enabled())
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004868 kvm->arch.tlb_sets = POWER9_TLB_SETS_RADIX; /* 128 */
4869 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004870 kvm->arch.tlb_sets = POWER9_TLB_SETS_HASH; /* 256 */
4871 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
4872 kvm->arch.tlb_sets = POWER8_TLB_SETS; /* 512 */
4873 else
4874 kvm->arch.tlb_sets = POWER7_TLB_SETS; /* 128 */
4875
4876 /*
Michael Ellerman441c19c2014-05-23 18:15:25 +10004877 * Track that we now have a HV mode VM active. This blocks secondary
4878 * CPU threads from coming online.
Paul Mackerras516f7892017-10-16 16:11:57 +11004879 * On POWER9, we only need to do this if the "indep_threads_mode"
4880 * module parameter has been set to N.
Paul Mackerras512691d2012-10-15 01:15:41 +00004881 */
Paul Mackerras360cae32018-10-08 16:31:04 +11004882 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
4883 if (!indep_threads_mode && !cpu_has_feature(CPU_FTR_HVMODE)) {
4884 pr_warn("KVM: Ignoring indep_threads_mode=N in nested hypervisor\n");
4885 kvm->arch.threads_indep = true;
4886 } else {
4887 kvm->arch.threads_indep = indep_threads_mode;
4888 }
4889 }
Paul Mackerras516f7892017-10-16 16:11:57 +11004890 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004891 kvm_hv_vm_activated();
Paul Mackerras512691d2012-10-15 01:15:41 +00004892
Paul Mackerrase23a8082015-03-28 14:21:01 +11004893 /*
Paul Mackerras3c313522017-02-06 13:24:41 +11004894 * Initialize smt_mode depending on processor.
4895 * POWER8 and earlier have to use "strict" threading, where
4896 * all vCPUs in a vcore have to run on the same (sub)core,
4897 * whereas on POWER9 the threads can each run a different
4898 * guest.
4899 */
4900 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4901 kvm->arch.smt_mode = threads_per_subcore;
4902 else
4903 kvm->arch.smt_mode = 1;
Paul Mackerras57900692017-05-16 16:41:20 +10004904 kvm->arch.emul_smt_mode = 1;
Paul Mackerras3c313522017-02-06 13:24:41 +11004905
4906 /*
Paul Mackerrase23a8082015-03-28 14:21:01 +11004907 * Create a debugfs directory for the VM
4908 */
4909 snprintf(buf, sizeof(buf), "vm%d", current->pid);
4910 kvm->arch.debugfs_dir = debugfs_create_dir(buf, kvm_debugfs_dir);
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004911 kvmppc_mmu_debugfs_init(kvm);
Paul Mackerras9a94d3e2018-10-08 16:30:57 +11004912 if (radix_enabled())
4913 kvmhv_radix_debugfs_init(kvm);
Paul Mackerrase23a8082015-03-28 14:21:01 +11004914
David Gibson54738c02011-06-29 00:22:41 +00004915 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004916}
4917
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304918static void kvmppc_free_vcores(struct kvm *kvm)
4919{
4920 long int i;
4921
Paul Mackerras23316312015-10-21 16:03:14 +11004922 for (i = 0; i < KVM_MAX_VCORES; ++i)
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304923 kfree(kvm->arch.vcores[i]);
4924 kvm->arch.online_vcores = 0;
4925}
4926
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304927static void kvmppc_core_destroy_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004928{
Paul Mackerrase23a8082015-03-28 14:21:01 +11004929 debugfs_remove_recursive(kvm->arch.debugfs_dir);
4930
Paul Mackerras516f7892017-10-16 16:11:57 +11004931 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004932 kvm_hv_vm_deactivated();
Paul Mackerras512691d2012-10-15 01:15:41 +00004933
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304934 kvmppc_free_vcores(kvm);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004935
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004936
Paul Mackerras5a319352017-01-30 21:21:46 +11004937 if (kvm_is_radix(kvm))
4938 kvmppc_free_radix(kvm);
4939 else
David Gibsonaae07772016-12-20 16:49:02 +11004940 kvmppc_free_hpt(&kvm->arch.hpt);
Suresh Warrierc57875f2016-08-19 15:35:50 +10004941
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004942 /* Perform global invalidation and return lpid to the pool */
4943 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasaa069a92018-09-21 20:02:01 +10004944 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004945 kvmhv_release_all_nested(kvm);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004946 kvm->arch.process_table = 0;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004947 kvmhv_set_ptbl_entry(kvm->arch.lpid, 0, 0);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004948 }
4949 kvmppc_free_lpid(kvm->arch.lpid);
4950
Suresh Warrierc57875f2016-08-19 15:35:50 +10004951 kvmppc_free_pimap(kvm);
Paul Mackerrasde56a942011-06-29 00:21:34 +00004952}
4953
4954/* We don't need to emulate any privileged instructions or dcbz */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304955static int kvmppc_core_emulate_op_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
4956 unsigned int inst, int *advance)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004957{
4958 return EMULATE_FAIL;
4959}
4960
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304961static int kvmppc_core_emulate_mtspr_hv(struct kvm_vcpu *vcpu, int sprn,
4962 ulong spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004963{
4964 return EMULATE_FAIL;
4965}
4966
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304967static int kvmppc_core_emulate_mfspr_hv(struct kvm_vcpu *vcpu, int sprn,
4968 ulong *spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004969{
4970 return EMULATE_FAIL;
4971}
4972
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304973static int kvmppc_core_check_processor_compat_hv(void)
4974{
Paul Mackerrasde760db2018-10-08 16:31:16 +11004975 if (cpu_has_feature(CPU_FTR_HVMODE) &&
4976 cpu_has_feature(CPU_FTR_ARCH_206))
4977 return 0;
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10004978
Paul Mackerrasde760db2018-10-08 16:31:16 +11004979 /* POWER9 in radix mode is capable of being a nested hypervisor. */
4980 if (cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled())
4981 return 0;
4982
4983 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304984}
4985
Suresh Warrier8daaafc2016-08-19 15:35:48 +10004986#ifdef CONFIG_KVM_XICS
4987
4988void kvmppc_free_pimap(struct kvm *kvm)
4989{
4990 kfree(kvm->arch.pimap);
4991}
4992
Suresh Warrierc57875f2016-08-19 15:35:50 +10004993static struct kvmppc_passthru_irqmap *kvmppc_alloc_pimap(void)
Suresh Warrier8daaafc2016-08-19 15:35:48 +10004994{
4995 return kzalloc(sizeof(struct kvmppc_passthru_irqmap), GFP_KERNEL);
4996}
Suresh Warrierc57875f2016-08-19 15:35:50 +10004997
4998static int kvmppc_set_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
4999{
5000 struct irq_desc *desc;
5001 struct kvmppc_irq_map *irq_map;
5002 struct kvmppc_passthru_irqmap *pimap;
5003 struct irq_chip *chip;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005004 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005005
Suresh Warrier644abbb2016-08-19 15:35:54 +10005006 if (!kvm_irq_bypass)
5007 return 1;
5008
Suresh Warrierc57875f2016-08-19 15:35:50 +10005009 desc = irq_to_desc(host_irq);
5010 if (!desc)
5011 return -EIO;
5012
5013 mutex_lock(&kvm->lock);
5014
5015 pimap = kvm->arch.pimap;
5016 if (pimap == NULL) {
5017 /* First call, allocate structure to hold IRQ map */
5018 pimap = kvmppc_alloc_pimap();
5019 if (pimap == NULL) {
5020 mutex_unlock(&kvm->lock);
5021 return -ENOMEM;
5022 }
5023 kvm->arch.pimap = pimap;
5024 }
5025
5026 /*
5027 * For now, we only support interrupts for which the EOI operation
5028 * is an OPAL call followed by a write to XIRR, since that's
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005029 * what our real-mode EOI code does, or a XIVE interrupt
Suresh Warrierc57875f2016-08-19 15:35:50 +10005030 */
5031 chip = irq_data_get_irq_chip(&desc->irq_data);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005032 if (!chip || !(is_pnv_opal_msi(chip) || is_xive_irq(chip))) {
Suresh Warrierc57875f2016-08-19 15:35:50 +10005033 pr_warn("kvmppc_set_passthru_irq_hv: Could not assign IRQ map for (%d,%d)\n",
5034 host_irq, guest_gsi);
5035 mutex_unlock(&kvm->lock);
5036 return -ENOENT;
5037 }
5038
5039 /*
5040 * See if we already have an entry for this guest IRQ number.
5041 * If it's mapped to a hardware IRQ number, that's an error,
5042 * otherwise re-use this entry.
5043 */
5044 for (i = 0; i < pimap->n_mapped; i++) {
5045 if (guest_gsi == pimap->mapped[i].v_hwirq) {
5046 if (pimap->mapped[i].r_hwirq) {
5047 mutex_unlock(&kvm->lock);
5048 return -EINVAL;
5049 }
5050 break;
5051 }
5052 }
5053
5054 if (i == KVMPPC_PIRQ_MAPPED) {
5055 mutex_unlock(&kvm->lock);
5056 return -EAGAIN; /* table is full */
5057 }
5058
5059 irq_map = &pimap->mapped[i];
5060
5061 irq_map->v_hwirq = guest_gsi;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005062 irq_map->desc = desc;
5063
Suresh Warriere3c13e52016-08-19 15:35:51 +10005064 /*
5065 * Order the above two stores before the next to serialize with
5066 * the KVM real mode handler.
5067 */
5068 smp_wmb();
5069 irq_map->r_hwirq = desc->irq_data.hwirq;
5070
Suresh Warrierc57875f2016-08-19 15:35:50 +10005071 if (i == pimap->n_mapped)
5072 pimap->n_mapped++;
5073
Paul Mackerras03f95332019-02-04 22:07:20 +11005074 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005075 rc = kvmppc_xive_set_mapped(kvm, guest_gsi, desc);
5076 else
5077 kvmppc_xics_set_mapped(kvm, guest_gsi, desc->irq_data.hwirq);
5078 if (rc)
5079 irq_map->r_hwirq = 0;
Paul Mackerras5d375192016-08-19 15:35:56 +10005080
Suresh Warrierc57875f2016-08-19 15:35:50 +10005081 mutex_unlock(&kvm->lock);
5082
5083 return 0;
5084}
5085
5086static int kvmppc_clr_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
5087{
5088 struct irq_desc *desc;
5089 struct kvmppc_passthru_irqmap *pimap;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005090 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005091
Suresh Warrier644abbb2016-08-19 15:35:54 +10005092 if (!kvm_irq_bypass)
5093 return 0;
5094
Suresh Warrierc57875f2016-08-19 15:35:50 +10005095 desc = irq_to_desc(host_irq);
5096 if (!desc)
5097 return -EIO;
5098
5099 mutex_lock(&kvm->lock);
Markus Elfringa1c52e12017-01-20 11:00:08 +01005100 if (!kvm->arch.pimap)
5101 goto unlock;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005102
Suresh Warrierc57875f2016-08-19 15:35:50 +10005103 pimap = kvm->arch.pimap;
5104
5105 for (i = 0; i < pimap->n_mapped; i++) {
5106 if (guest_gsi == pimap->mapped[i].v_hwirq)
5107 break;
5108 }
5109
5110 if (i == pimap->n_mapped) {
5111 mutex_unlock(&kvm->lock);
5112 return -ENODEV;
5113 }
5114
Paul Mackerras03f95332019-02-04 22:07:20 +11005115 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005116 rc = kvmppc_xive_clr_mapped(kvm, guest_gsi, pimap->mapped[i].desc);
5117 else
5118 kvmppc_xics_clr_mapped(kvm, guest_gsi, pimap->mapped[i].r_hwirq);
Paul Mackerras5d375192016-08-19 15:35:56 +10005119
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005120 /* invalidate the entry (what do do on error from the above ?) */
Suresh Warrierc57875f2016-08-19 15:35:50 +10005121 pimap->mapped[i].r_hwirq = 0;
5122
5123 /*
5124 * We don't free this structure even when the count goes to
5125 * zero. The structure is freed when we destroy the VM.
5126 */
Markus Elfringa1c52e12017-01-20 11:00:08 +01005127 unlock:
Suresh Warrierc57875f2016-08-19 15:35:50 +10005128 mutex_unlock(&kvm->lock);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005129 return rc;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005130}
5131
5132static int kvmppc_irq_bypass_add_producer_hv(struct irq_bypass_consumer *cons,
5133 struct irq_bypass_producer *prod)
5134{
5135 int ret = 0;
5136 struct kvm_kernel_irqfd *irqfd =
5137 container_of(cons, struct kvm_kernel_irqfd, consumer);
5138
5139 irqfd->producer = prod;
5140
5141 ret = kvmppc_set_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5142 if (ret)
5143 pr_info("kvmppc_set_passthru_irq (irq %d, gsi %d) fails: %d\n",
5144 prod->irq, irqfd->gsi, ret);
5145
5146 return ret;
5147}
5148
5149static void kvmppc_irq_bypass_del_producer_hv(struct irq_bypass_consumer *cons,
5150 struct irq_bypass_producer *prod)
5151{
5152 int ret;
5153 struct kvm_kernel_irqfd *irqfd =
5154 container_of(cons, struct kvm_kernel_irqfd, consumer);
5155
5156 irqfd->producer = NULL;
5157
5158 /*
5159 * When producer of consumer is unregistered, we change back to
5160 * default external interrupt handling mode - KVM real mode
5161 * will switch back to host.
5162 */
5163 ret = kvmppc_clr_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5164 if (ret)
5165 pr_warn("kvmppc_clr_passthru_irq (irq %d, gsi %d) fails: %d\n",
5166 prod->irq, irqfd->gsi, ret);
5167}
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005168#endif
5169
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305170static long kvm_arch_vm_ioctl_hv(struct file *filp,
5171 unsigned int ioctl, unsigned long arg)
5172{
5173 struct kvm *kvm __maybe_unused = filp->private_data;
5174 void __user *argp = (void __user *)arg;
5175 long r;
5176
5177 switch (ioctl) {
5178
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305179 case KVM_PPC_ALLOCATE_HTAB: {
5180 u32 htab_order;
5181
5182 r = -EFAULT;
5183 if (get_user(htab_order, (u32 __user *)argp))
5184 break;
David Gibsonf98a8bf2016-12-20 16:49:03 +11005185 r = kvmppc_alloc_reset_hpt(kvm, htab_order);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305186 if (r)
5187 break;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305188 r = 0;
5189 break;
5190 }
5191
5192 case KVM_PPC_GET_HTAB_FD: {
5193 struct kvm_get_htab_fd ghf;
5194
5195 r = -EFAULT;
5196 if (copy_from_user(&ghf, argp, sizeof(ghf)))
5197 break;
5198 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
5199 break;
5200 }
5201
David Gibson5e985962016-12-20 16:49:05 +11005202 case KVM_PPC_RESIZE_HPT_PREPARE: {
5203 struct kvm_ppc_resize_hpt rhpt;
5204
5205 r = -EFAULT;
5206 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5207 break;
5208
5209 r = kvm_vm_ioctl_resize_hpt_prepare(kvm, &rhpt);
5210 break;
5211 }
5212
5213 case KVM_PPC_RESIZE_HPT_COMMIT: {
5214 struct kvm_ppc_resize_hpt rhpt;
5215
5216 r = -EFAULT;
5217 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5218 break;
5219
5220 r = kvm_vm_ioctl_resize_hpt_commit(kvm, &rhpt);
5221 break;
5222 }
5223
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305224 default:
5225 r = -ENOTTY;
5226 }
5227
5228 return r;
5229}
5230
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005231/*
5232 * List of hcall numbers to enable by default.
5233 * For compatibility with old userspace, we enable by default
5234 * all hcalls that were implemented before the hcall-enabling
5235 * facility was added. Note this list should not include H_RTAS.
5236 */
5237static unsigned int default_hcall_list[] = {
5238 H_REMOVE,
5239 H_ENTER,
5240 H_READ,
5241 H_PROTECT,
5242 H_BULK_REMOVE,
5243 H_GET_TCE,
5244 H_PUT_TCE,
5245 H_SET_DABR,
5246 H_SET_XDABR,
5247 H_CEDE,
5248 H_PROD,
5249 H_CONFER,
5250 H_REGISTER_VPA,
5251#ifdef CONFIG_KVM_XICS
5252 H_EOI,
5253 H_CPPR,
5254 H_IPI,
5255 H_IPOLL,
5256 H_XIRR,
5257 H_XIRR_X,
5258#endif
5259 0
5260};
5261
5262static void init_default_hcalls(void)
5263{
5264 int i;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005265 unsigned int hcall;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005266
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005267 for (i = 0; default_hcall_list[i]; ++i) {
5268 hcall = default_hcall_list[i];
5269 WARN_ON(!kvmppc_hcall_impl_hv(hcall));
5270 __set_bit(hcall / 4, default_enabled_hcalls);
5271 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005272}
5273
Paul Mackerrasc9270132017-01-30 21:21:41 +11005274static int kvmhv_configure_mmu(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
5275{
Paul Mackerras468808b2017-01-30 21:21:42 +11005276 unsigned long lpcr;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005277 int radix;
Paul Mackerras18c36402017-09-13 16:00:10 +10005278 int err;
Paul Mackerras468808b2017-01-30 21:21:42 +11005279
5280 /* If not on a POWER9, reject it */
5281 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5282 return -ENODEV;
5283
5284 /* If any unknown flags set, reject it */
5285 if (cfg->flags & ~(KVM_PPC_MMUV3_RADIX | KVM_PPC_MMUV3_GTSE))
5286 return -EINVAL;
5287
Paul Mackerras468808b2017-01-30 21:21:42 +11005288 /* GR (guest radix) bit in process_table field must match */
Paul Mackerras18c36402017-09-13 16:00:10 +10005289 radix = !!(cfg->flags & KVM_PPC_MMUV3_RADIX);
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005290 if (!!(cfg->process_table & PATB_GR) != radix)
Paul Mackerras468808b2017-01-30 21:21:42 +11005291 return -EINVAL;
5292
5293 /* Process table size field must be reasonable, i.e. <= 24 */
5294 if ((cfg->process_table & PRTS_MASK) > 24)
5295 return -EINVAL;
5296
Paul Mackerras18c36402017-09-13 16:00:10 +10005297 /* We can change a guest to/from radix now, if the host is radix */
5298 if (radix && !radix_enabled())
5299 return -EINVAL;
5300
Paul Mackerrasde760db2018-10-08 16:31:16 +11005301 /* If we're a nested hypervisor, we currently only support radix */
5302 if (kvmhv_on_pseries() && !radix)
5303 return -EINVAL;
5304
Paul Mackerrascf5f6f32017-09-11 16:05:30 +10005305 mutex_lock(&kvm->lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005306 if (radix != kvm_is_radix(kvm)) {
5307 if (kvm->arch.mmu_ready) {
5308 kvm->arch.mmu_ready = 0;
5309 /* order mmu_ready vs. vcpus_running */
5310 smp_mb();
5311 if (atomic_read(&kvm->arch.vcpus_running)) {
5312 kvm->arch.mmu_ready = 1;
5313 err = -EBUSY;
5314 goto out_unlock;
5315 }
5316 }
5317 if (radix)
5318 err = kvmppc_switch_mmu_to_radix(kvm);
5319 else
5320 err = kvmppc_switch_mmu_to_hpt(kvm);
5321 if (err)
5322 goto out_unlock;
5323 }
5324
Paul Mackerras468808b2017-01-30 21:21:42 +11005325 kvm->arch.process_table = cfg->process_table;
5326 kvmppc_setup_partition_table(kvm);
5327
5328 lpcr = (cfg->flags & KVM_PPC_MMUV3_GTSE) ? LPCR_GTSE : 0;
5329 kvmppc_update_lpcr(kvm, lpcr, LPCR_GTSE);
Paul Mackerras18c36402017-09-13 16:00:10 +10005330 err = 0;
Paul Mackerras468808b2017-01-30 21:21:42 +11005331
Paul Mackerras18c36402017-09-13 16:00:10 +10005332 out_unlock:
5333 mutex_unlock(&kvm->lock);
5334 return err;
Paul Mackerrasc9270132017-01-30 21:21:41 +11005335}
5336
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005337static int kvmhv_enable_nested(struct kvm *kvm)
5338{
5339 if (!nested)
5340 return -EPERM;
Paul Mackerras8d9fcac2018-10-19 20:44:04 +11005341 if (!cpu_has_feature(CPU_FTR_ARCH_300) || no_mixing_hpt_and_radix)
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005342 return -ENODEV;
5343
5344 /* kvm == NULL means the caller is testing if the capability exists */
5345 if (kvm)
5346 kvm->arch.nested_enable = true;
5347 return 0;
5348}
5349
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11005350static int kvmhv_load_from_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5351 int size)
5352{
5353 int rc = -EINVAL;
5354
5355 if (kvmhv_vcpu_is_radix(vcpu)) {
5356 rc = kvmhv_copy_from_guest_radix(vcpu, *eaddr, ptr, size);
5357
5358 if (rc > 0)
5359 rc = -EINVAL;
5360 }
5361
5362 /* For now quadrants are the only way to access nested guest memory */
5363 if (rc && vcpu->arch.nested)
5364 rc = -EAGAIN;
5365
5366 return rc;
5367}
5368
5369static int kvmhv_store_to_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5370 int size)
5371{
5372 int rc = -EINVAL;
5373
5374 if (kvmhv_vcpu_is_radix(vcpu)) {
5375 rc = kvmhv_copy_to_guest_radix(vcpu, *eaddr, ptr, size);
5376
5377 if (rc > 0)
5378 rc = -EINVAL;
5379 }
5380
5381 /* For now quadrants are the only way to access nested guest memory */
5382 if (rc && vcpu->arch.nested)
5383 rc = -EAGAIN;
5384
5385 return rc;
5386}
5387
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305388static struct kvmppc_ops kvm_ops_hv = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305389 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_hv,
5390 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_hv,
5391 .get_one_reg = kvmppc_get_one_reg_hv,
5392 .set_one_reg = kvmppc_set_one_reg_hv,
5393 .vcpu_load = kvmppc_core_vcpu_load_hv,
5394 .vcpu_put = kvmppc_core_vcpu_put_hv,
5395 .set_msr = kvmppc_set_msr_hv,
5396 .vcpu_run = kvmppc_vcpu_run_hv,
5397 .vcpu_create = kvmppc_core_vcpu_create_hv,
5398 .vcpu_free = kvmppc_core_vcpu_free_hv,
5399 .check_requests = kvmppc_core_check_requests_hv,
5400 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_hv,
5401 .flush_memslot = kvmppc_core_flush_memslot_hv,
5402 .prepare_memory_region = kvmppc_core_prepare_memory_region_hv,
5403 .commit_memory_region = kvmppc_core_commit_memory_region_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305404 .unmap_hva_range = kvm_unmap_hva_range_hv,
5405 .age_hva = kvm_age_hva_hv,
5406 .test_age_hva = kvm_test_age_hva_hv,
5407 .set_spte_hva = kvm_set_spte_hva_hv,
5408 .mmu_destroy = kvmppc_mmu_destroy_hv,
5409 .free_memslot = kvmppc_core_free_memslot_hv,
5410 .create_memslot = kvmppc_core_create_memslot_hv,
5411 .init_vm = kvmppc_core_init_vm_hv,
5412 .destroy_vm = kvmppc_core_destroy_vm_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305413 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_hv,
5414 .emulate_op = kvmppc_core_emulate_op_hv,
5415 .emulate_mtspr = kvmppc_core_emulate_mtspr_hv,
5416 .emulate_mfspr = kvmppc_core_emulate_mfspr_hv,
5417 .fast_vcpu_kick = kvmppc_fast_vcpu_kick_hv,
5418 .arch_vm_ioctl = kvm_arch_vm_ioctl_hv,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005419 .hcall_implemented = kvmppc_hcall_impl_hv,
Suresh Warrierc57875f2016-08-19 15:35:50 +10005420#ifdef CONFIG_KVM_XICS
5421 .irq_bypass_add_producer = kvmppc_irq_bypass_add_producer_hv,
5422 .irq_bypass_del_producer = kvmppc_irq_bypass_del_producer_hv,
5423#endif
Paul Mackerrasc9270132017-01-30 21:21:41 +11005424 .configure_mmu = kvmhv_configure_mmu,
5425 .get_rmmu_info = kvmhv_get_rmmu_info,
Paul Mackerras3c313522017-02-06 13:24:41 +11005426 .set_smt_mode = kvmhv_set_smt_mode,
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005427 .enable_nested = kvmhv_enable_nested,
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11005428 .load_from_eaddr = kvmhv_load_from_eaddr,
5429 .store_to_eaddr = kvmhv_store_to_eaddr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305430};
5431
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305432static int kvm_init_subcore_bitmap(void)
5433{
5434 int i, j;
5435 int nr_cores = cpu_nr_cores();
5436 struct sibling_subcore_state *sibling_subcore_state;
5437
5438 for (i = 0; i < nr_cores; i++) {
5439 int first_cpu = i * threads_per_core;
5440 int node = cpu_to_node(first_cpu);
5441
5442 /* Ignore if it is already allocated. */
Nicholas Piggind2e60072018-02-14 01:08:12 +10005443 if (paca_ptrs[first_cpu]->sibling_subcore_state)
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305444 continue;
5445
5446 sibling_subcore_state =
wangbo08434ab2019-01-07 20:15:52 +08005447 kzalloc_node(sizeof(struct sibling_subcore_state),
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305448 GFP_KERNEL, node);
5449 if (!sibling_subcore_state)
5450 return -ENOMEM;
5451
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305452
5453 for (j = 0; j < threads_per_core; j++) {
5454 int cpu = first_cpu + j;
5455
Nicholas Piggind2e60072018-02-14 01:08:12 +10005456 paca_ptrs[cpu]->sibling_subcore_state =
5457 sibling_subcore_state;
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305458 }
5459 }
5460 return 0;
5461}
5462
Paul Mackerras5a319352017-01-30 21:21:46 +11005463static int kvmppc_radix_possible(void)
5464{
5465 return cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled();
5466}
5467
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305468static int kvmppc_book3s_init_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005469{
5470 int r;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305471 /*
5472 * FIXME!! Do we need to check on all cpus ?
5473 */
5474 r = kvmppc_core_check_processor_compat_hv();
5475 if (r < 0)
Paul Mackerras739e2422014-03-25 10:47:05 +11005476 return -ENODEV;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005477
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005478 r = kvmhv_nested_init();
5479 if (r)
5480 return r;
5481
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305482 r = kvm_init_subcore_bitmap();
5483 if (r)
5484 return r;
5485
Paul Mackerrasf7257582016-11-18 09:02:08 +11005486 /*
5487 * We need a way of accessing the XICS interrupt controller,
Nicholas Piggind2e60072018-02-14 01:08:12 +10005488 * either directly, via paca_ptrs[cpu]->kvm_hstate.xics_phys, or
Paul Mackerrasf7257582016-11-18 09:02:08 +11005489 * indirectly, via OPAL.
5490 */
5491#ifdef CONFIG_SMP
Paul Mackerras03f95332019-02-04 22:07:20 +11005492 if (!xics_on_xive() && !kvmhv_on_pseries() &&
Paul Mackerrasf3c18e92018-10-08 16:31:05 +11005493 !local_paca->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +11005494 struct device_node *np;
5495
5496 np = of_find_compatible_node(NULL, NULL, "ibm,opal-intc");
5497 if (!np) {
5498 pr_err("KVM-HV: Cannot determine method for accessing XICS\n");
5499 return -ENODEV;
5500 }
Nicholas Mc Guire51eaa082018-07-07 08:53:07 +02005501 /* presence of intc confirmed - node can be dropped again */
5502 of_node_put(np);
Paul Mackerrasf7257582016-11-18 09:02:08 +11005503 }
5504#endif
5505
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305506 kvm_ops_hv.owner = THIS_MODULE;
5507 kvmppc_hv_ops = &kvm_ops_hv;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005508
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005509 init_default_hcalls();
5510
Paul Mackerrasec257162015-06-24 21:18:03 +10005511 init_vcore_lists();
5512
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305513 r = kvmppc_mmu_hv_init();
Paul Mackerras5a319352017-01-30 21:21:46 +11005514 if (r)
5515 return r;
5516
5517 if (kvmppc_radix_possible())
5518 r = kvmppc_radix_init();
Paul Mackerras00608e12018-01-11 16:54:26 +11005519
5520 /*
5521 * POWER9 chips before version 2.02 can't have some threads in
5522 * HPT mode and some in radix mode on the same core.
5523 */
5524 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
5525 unsigned int pvr = mfspr(SPRN_PVR);
5526 if ((pvr >> 16) == PVR_POWER9 &&
5527 (((pvr & 0xe000) == 0 && (pvr & 0xfff) < 0x202) ||
5528 ((pvr & 0xe000) == 0x2000 && (pvr & 0xfff) < 0x101)))
5529 no_mixing_hpt_and_radix = true;
5530 }
5531
Paul Mackerrasde56a942011-06-29 00:21:34 +00005532 return r;
5533}
5534
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305535static void kvmppc_book3s_exit_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005536{
Suresh Warrier79b6c242015-12-17 14:59:06 -06005537 kvmppc_free_host_rm_ops();
Paul Mackerras5a319352017-01-30 21:21:46 +11005538 if (kvmppc_radix_possible())
5539 kvmppc_radix_exit();
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305540 kvmppc_hv_ops = NULL;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005541 kvmhv_nested_exit();
Paul Mackerrasde56a942011-06-29 00:21:34 +00005542}
5543
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305544module_init(kvmppc_book3s_init_hv);
5545module_exit(kvmppc_book3s_exit_hv);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05305546MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01005547MODULE_ALIAS_MISCDEV(KVM_MINOR);
5548MODULE_ALIAS("devname:kvm");