blob: 47ffc7f1b1042405e9b1dfb898a7197bf27d8d58 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Paul Mackerrasde56a942011-06-29 00:21:34 +00002/*
3 * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
4 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
5 *
6 * Authors:
7 * Paul Mackerras <paulus@au1.ibm.com>
8 * Alexander Graf <agraf@suse.de>
9 * Kevin Wolf <mail@kevin-wolf.de>
10 *
11 * Description: KVM functions specific to running on Book 3S
12 * processors in hypervisor mode (specifically POWER7 and later).
13 *
14 * This file is derived from arch/powerpc/kvm/book3s.c,
15 * by Alexander Graf <agraf@suse.de>.
Paul Mackerrasde56a942011-06-29 00:21:34 +000016 */
17
18#include <linux/kvm_host.h>
Thomas Meyer4bb817ed2017-09-03 14:19:31 +020019#include <linux/kernel.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000020#include <linux/err.h>
21#include <linux/slab.h>
22#include <linux/preempt.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010023#include <linux/sched/signal.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010024#include <linux/sched/stat.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000025#include <linux/delay.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040026#include <linux/export.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000027#include <linux/fs.h>
28#include <linux/anon_inodes.h>
Gavin Shan07f8ab252016-05-11 11:15:55 +100029#include <linux/cpu.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000030#include <linux/cpumask.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000031#include <linux/spinlock.h>
32#include <linux/page-flags.h>
Paul Mackerras2c9097e2012-09-11 13:27:01 +000033#include <linux/srcu.h>
Alexander Graf398a76c2013-12-09 13:53:42 +010034#include <linux/miscdevice.h>
Paul Mackerrase23a8082015-03-28 14:21:01 +110035#include <linux/debugfs.h>
Benjamin Herrenschmidtd3989142017-04-05 17:54:51 +100036#include <linux/gfp.h>
37#include <linux/vmalloc.h>
38#include <linux/highmem.h>
39#include <linux/hugetlb.h>
40#include <linux/kvm_irqfd.h>
41#include <linux/irqbypass.h>
42#include <linux/module.h>
43#include <linux/compiler.h>
44#include <linux/of.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000045
Luke Dashjrd6ee76d2018-08-16 21:36:26 +000046#include <asm/ftrace.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000047#include <asm/reg.h>
Paul Mackerras57900692017-05-16 16:41:20 +100048#include <asm/ppc-opcode.h>
Nicholas Piggin6de66382017-11-05 23:33:55 +110049#include <asm/asm-prototypes.h>
Paul Mackerras4bad7772018-10-08 16:31:06 +110050#include <asm/archrandom.h>
Nicholas Piggine303c082018-04-01 15:50:35 +100051#include <asm/debug.h>
Paul Mackerras57900692017-05-16 16:41:20 +100052#include <asm/disassemble.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000053#include <asm/cputable.h>
54#include <asm/cacheflush.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080055#include <linux/uaccess.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000056#include <asm/io.h>
57#include <asm/kvm_ppc.h>
58#include <asm/kvm_book3s.h>
59#include <asm/mmu_context.h>
60#include <asm/lppaca.h>
61#include <asm/processor.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000062#include <asm/cputhreads.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000063#include <asm/page.h>
Michael Neulingde1d9242011-11-09 20:39:49 +000064#include <asm/hvcall.h>
David Howellsae3a1972012-03-28 18:30:02 +010065#include <asm/switch_to.h>
Paul Mackerras512691d2012-10-15 01:15:41 +000066#include <asm/smp.h>
Paul Mackerras66feed62015-03-28 14:21:12 +110067#include <asm/dbell.h>
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +053068#include <asm/hmi.h>
Suresh Warrierc57875f2016-08-19 15:35:50 +100069#include <asm/pnv-pci.h>
Paul Mackerras7a840842016-11-16 22:25:20 +110070#include <asm/mmu.h>
Paul Mackerrasf7257582016-11-18 09:02:08 +110071#include <asm/opal.h>
72#include <asm/xics.h>
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +100073#include <asm/xive.h>
Michael Neulingc1fe1902019-04-01 17:03:12 +110074#include <asm/hw_breakpoint.h>
Bharata B Raoca9f4942019-11-25 08:36:26 +053075#include <asm/kvm_host.h>
76#include <asm/kvm_book3s_uvmem.h>
Bharata B Raoc3262252019-11-25 08:36:29 +053077#include <asm/ultravisor.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000078
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053079#include "book3s.h"
80
Suresh E. Warrier3c78f782014-12-03 18:48:10 -060081#define CREATE_TRACE_POINTS
82#include "trace_hv.h"
83
Paul Mackerrasde56a942011-06-29 00:21:34 +000084/* #define EXIT_DEBUG */
85/* #define EXIT_DEBUG_SIMPLE */
86/* #define EXIT_DEBUG_INT */
87
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000088/* Used to indicate that a guest page fault needs to be handled */
89#define RESUME_PAGE_FAULT (RESUME_GUEST | RESUME_FLAG_ARCH1)
Suresh Warrierf7af5202016-08-19 15:35:52 +100090/* Used to indicate that a guest passthrough interrupt needs to be handled */
91#define RESUME_PASSTHROUGH (RESUME_GUEST | RESUME_FLAG_ARCH2)
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000092
Paul Mackerrasc7b67672012-10-15 01:18:07 +000093/* Used as a "null" value for timebase values */
94#define TB_NIL (~(u64)0)
95
Paul Mackerras699a0ea2014-06-02 11:02:59 +100096static DECLARE_BITMAP(default_enabled_hcalls, MAX_HCALL_OPCODE/4 + 1);
97
Paul Mackerrasb4deba52015-07-02 20:38:16 +100098static int dynamic_mt_modes = 6;
Russell Currey57ad583f2017-01-12 14:54:13 +110099module_param(dynamic_mt_modes, int, 0644);
Paul Mackerrasb4deba52015-07-02 20:38:16 +1000100MODULE_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 +1000101static int target_smt_mode;
Russell Currey57ad583f2017-01-12 14:54:13 +1100102module_param(target_smt_mode, int, 0644);
Paul Mackerrasec257162015-06-24 21:18:03 +1000103MODULE_PARM_DESC(target_smt_mode, "Target threads per core (0 = max)");
Stewart Smith9678cda2014-07-18 14:18:43 +1000104
Paul Mackerras516f7892017-10-16 16:11:57 +1100105static bool indep_threads_mode = true;
106module_param(indep_threads_mode, bool, S_IRUGO | S_IWUSR);
107MODULE_PARM_DESC(indep_threads_mode, "Independent-threads mode (only on POWER9)");
108
Paul Mackerrasaa227862018-09-12 10:42:12 +1000109static bool one_vm_per_core;
110module_param(one_vm_per_core, bool, S_IRUGO | S_IWUSR);
111MODULE_PARM_DESC(one_vm_per_core, "Only run vCPUs from the same VM on a core (requires indep_threads_mode=N)");
112
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600113#ifdef CONFIG_KVM_XICS
114static struct kernel_param_ops module_param_ops = {
115 .set = param_set_int,
116 .get = param_get_int,
117};
118
Russell Currey57ad583f2017-01-12 14:54:13 +1100119module_param_cb(kvm_irq_bypass, &module_param_ops, &kvm_irq_bypass, 0644);
Suresh Warrier644abbb2016-08-19 15:35:54 +1000120MODULE_PARM_DESC(kvm_irq_bypass, "Bypass passthrough interrupt optimization");
121
Russell Currey57ad583f2017-01-12 14:54:13 +1100122module_param_cb(h_ipi_redirect, &module_param_ops, &h_ipi_redirect, 0644);
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600123MODULE_PARM_DESC(h_ipi_redirect, "Redirect H_IPI wakeup to a free host core");
124#endif
125
Paul Mackerrasaa069a92018-09-21 20:02:01 +1000126/* If set, guests are allowed to create and control nested guests */
127static bool nested = true;
128module_param(nested, bool, S_IRUGO | S_IWUSR);
129MODULE_PARM_DESC(nested, "Enable nested virtualization (only on POWER9)");
130
131static inline bool nesting_enabled(struct kvm *kvm)
132{
133 return kvm->arch.nested_enable && kvm_is_radix(kvm);
134}
135
Paul Mackerras00608e12018-01-11 16:54:26 +1100136/* If set, the threads on each CPU core have to be in the same MMU mode */
137static bool no_mixing_hpt_and_radix;
138
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
Thomas Huth5358a962015-05-22 09:25:02 +0200343static void kvmppc_set_pvr_hv(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000344{
345 vcpu->arch.pvr = pvr;
346}
347
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100348/* Dummy value used in computing PCR value below */
349#define PCR_ARCH_300 (PCR_ARCH_207 << 1)
350
Thomas Huth5358a962015-05-22 09:25:02 +0200351static int kvmppc_set_arch_compat(struct kvm_vcpu *vcpu, u32 arch_compat)
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000352{
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100353 unsigned long host_pcr_bit = 0, guest_pcr_bit = 0;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000354 struct kvmppc_vcore *vc = vcpu->arch.vcore;
355
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100356 /* We can (emulate) our own architecture version and anything older */
357 if (cpu_has_feature(CPU_FTR_ARCH_300))
358 host_pcr_bit = PCR_ARCH_300;
359 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
360 host_pcr_bit = PCR_ARCH_207;
361 else if (cpu_has_feature(CPU_FTR_ARCH_206))
362 host_pcr_bit = PCR_ARCH_206;
363 else
364 host_pcr_bit = PCR_ARCH_205;
365
366 /* Determine lowest PCR bit needed to run guest in given PVR level */
367 guest_pcr_bit = host_pcr_bit;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000368 if (arch_compat) {
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000369 switch (arch_compat) {
370 case PVR_ARCH_205:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100371 guest_pcr_bit = PCR_ARCH_205;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000372 break;
373 case PVR_ARCH_206:
374 case PVR_ARCH_206p:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100375 guest_pcr_bit = PCR_ARCH_206;
Paul Mackerras5557ae02014-01-08 21:25:24 +1100376 break;
377 case PVR_ARCH_207:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100378 guest_pcr_bit = PCR_ARCH_207;
379 break;
380 case PVR_ARCH_300:
381 guest_pcr_bit = PCR_ARCH_300;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000382 break;
383 default:
384 return -EINVAL;
385 }
386 }
387
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100388 /* Check requested PCR bits don't exceed our capabilities */
389 if (guest_pcr_bit > host_pcr_bit)
390 return -EINVAL;
391
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000392 spin_lock(&vc->lock);
393 vc->arch_compat = arch_compat;
Jordan Niethe13c7bb32019-09-17 10:46:05 +1000394 /*
395 * Set all PCR bits for which guest_pcr_bit <= bit < host_pcr_bit
396 * Also set all reserved PCR bits
397 */
398 vc->pcr = (host_pcr_bit - guest_pcr_bit) | PCR_MASK;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000399 spin_unlock(&vc->lock);
400
401 return 0;
402}
403
Thomas Huth5358a962015-05-22 09:25:02 +0200404static void kvmppc_dump_regs(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000405{
406 int r;
407
408 pr_err("vcpu %p (%d):\n", vcpu, vcpu->vcpu_id);
409 pr_err("pc = %.16lx msr = %.16llx trap = %x\n",
Simon Guo173c5202018-05-07 14:20:08 +0800410 vcpu->arch.regs.nip, vcpu->arch.shregs.msr, vcpu->arch.trap);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000411 for (r = 0; r < 16; ++r)
412 pr_err("r%2d = %.16lx r%d = %.16lx\n",
413 r, kvmppc_get_gpr(vcpu, r),
414 r+16, kvmppc_get_gpr(vcpu, r+16));
415 pr_err("ctr = %.16lx lr = %.16lx\n",
Simon Guo173c5202018-05-07 14:20:08 +0800416 vcpu->arch.regs.ctr, vcpu->arch.regs.link);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000417 pr_err("srr0 = %.16llx srr1 = %.16llx\n",
418 vcpu->arch.shregs.srr0, vcpu->arch.shregs.srr1);
419 pr_err("sprg0 = %.16llx sprg1 = %.16llx\n",
420 vcpu->arch.shregs.sprg0, vcpu->arch.shregs.sprg1);
421 pr_err("sprg2 = %.16llx sprg3 = %.16llx\n",
422 vcpu->arch.shregs.sprg2, vcpu->arch.shregs.sprg3);
Paul Mackerrasfd0944b2018-10-08 16:30:58 +1100423 pr_err("cr = %.8lx xer = %.16lx dsisr = %.8x\n",
424 vcpu->arch.regs.ccr, vcpu->arch.regs.xer, vcpu->arch.shregs.dsisr);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000425 pr_err("dar = %.16llx\n", vcpu->arch.shregs.dar);
426 pr_err("fault dar = %.16lx dsisr = %.8x\n",
427 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
428 pr_err("SLB (%d entries):\n", vcpu->arch.slb_max);
429 for (r = 0; r < vcpu->arch.slb_max; ++r)
430 pr_err(" ESID = %.16llx VSID = %.16llx\n",
431 vcpu->arch.slb[r].orige, vcpu->arch.slb[r].origv);
432 pr_err("lpcr = %.16lx sdr1 = %.16lx last_inst = %.8x\n",
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000433 vcpu->arch.vcore->lpcr, vcpu->kvm->arch.sdr1,
Paul Mackerrasde56a942011-06-29 00:21:34 +0000434 vcpu->arch.last_inst);
435}
436
Thomas Huth5358a962015-05-22 09:25:02 +0200437static struct kvm_vcpu *kvmppc_find_vcpu(struct kvm *kvm, int id)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000438{
Paul Mackerras5a3f4932019-05-23 16:36:32 +1000439 return kvm_get_vcpu_by_id(kvm, id);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000440}
441
442static void init_vpa(struct kvm_vcpu *vcpu, struct lppaca *vpa)
443{
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000444 vpa->__old_status |= LPPACA_OLD_SHARED_PROC;
Alexander Graf02407552014-06-11 10:34:19 +0200445 vpa->yield_count = cpu_to_be32(1);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000446}
447
Paul Mackerras55b665b2012-09-25 20:33:06 +0000448static int set_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *v,
449 unsigned long addr, unsigned long len)
450{
451 /* check address is cacheline aligned */
452 if (addr & (L1_CACHE_BYTES - 1))
453 return -EINVAL;
454 spin_lock(&vcpu->arch.vpa_update_lock);
455 if (v->next_gpa != addr || v->len != len) {
456 v->next_gpa = addr;
457 v->len = addr ? len : 0;
458 v->update_pending = 1;
459 }
460 spin_unlock(&vcpu->arch.vpa_update_lock);
461 return 0;
462}
463
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000464/* Length for a per-processor buffer is passed in at offset 4 in the buffer */
465struct reg_vpa {
466 u32 dummy;
467 union {
Alexander Graf02407552014-06-11 10:34:19 +0200468 __be16 hword;
469 __be32 word;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000470 } length;
471};
472
473static int vpa_is_registered(struct kvmppc_vpa *vpap)
474{
475 if (vpap->update_pending)
476 return vpap->next_gpa != 0;
477 return vpap->pinned_addr != NULL;
478}
479
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000480static unsigned long do_h_register_vpa(struct kvm_vcpu *vcpu,
481 unsigned long flags,
482 unsigned long vcpuid, unsigned long vpa)
483{
484 struct kvm *kvm = vcpu->kvm;
Paul Mackerras93e60242011-12-12 12:28:55 +0000485 unsigned long len, nb;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000486 void *va;
487 struct kvm_vcpu *tvcpu;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000488 int err;
489 int subfunc;
490 struct kvmppc_vpa *vpap;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000491
492 tvcpu = kvmppc_find_vcpu(kvm, vcpuid);
493 if (!tvcpu)
494 return H_PARAMETER;
495
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000496 subfunc = (flags >> H_VPA_FUNC_SHIFT) & H_VPA_FUNC_MASK;
497 if (subfunc == H_VPA_REG_VPA || subfunc == H_VPA_REG_DTL ||
498 subfunc == H_VPA_REG_SLB) {
499 /* Registering new area - address must be cache-line aligned */
500 if ((vpa & (L1_CACHE_BYTES - 1)) || !vpa)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000501 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000502
503 /* convert logical addr to kernel addr and read length */
Paul Mackerras93e60242011-12-12 12:28:55 +0000504 va = kvmppc_pin_guest_page(kvm, vpa, &nb);
505 if (va == NULL)
Paul Mackerrasb2b2f162011-12-12 12:28:21 +0000506 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000507 if (subfunc == H_VPA_REG_VPA)
Alexander Graf02407552014-06-11 10:34:19 +0200508 len = be16_to_cpu(((struct reg_vpa *)va)->length.hword);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000509 else
Alexander Graf02407552014-06-11 10:34:19 +0200510 len = be32_to_cpu(((struct reg_vpa *)va)->length.word);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000511 kvmppc_unpin_guest_page(kvm, va, vpa, false);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000512
513 /* Check length */
514 if (len > nb || len < sizeof(struct reg_vpa))
515 return H_PARAMETER;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000516 } else {
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000517 vpa = 0;
518 len = 0;
519 }
520
521 err = H_PARAMETER;
522 vpap = NULL;
523 spin_lock(&tvcpu->arch.vpa_update_lock);
524
525 switch (subfunc) {
526 case H_VPA_REG_VPA: /* register VPA */
Nicholas Piggineaac112e2017-08-13 11:33:38 +1000527 /*
528 * The size of our lppaca is 1kB because of the way we align
529 * it for the guest to avoid crossing a 4kB boundary. We only
530 * use 640 bytes of the structure though, so we should accept
531 * clients that set a size of 640.
532 */
Nicholas Piggin499dcd42018-02-14 01:08:13 +1000533 BUILD_BUG_ON(sizeof(struct lppaca) != 640);
534 if (len < sizeof(struct lppaca))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000535 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000536 vpap = &tvcpu->arch.vpa;
537 err = 0;
538 break;
539
540 case H_VPA_REG_DTL: /* register DTL */
541 if (len < sizeof(struct dtl_entry))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000542 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000543 len -= len % sizeof(struct dtl_entry);
544
545 /* Check that they have previously registered a VPA */
546 err = H_RESOURCE;
547 if (!vpa_is_registered(&tvcpu->arch.vpa))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000548 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000549
550 vpap = &tvcpu->arch.dtl;
551 err = 0;
552 break;
553
554 case H_VPA_REG_SLB: /* register SLB shadow buffer */
555 /* Check that they have previously registered a VPA */
556 err = H_RESOURCE;
557 if (!vpa_is_registered(&tvcpu->arch.vpa))
558 break;
559
560 vpap = &tvcpu->arch.slb_shadow;
561 err = 0;
562 break;
563
564 case H_VPA_DEREG_VPA: /* deregister VPA */
565 /* Check they don't still have a DTL or SLB buf registered */
566 err = H_RESOURCE;
567 if (vpa_is_registered(&tvcpu->arch.dtl) ||
568 vpa_is_registered(&tvcpu->arch.slb_shadow))
569 break;
570
571 vpap = &tvcpu->arch.vpa;
572 err = 0;
573 break;
574
575 case H_VPA_DEREG_DTL: /* deregister DTL */
576 vpap = &tvcpu->arch.dtl;
577 err = 0;
578 break;
579
580 case H_VPA_DEREG_SLB: /* deregister SLB shadow buffer */
581 vpap = &tvcpu->arch.slb_shadow;
582 err = 0;
583 break;
584 }
585
586 if (vpap) {
587 vpap->next_gpa = vpa;
588 vpap->len = len;
589 vpap->update_pending = 1;
590 }
591
592 spin_unlock(&tvcpu->arch.vpa_update_lock);
593
594 return err;
595}
596
Paul Mackerras081f3232012-06-01 20:20:24 +1000597static void kvmppc_update_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *vpap)
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000598{
Paul Mackerras081f3232012-06-01 20:20:24 +1000599 struct kvm *kvm = vcpu->kvm;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000600 void *va;
601 unsigned long nb;
Paul Mackerras081f3232012-06-01 20:20:24 +1000602 unsigned long gpa;
603
604 /*
605 * We need to pin the page pointed to by vpap->next_gpa,
606 * but we can't call kvmppc_pin_guest_page under the lock
607 * as it does get_user_pages() and down_read(). So we
608 * have to drop the lock, pin the page, then get the lock
609 * again and check that a new area didn't get registered
610 * in the meantime.
611 */
612 for (;;) {
613 gpa = vpap->next_gpa;
614 spin_unlock(&vcpu->arch.vpa_update_lock);
615 va = NULL;
616 nb = 0;
617 if (gpa)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000618 va = kvmppc_pin_guest_page(kvm, gpa, &nb);
Paul Mackerras081f3232012-06-01 20:20:24 +1000619 spin_lock(&vcpu->arch.vpa_update_lock);
620 if (gpa == vpap->next_gpa)
621 break;
622 /* sigh... unpin that one and try again */
623 if (va)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000624 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000625 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000626
627 vpap->update_pending = 0;
Paul Mackerras081f3232012-06-01 20:20:24 +1000628 if (va && nb < vpap->len) {
629 /*
630 * If it's now too short, it must be that userspace
631 * has changed the mappings underlying guest memory,
632 * so unregister the region.
633 */
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000634 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000635 va = NULL;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000636 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000637 if (vpap->pinned_addr)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000638 kvmppc_unpin_guest_page(kvm, vpap->pinned_addr, vpap->gpa,
639 vpap->dirty);
640 vpap->gpa = gpa;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000641 vpap->pinned_addr = va;
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000642 vpap->dirty = false;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000643 if (va)
644 vpap->pinned_end = va + vpap->len;
645}
Paul Mackerras93e60242011-12-12 12:28:55 +0000646
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000647static void kvmppc_update_vpas(struct kvm_vcpu *vcpu)
648{
Paul Mackerras2f12f032012-10-15 01:17:17 +0000649 if (!(vcpu->arch.vpa.update_pending ||
650 vcpu->arch.slb_shadow.update_pending ||
651 vcpu->arch.dtl.update_pending))
652 return;
653
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000654 spin_lock(&vcpu->arch.vpa_update_lock);
655 if (vcpu->arch.vpa.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000656 kvmppc_update_vpa(vcpu, &vcpu->arch.vpa);
Paul Mackerras55b665b2012-09-25 20:33:06 +0000657 if (vcpu->arch.vpa.pinned_addr)
658 init_vpa(vcpu, vcpu->arch.vpa.pinned_addr);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000659 }
660 if (vcpu->arch.dtl.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000661 kvmppc_update_vpa(vcpu, &vcpu->arch.dtl);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000662 vcpu->arch.dtl_ptr = vcpu->arch.dtl.pinned_addr;
663 vcpu->arch.dtl_index = 0;
664 }
665 if (vcpu->arch.slb_shadow.update_pending)
Paul Mackerras081f3232012-06-01 20:20:24 +1000666 kvmppc_update_vpa(vcpu, &vcpu->arch.slb_shadow);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000667 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000668}
669
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000670/*
671 * Return the accumulated stolen time for the vcore up until `now'.
672 * The caller should hold the vcore lock.
673 */
674static u64 vcore_stolen_time(struct kvmppc_vcore *vc, u64 now)
675{
676 u64 p;
Paul Mackerras2711e242014-12-04 16:43:28 +1100677 unsigned long flags;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000678
Paul Mackerras2711e242014-12-04 16:43:28 +1100679 spin_lock_irqsave(&vc->stoltb_lock, flags);
680 p = vc->stolen_tb;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000681 if (vc->vcore_state != VCORE_INACTIVE &&
Paul Mackerras2711e242014-12-04 16:43:28 +1100682 vc->preempt_tb != TB_NIL)
683 p += now - vc->preempt_tb;
684 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000685 return p;
686}
687
Paul Mackerras0456ec42012-02-03 00:56:21 +0000688static void kvmppc_create_dtl_entry(struct kvm_vcpu *vcpu,
689 struct kvmppc_vcore *vc)
690{
691 struct dtl_entry *dt;
692 struct lppaca *vpa;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000693 unsigned long stolen;
694 unsigned long core_stolen;
695 u64 now;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000696 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000697
698 dt = vcpu->arch.dtl_ptr;
699 vpa = vcpu->arch.vpa.pinned_addr;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000700 now = mftb();
701 core_stolen = vcore_stolen_time(vc, now);
702 stolen = core_stolen - vcpu->arch.stolen_logged;
703 vcpu->arch.stolen_logged = core_stolen;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000704 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000705 stolen += vcpu->arch.busy_stolen;
706 vcpu->arch.busy_stolen = 0;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000707 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000708 if (!dt || !vpa)
709 return;
710 memset(dt, 0, sizeof(struct dtl_entry));
711 dt->dispatch_reason = 7;
Alexander Graf02407552014-06-11 10:34:19 +0200712 dt->processor_id = cpu_to_be16(vc->pcpu + vcpu->arch.ptid);
713 dt->timebase = cpu_to_be64(now + vc->tb_offset);
714 dt->enqueue_to_dispatch_time = cpu_to_be32(stolen);
715 dt->srr0 = cpu_to_be64(kvmppc_get_pc(vcpu));
716 dt->srr1 = cpu_to_be64(vcpu->arch.shregs.msr);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000717 ++dt;
718 if (dt == vcpu->arch.dtl.pinned_end)
719 dt = vcpu->arch.dtl.pinned_addr;
720 vcpu->arch.dtl_ptr = dt;
721 /* order writing *dt vs. writing vpa->dtl_idx */
722 smp_wmb();
Alexander Graf02407552014-06-11 10:34:19 +0200723 vpa->dtl_idx = cpu_to_be64(++vcpu->arch.dtl_index);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000724 vcpu->arch.dtl.dirty = true;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000725}
726
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000727/* See if there is a doorbell interrupt pending for a vcpu */
728static bool kvmppc_doorbell_pending(struct kvm_vcpu *vcpu)
729{
730 int thr;
731 struct kvmppc_vcore *vc;
732
Paul Mackerras57900692017-05-16 16:41:20 +1000733 if (vcpu->arch.doorbell_request)
734 return true;
735 /*
736 * Ensure that the read of vcore->dpdes comes after the read
737 * of vcpu->doorbell_request. This barrier matches the
Palmer Dabbelt6fabc9f2019-04-25 12:53:39 -0700738 * smp_wmb() in kvmppc_guest_entry_inject().
Paul Mackerras57900692017-05-16 16:41:20 +1000739 */
740 smp_rmb();
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000741 vc = vcpu->arch.vcore;
742 thr = vcpu->vcpu_id - vc->first_vcpuid;
743 return !!(vc->dpdes & (1 << thr));
744}
745
Michael Neuling96423822014-06-02 11:03:01 +1000746static bool kvmppc_power8_compatible(struct kvm_vcpu *vcpu)
747{
748 if (vcpu->arch.vcore->arch_compat >= PVR_ARCH_207)
749 return true;
750 if ((!vcpu->arch.vcore->arch_compat) &&
751 cpu_has_feature(CPU_FTR_ARCH_207S))
752 return true;
753 return false;
754}
755
756static int kvmppc_h_set_mode(struct kvm_vcpu *vcpu, unsigned long mflags,
757 unsigned long resource, unsigned long value1,
758 unsigned long value2)
759{
760 switch (resource) {
761 case H_SET_MODE_RESOURCE_SET_CIABR:
762 if (!kvmppc_power8_compatible(vcpu))
763 return H_P2;
764 if (value2)
765 return H_P4;
766 if (mflags)
767 return H_UNSUPPORTED_FLAG_START;
768 /* Guests can't breakpoint the hypervisor */
769 if ((value1 & CIABR_PRIV) == CIABR_PRIV_HYPER)
770 return H_P3;
771 vcpu->arch.ciabr = value1;
772 return H_SUCCESS;
773 case H_SET_MODE_RESOURCE_SET_DAWR:
774 if (!kvmppc_power8_compatible(vcpu))
775 return H_P2;
Michael Neuling398e7122018-03-27 15:37:20 +1100776 if (!ppc_breakpoint_available())
777 return H_P2;
Michael Neuling96423822014-06-02 11:03:01 +1000778 if (mflags)
779 return H_UNSUPPORTED_FLAG_START;
780 if (value2 & DABRX_HYP)
781 return H_P4;
782 vcpu->arch.dawr = value1;
783 vcpu->arch.dawrx = value2;
784 return H_SUCCESS;
Nicholas Piggin55d70042019-10-02 16:00:25 +1000785 case H_SET_MODE_RESOURCE_ADDR_TRANS_MODE:
786 /* KVM does not support mflags=2 (AIL=2) */
787 if (mflags != 0 && mflags != 3)
788 return H_UNSUPPORTED_FLAG_START;
789 return H_TOO_HARD;
Michael Neuling96423822014-06-02 11:03:01 +1000790 default:
791 return H_TOO_HARD;
792 }
793}
794
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +1100795/* Copy guest memory in place - must reside within a single memslot */
796static int kvmppc_copy_guest(struct kvm *kvm, gpa_t to, gpa_t from,
797 unsigned long len)
798{
799 struct kvm_memory_slot *to_memslot = NULL;
800 struct kvm_memory_slot *from_memslot = NULL;
801 unsigned long to_addr, from_addr;
802 int r;
803
804 /* Get HPA for from address */
805 from_memslot = gfn_to_memslot(kvm, from >> PAGE_SHIFT);
806 if (!from_memslot)
807 return -EFAULT;
808 if ((from + len) >= ((from_memslot->base_gfn + from_memslot->npages)
809 << PAGE_SHIFT))
810 return -EINVAL;
811 from_addr = gfn_to_hva_memslot(from_memslot, from >> PAGE_SHIFT);
812 if (kvm_is_error_hva(from_addr))
813 return -EFAULT;
814 from_addr |= (from & (PAGE_SIZE - 1));
815
816 /* Get HPA for to address */
817 to_memslot = gfn_to_memslot(kvm, to >> PAGE_SHIFT);
818 if (!to_memslot)
819 return -EFAULT;
820 if ((to + len) >= ((to_memslot->base_gfn + to_memslot->npages)
821 << PAGE_SHIFT))
822 return -EINVAL;
823 to_addr = gfn_to_hva_memslot(to_memslot, to >> PAGE_SHIFT);
824 if (kvm_is_error_hva(to_addr))
825 return -EFAULT;
826 to_addr |= (to & (PAGE_SIZE - 1));
827
828 /* Perform copy */
829 r = raw_copy_in_user((void __user *)to_addr, (void __user *)from_addr,
830 len);
831 if (r)
832 return -EFAULT;
833 mark_page_dirty(kvm, to >> PAGE_SHIFT);
834 return 0;
835}
836
837static long kvmppc_h_page_init(struct kvm_vcpu *vcpu, unsigned long flags,
838 unsigned long dest, unsigned long src)
839{
840 u64 pg_sz = SZ_4K; /* 4K page size */
841 u64 pg_mask = SZ_4K - 1;
842 int ret;
843
844 /* Check for invalid flags (H_PAGE_SET_LOANED covers all CMO flags) */
845 if (flags & ~(H_ICACHE_INVALIDATE | H_ICACHE_SYNCHRONIZE |
846 H_ZERO_PAGE | H_COPY_PAGE | H_PAGE_SET_LOANED))
847 return H_PARAMETER;
848
849 /* dest (and src if copy_page flag set) must be page aligned */
850 if ((dest & pg_mask) || ((flags & H_COPY_PAGE) && (src & pg_mask)))
851 return H_PARAMETER;
852
853 /* zero and/or copy the page as determined by the flags */
854 if (flags & H_COPY_PAGE) {
855 ret = kvmppc_copy_guest(vcpu->kvm, dest, src, pg_sz);
856 if (ret < 0)
857 return H_PARAMETER;
858 } else if (flags & H_ZERO_PAGE) {
859 ret = kvm_clear_guest(vcpu->kvm, dest, pg_sz);
860 if (ret < 0)
861 return H_PARAMETER;
862 }
863
864 /* We can ignore the remaining flags */
865
866 return H_SUCCESS;
867}
868
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100869static int kvm_arch_vcpu_yield_to(struct kvm_vcpu *target)
870{
871 struct kvmppc_vcore *vcore = target->arch.vcore;
872
873 /*
874 * We expect to have been called by the real mode handler
875 * (kvmppc_rm_h_confer()) which would have directly returned
876 * H_SUCCESS if the source vcore wasn't idle (e.g. if it may
877 * have useful work to do and should not confer) so we don't
878 * recheck that here.
879 */
880
881 spin_lock(&vcore->lock);
882 if (target->arch.state == KVMPPC_VCPU_RUNNABLE &&
Paul Mackerrasec257162015-06-24 21:18:03 +1000883 vcore->vcore_state != VCORE_INACTIVE &&
884 vcore->runner)
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100885 target = vcore->runner;
886 spin_unlock(&vcore->lock);
887
888 return kvm_vcpu_yield_to(target);
889}
890
891static int kvmppc_get_yield_count(struct kvm_vcpu *vcpu)
892{
893 int yield_count = 0;
894 struct lppaca *lppaca;
895
896 spin_lock(&vcpu->arch.vpa_update_lock);
897 lppaca = (struct lppaca *)vcpu->arch.vpa.pinned_addr;
898 if (lppaca)
Paul Mackerrasecb6d612015-03-20 20:39:39 +1100899 yield_count = be32_to_cpu(lppaca->yield_count);
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100900 spin_unlock(&vcpu->arch.vpa_update_lock);
901 return yield_count;
902}
903
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000904int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
905{
906 unsigned long req = kvmppc_get_gpr(vcpu, 3);
907 unsigned long target, ret = H_SUCCESS;
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100908 int yield_count;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000909 struct kvm_vcpu *tvcpu;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000910 int idx, rc;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000911
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000912 if (req <= MAX_HCALL_OPCODE &&
913 !test_bit(req/4, vcpu->kvm->arch.enabled_hcalls))
914 return RESUME_HOST;
915
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000916 switch (req) {
917 case H_CEDE:
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000918 break;
919 case H_PROD:
920 target = kvmppc_get_gpr(vcpu, 4);
921 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
922 if (!tvcpu) {
923 ret = H_PARAMETER;
924 break;
925 }
926 tvcpu->arch.prodded = 1;
927 smp_mb();
Paul Mackerras8464c882016-12-06 20:42:05 +1100928 if (tvcpu->arch.ceded)
929 kvmppc_fast_vcpu_kick_hv(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000930 break;
931 case H_CONFER:
Paul Mackerras42d76042013-09-06 13:23:21 +1000932 target = kvmppc_get_gpr(vcpu, 4);
933 if (target == -1)
934 break;
935 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
936 if (!tvcpu) {
937 ret = H_PARAMETER;
938 break;
939 }
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100940 yield_count = kvmppc_get_gpr(vcpu, 5);
941 if (kvmppc_get_yield_count(tvcpu) != yield_count)
942 break;
943 kvm_arch_vcpu_yield_to(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000944 break;
945 case H_REGISTER_VPA:
946 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
947 kvmppc_get_gpr(vcpu, 5),
948 kvmppc_get_gpr(vcpu, 6));
949 break;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000950 case H_RTAS:
951 if (list_empty(&vcpu->kvm->arch.rtas_tokens))
952 return RESUME_HOST;
953
Paul Mackerrasc9438092013-11-16 17:46:05 +1100954 idx = srcu_read_lock(&vcpu->kvm->srcu);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000955 rc = kvmppc_rtas_hcall(vcpu);
Paul Mackerrasc9438092013-11-16 17:46:05 +1100956 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000957
958 if (rc == -ENOENT)
959 return RESUME_HOST;
960 else if (rc == 0)
961 break;
962
963 /* Send the error out to userspace via KVM_RUN */
964 return rc;
David Gibson99342cf82015-02-05 11:53:25 +1100965 case H_LOGICAL_CI_LOAD:
966 ret = kvmppc_h_logical_ci_load(vcpu);
967 if (ret == H_TOO_HARD)
968 return RESUME_HOST;
969 break;
970 case H_LOGICAL_CI_STORE:
971 ret = kvmppc_h_logical_ci_store(vcpu);
972 if (ret == H_TOO_HARD)
973 return RESUME_HOST;
974 break;
Michael Neuling96423822014-06-02 11:03:01 +1000975 case H_SET_MODE:
976 ret = kvmppc_h_set_mode(vcpu, kvmppc_get_gpr(vcpu, 4),
977 kvmppc_get_gpr(vcpu, 5),
978 kvmppc_get_gpr(vcpu, 6),
979 kvmppc_get_gpr(vcpu, 7));
980 if (ret == H_TOO_HARD)
981 return RESUME_HOST;
982 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000983 case H_XIRR:
984 case H_CPPR:
985 case H_EOI:
986 case H_IPI:
Paul Mackerras8e44ddc2013-05-23 15:42:21 +0000987 case H_IPOLL:
988 case H_XIRR_X:
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000989 if (kvmppc_xics_enabled(vcpu)) {
Paul Mackerras03f95332019-02-04 22:07:20 +1100990 if (xics_on_xive()) {
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000991 ret = H_NOT_AVAILABLE;
992 return RESUME_GUEST;
993 }
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000994 ret = kvmppc_xics_hcall(vcpu, req);
995 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +1100996 }
997 return RESUME_HOST;
Paul Mackerras4bad7772018-10-08 16:31:06 +1100998 case H_SET_DABR:
999 ret = kvmppc_h_set_dabr(vcpu, kvmppc_get_gpr(vcpu, 4));
1000 break;
1001 case H_SET_XDABR:
1002 ret = kvmppc_h_set_xdabr(vcpu, kvmppc_get_gpr(vcpu, 4),
1003 kvmppc_get_gpr(vcpu, 5));
1004 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001005#ifdef CONFIG_SPAPR_TCE_IOMMU
Paul Mackerras4bad7772018-10-08 16:31:06 +11001006 case H_GET_TCE:
1007 ret = kvmppc_h_get_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1008 kvmppc_get_gpr(vcpu, 5));
1009 if (ret == H_TOO_HARD)
1010 return RESUME_HOST;
1011 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11001012 case H_PUT_TCE:
1013 ret = kvmppc_h_put_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1014 kvmppc_get_gpr(vcpu, 5),
1015 kvmppc_get_gpr(vcpu, 6));
1016 if (ret == H_TOO_HARD)
1017 return RESUME_HOST;
1018 break;
1019 case H_PUT_TCE_INDIRECT:
1020 ret = kvmppc_h_put_tce_indirect(vcpu, kvmppc_get_gpr(vcpu, 4),
1021 kvmppc_get_gpr(vcpu, 5),
1022 kvmppc_get_gpr(vcpu, 6),
1023 kvmppc_get_gpr(vcpu, 7));
1024 if (ret == H_TOO_HARD)
1025 return RESUME_HOST;
1026 break;
1027 case H_STUFF_TCE:
1028 ret = kvmppc_h_stuff_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1029 kvmppc_get_gpr(vcpu, 5),
1030 kvmppc_get_gpr(vcpu, 6),
1031 kvmppc_get_gpr(vcpu, 7));
1032 if (ret == H_TOO_HARD)
1033 return RESUME_HOST;
1034 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001035#endif
Paul Mackerras4bad7772018-10-08 16:31:06 +11001036 case H_RANDOM:
1037 if (!powernv_get_random_long(&vcpu->arch.regs.gpr[4]))
1038 ret = H_HARDWARE;
1039 break;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001040
1041 case H_SET_PARTITION_TABLE:
1042 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001043 if (nesting_enabled(vcpu->kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001044 ret = kvmhv_set_partition_table(vcpu);
1045 break;
1046 case H_ENTER_NESTED:
1047 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001048 if (!nesting_enabled(vcpu->kvm))
Paul Mackerras360cae32018-10-08 16:31:04 +11001049 break;
1050 ret = kvmhv_enter_nested_guest(vcpu);
1051 if (ret == H_INTERRUPT) {
1052 kvmppc_set_gpr(vcpu, 3, 0);
Michael Roth6c08ec12018-11-08 21:27:23 -06001053 vcpu->arch.hcall_needed = 0;
Paul Mackerras360cae32018-10-08 16:31:04 +11001054 return -EINTR;
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11001055 } else if (ret == H_TOO_HARD) {
1056 kvmppc_set_gpr(vcpu, 3, 0);
1057 vcpu->arch.hcall_needed = 0;
1058 return RESUME_HOST;
Paul Mackerras360cae32018-10-08 16:31:04 +11001059 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001060 break;
1061 case H_TLB_INVALIDATE:
1062 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001063 if (nesting_enabled(vcpu->kvm))
1064 ret = kvmhv_do_nested_tlbie(vcpu);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001065 break;
Suraj Jitindar Singh6ff887b2018-12-14 16:29:09 +11001066 case H_COPY_TOFROM_GUEST:
1067 ret = H_FUNCTION;
1068 if (nesting_enabled(vcpu->kvm))
1069 ret = kvmhv_copy_tofrom_guest_nested(vcpu);
1070 break;
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001071 case H_PAGE_INIT:
1072 ret = kvmppc_h_page_init(vcpu, kvmppc_get_gpr(vcpu, 4),
1073 kvmppc_get_gpr(vcpu, 5),
1074 kvmppc_get_gpr(vcpu, 6));
1075 break;
Bharata B Raoca9f4942019-11-25 08:36:26 +05301076 case H_SVM_PAGE_IN:
1077 ret = kvmppc_h_svm_page_in(vcpu->kvm,
1078 kvmppc_get_gpr(vcpu, 4),
1079 kvmppc_get_gpr(vcpu, 5),
1080 kvmppc_get_gpr(vcpu, 6));
1081 break;
1082 case H_SVM_PAGE_OUT:
1083 ret = kvmppc_h_svm_page_out(vcpu->kvm,
1084 kvmppc_get_gpr(vcpu, 4),
1085 kvmppc_get_gpr(vcpu, 5),
1086 kvmppc_get_gpr(vcpu, 6));
1087 break;
1088 case H_SVM_INIT_START:
1089 ret = kvmppc_h_svm_init_start(vcpu->kvm);
1090 break;
1091 case H_SVM_INIT_DONE:
1092 ret = kvmppc_h_svm_init_done(vcpu->kvm);
1093 break;
1094
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001095 default:
1096 return RESUME_HOST;
1097 }
1098 kvmppc_set_gpr(vcpu, 3, ret);
1099 vcpu->arch.hcall_needed = 0;
1100 return RESUME_GUEST;
1101}
1102
Paul Mackerras4bad7772018-10-08 16:31:06 +11001103/*
1104 * Handle H_CEDE in the nested virtualization case where we haven't
1105 * called the real-mode hcall handlers in book3s_hv_rmhandlers.S.
1106 * This has to be done early, not in kvmppc_pseries_do_hcall(), so
1107 * that the cede logic in kvmppc_run_single_vcpu() works properly.
1108 */
1109static void kvmppc_nested_cede(struct kvm_vcpu *vcpu)
1110{
1111 vcpu->arch.shregs.msr |= MSR_EE;
1112 vcpu->arch.ceded = 1;
1113 smp_mb();
1114 if (vcpu->arch.prodded) {
1115 vcpu->arch.prodded = 0;
1116 smp_mb();
1117 vcpu->arch.ceded = 0;
1118 }
1119}
1120
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001121static int kvmppc_hcall_impl_hv(unsigned long cmd)
1122{
1123 switch (cmd) {
1124 case H_CEDE:
1125 case H_PROD:
1126 case H_CONFER:
1127 case H_REGISTER_VPA:
Michael Neuling96423822014-06-02 11:03:01 +10001128 case H_SET_MODE:
David Gibson99342cf82015-02-05 11:53:25 +11001129 case H_LOGICAL_CI_LOAD:
1130 case H_LOGICAL_CI_STORE:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001131#ifdef CONFIG_KVM_XICS
1132 case H_XIRR:
1133 case H_CPPR:
1134 case H_EOI:
1135 case H_IPI:
1136 case H_IPOLL:
1137 case H_XIRR_X:
1138#endif
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001139 case H_PAGE_INIT:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001140 return 1;
1141 }
1142
1143 /* See if it's in the real-mode table */
1144 return kvmppc_hcall_impl_hv_realmode(cmd);
1145}
1146
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301147static int kvmppc_emulate_debug_inst(struct kvm_run *run,
1148 struct kvm_vcpu *vcpu)
1149{
1150 u32 last_inst;
1151
1152 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst) !=
1153 EMULATE_DONE) {
1154 /*
1155 * Fetch failed, so return to guest and
1156 * try executing it again.
1157 */
1158 return RESUME_GUEST;
1159 }
1160
1161 if (last_inst == KVMPPC_INST_SW_BREAKPOINT) {
1162 run->exit_reason = KVM_EXIT_DEBUG;
1163 run->debug.arch.address = kvmppc_get_pc(vcpu);
1164 return RESUME_HOST;
1165 } else {
1166 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1167 return RESUME_GUEST;
1168 }
1169}
1170
Paul Mackerras57900692017-05-16 16:41:20 +10001171static void do_nothing(void *x)
1172{
1173}
1174
1175static unsigned long kvmppc_read_dpdes(struct kvm_vcpu *vcpu)
1176{
1177 int thr, cpu, pcpu, nthreads;
1178 struct kvm_vcpu *v;
1179 unsigned long dpdes;
1180
1181 nthreads = vcpu->kvm->arch.emul_smt_mode;
1182 dpdes = 0;
1183 cpu = vcpu->vcpu_id & ~(nthreads - 1);
1184 for (thr = 0; thr < nthreads; ++thr, ++cpu) {
1185 v = kvmppc_find_vcpu(vcpu->kvm, cpu);
1186 if (!v)
1187 continue;
1188 /*
1189 * If the vcpu is currently running on a physical cpu thread,
1190 * interrupt it in order to pull it out of the guest briefly,
1191 * which will update its vcore->dpdes value.
1192 */
1193 pcpu = READ_ONCE(v->cpu);
1194 if (pcpu >= 0)
1195 smp_call_function_single(pcpu, do_nothing, NULL, 1);
1196 if (kvmppc_doorbell_pending(v))
1197 dpdes |= 1 << thr;
1198 }
1199 return dpdes;
1200}
1201
1202/*
1203 * On POWER9, emulate doorbell-related instructions in order to
1204 * give the guest the illusion of running on a multi-threaded core.
1205 * The instructions emulated are msgsndp, msgclrp, mfspr TIR,
1206 * and mfspr DPDES.
1207 */
1208static int kvmppc_emulate_doorbell_instr(struct kvm_vcpu *vcpu)
1209{
1210 u32 inst, rb, thr;
1211 unsigned long arg;
1212 struct kvm *kvm = vcpu->kvm;
1213 struct kvm_vcpu *tvcpu;
1214
Paul Mackerras57900692017-05-16 16:41:20 +10001215 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &inst) != EMULATE_DONE)
1216 return RESUME_GUEST;
1217 if (get_op(inst) != 31)
1218 return EMULATE_FAIL;
1219 rb = get_rb(inst);
1220 thr = vcpu->vcpu_id & (kvm->arch.emul_smt_mode - 1);
1221 switch (get_xop(inst)) {
1222 case OP_31_XOP_MSGSNDP:
1223 arg = kvmppc_get_gpr(vcpu, rb);
1224 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1225 break;
1226 arg &= 0x3f;
1227 if (arg >= kvm->arch.emul_smt_mode)
1228 break;
1229 tvcpu = kvmppc_find_vcpu(kvm, vcpu->vcpu_id - thr + arg);
1230 if (!tvcpu)
1231 break;
1232 if (!tvcpu->arch.doorbell_request) {
1233 tvcpu->arch.doorbell_request = 1;
1234 kvmppc_fast_vcpu_kick_hv(tvcpu);
1235 }
1236 break;
1237 case OP_31_XOP_MSGCLRP:
1238 arg = kvmppc_get_gpr(vcpu, rb);
1239 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1240 break;
1241 vcpu->arch.vcore->dpdes = 0;
1242 vcpu->arch.doorbell_request = 0;
1243 break;
1244 case OP_31_XOP_MFSPR:
1245 switch (get_sprn(inst)) {
1246 case SPRN_TIR:
1247 arg = thr;
1248 break;
1249 case SPRN_DPDES:
1250 arg = kvmppc_read_dpdes(vcpu);
1251 break;
1252 default:
1253 return EMULATE_FAIL;
1254 }
1255 kvmppc_set_gpr(vcpu, get_rt(inst), arg);
1256 break;
1257 default:
1258 return EMULATE_FAIL;
1259 }
1260 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
1261 return RESUME_GUEST;
1262}
1263
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301264static int kvmppc_handle_exit_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
1265 struct task_struct *tsk)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001266{
1267 int r = RESUME_HOST;
1268
1269 vcpu->stat.sum_exits++;
1270
Paul Mackerras1c9e3d52015-11-12 16:43:48 +11001271 /*
1272 * This can happen if an interrupt occurs in the last stages
1273 * of guest entry or the first stages of guest exit (i.e. after
1274 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1275 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1276 * That can happen due to a bug, or due to a machine check
1277 * occurring at just the wrong time.
1278 */
1279 if (vcpu->arch.shregs.msr & MSR_HV) {
1280 printk(KERN_EMERG "KVM trap in HV mode!\n");
1281 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1282 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1283 vcpu->arch.shregs.msr);
1284 kvmppc_dump_regs(vcpu);
1285 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1286 run->hw.hardware_exit_reason = vcpu->arch.trap;
1287 return RESUME_HOST;
1288 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001289 run->exit_reason = KVM_EXIT_UNKNOWN;
1290 run->ready_for_interrupt_injection = 1;
1291 switch (vcpu->arch.trap) {
1292 /* We're good on these - the host merely wanted to get our attention */
1293 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1294 vcpu->stat.dec_exits++;
1295 r = RESUME_GUEST;
1296 break;
1297 case BOOK3S_INTERRUPT_EXTERNAL:
Paul Mackerras5d00f662014-01-08 21:25:28 +11001298 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerras84f71392016-11-22 14:30:14 +11001299 case BOOK3S_INTERRUPT_H_VIRT:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001300 vcpu->stat.ext_intr_exits++;
1301 r = RESUME_GUEST;
1302 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11001303 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
Mahesh Salgaonkardee6f242014-11-03 15:51:57 +11001304 case BOOK3S_INTERRUPT_HMI:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001305 case BOOK3S_INTERRUPT_PERFMON:
Nicholas Piggin6de66382017-11-05 23:33:55 +11001306 case BOOK3S_INTERRUPT_SYSTEM_RESET:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001307 r = RESUME_GUEST;
1308 break;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001309 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Paul Mackerras884dfb72019-02-21 13:38:49 +11001310 /* Print the MCE event to host console. */
Paul Mackerrasc0577202019-02-21 13:40:20 +11001311 machine_check_print_event_info(&vcpu->arch.mce_evt, false, true);
Paul Mackerras884dfb72019-02-21 13:38:49 +11001312
1313 /*
1314 * If the guest can do FWNMI, exit to userspace so it can
1315 * deliver a FWNMI to the guest.
1316 * Otherwise we synthesize a machine check for the guest
1317 * so that it knows that the machine check occurred.
1318 */
1319 if (!vcpu->kvm->arch.fwnmi_enabled) {
1320 ulong flags = vcpu->arch.shregs.msr & 0x083c0000;
1321 kvmppc_core_queue_machine_check(vcpu, flags);
1322 r = RESUME_GUEST;
1323 break;
1324 }
1325
Aravinda Prasade20bbd32017-05-11 16:33:37 +05301326 /* Exit to guest with KVM_EXIT_NMI as exit reason */
1327 run->exit_reason = KVM_EXIT_NMI;
1328 run->hw.hardware_exit_reason = vcpu->arch.trap;
1329 /* Clear out the old NMI status from run->flags */
1330 run->flags &= ~KVM_RUN_PPC_NMI_DISP_MASK;
1331 /* Now set the NMI status */
1332 if (vcpu->arch.mce_evt.disposition == MCE_DISPOSITION_RECOVERED)
1333 run->flags |= KVM_RUN_PPC_NMI_DISP_FULLY_RECOV;
1334 else
1335 run->flags |= KVM_RUN_PPC_NMI_DISP_NOT_RECOV;
1336
1337 r = RESUME_HOST;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001338 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001339 case BOOK3S_INTERRUPT_PROGRAM:
1340 {
1341 ulong flags;
1342 /*
1343 * Normally program interrupts are delivered directly
1344 * to the guest by the hardware, but we can get here
1345 * as a result of a hypervisor emulation interrupt
1346 * (e40) getting turned into a 700 by BML RTAS.
1347 */
1348 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
1349 kvmppc_core_queue_program(vcpu, flags);
1350 r = RESUME_GUEST;
1351 break;
1352 }
1353 case BOOK3S_INTERRUPT_SYSCALL:
1354 {
1355 /* hcall - punt to userspace */
1356 int i;
1357
Liu Ping Fan27025a62013-11-19 14:12:48 +08001358 /* hypercall with MSR_PR has already been handled in rmode,
1359 * and never reaches here.
1360 */
1361
Paul Mackerrasde56a942011-06-29 00:21:34 +00001362 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
1363 for (i = 0; i < 9; ++i)
1364 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
1365 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1366 vcpu->arch.hcall_needed = 1;
1367 r = RESUME_HOST;
1368 break;
1369 }
1370 /*
Paul Mackerras342d3db2011-12-12 12:38:05 +00001371 * We get these next two if the guest accesses a page which it thinks
1372 * it has mapped but which is not actually present, either because
1373 * it is for an emulated I/O device or because the corresonding
1374 * host page has been paged out. Any other HDSI/HISI interrupts
1375 * have been handled already.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001376 */
1377 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001378 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001379 break;
1380 case BOOK3S_INTERRUPT_H_INST_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001381 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
Paul Mackerras32eb1502018-10-08 16:30:56 +11001382 vcpu->arch.fault_dsisr = vcpu->arch.shregs.msr &
1383 DSISR_SRR1_MATCH_64S;
1384 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1385 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001386 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001387 break;
1388 /*
1389 * This occurs if the guest executes an illegal instruction.
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301390 * If the guest debug is disabled, generate a program interrupt
1391 * to the guest. If guest debug is enabled, we need to check
1392 * whether the instruction is a software breakpoint instruction.
1393 * Accordingly return to Guest or Host.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001394 */
1395 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerras4a157d62014-12-03 13:30:39 +11001396 if (vcpu->arch.emul_inst != KVM_INST_FETCH_FAILED)
1397 vcpu->arch.last_inst = kvmppc_need_byteswap(vcpu) ?
1398 swab32(vcpu->arch.emul_inst) :
1399 vcpu->arch.emul_inst;
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301400 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) {
1401 r = kvmppc_emulate_debug_inst(run, vcpu);
1402 } else {
1403 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1404 r = RESUME_GUEST;
1405 }
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001406 break;
1407 /*
1408 * This occurs if the guest (kernel or userspace), does something that
Paul Mackerras57900692017-05-16 16:41:20 +10001409 * is prohibited by HFSCR.
1410 * On POWER9, this could be a doorbell instruction that we need
1411 * to emulate.
1412 * Otherwise, we just generate a program interrupt to the guest.
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001413 */
1414 case BOOK3S_INTERRUPT_H_FAC_UNAVAIL:
Paul Mackerras57900692017-05-16 16:41:20 +10001415 r = EMULATE_FAIL;
Paul Mackerras36ee41d2018-01-30 10:51:32 +11001416 if (((vcpu->arch.hfscr >> 56) == FSCR_MSGP_LG) &&
Paul Mackerras53655dd2018-10-08 16:30:54 +11001417 cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras57900692017-05-16 16:41:20 +10001418 r = kvmppc_emulate_doorbell_instr(vcpu);
1419 if (r == EMULATE_FAIL) {
1420 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1421 r = RESUME_GUEST;
1422 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001423 break;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11001424
1425#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1426 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1427 /*
1428 * This occurs for various TM-related instructions that
1429 * we need to emulate on POWER9 DD2.2. We have already
1430 * handled the cases where the guest was in real-suspend
1431 * mode and was transitioning to transactional state.
1432 */
1433 r = kvmhv_p9_tm_emulation(vcpu);
1434 break;
1435#endif
1436
Suresh Warrierf7af5202016-08-19 15:35:52 +10001437 case BOOK3S_INTERRUPT_HV_RM_HARD:
1438 r = RESUME_PASSTHROUGH;
1439 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001440 default:
1441 kvmppc_dump_regs(vcpu);
1442 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1443 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1444 vcpu->arch.shregs.msr);
Paul Mackerrasf3271d42013-09-20 14:52:41 +10001445 run->hw.hardware_exit_reason = vcpu->arch.trap;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001446 r = RESUME_HOST;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001447 break;
1448 }
1449
Paul Mackerrasde56a942011-06-29 00:21:34 +00001450 return r;
1451}
1452
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11001453static int kvmppc_handle_nested_exit(struct kvm_run *run, struct kvm_vcpu *vcpu)
Paul Mackerras360cae32018-10-08 16:31:04 +11001454{
1455 int r;
1456 int srcu_idx;
1457
1458 vcpu->stat.sum_exits++;
1459
1460 /*
1461 * This can happen if an interrupt occurs in the last stages
1462 * of guest entry or the first stages of guest exit (i.e. after
1463 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1464 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1465 * That can happen due to a bug, or due to a machine check
1466 * occurring at just the wrong time.
1467 */
1468 if (vcpu->arch.shregs.msr & MSR_HV) {
1469 pr_emerg("KVM trap in HV mode while nested!\n");
1470 pr_emerg("trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1471 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1472 vcpu->arch.shregs.msr);
1473 kvmppc_dump_regs(vcpu);
1474 return RESUME_HOST;
1475 }
1476 switch (vcpu->arch.trap) {
1477 /* We're good on these - the host merely wanted to get our attention */
1478 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1479 vcpu->stat.dec_exits++;
1480 r = RESUME_GUEST;
1481 break;
1482 case BOOK3S_INTERRUPT_EXTERNAL:
1483 vcpu->stat.ext_intr_exits++;
1484 r = RESUME_HOST;
1485 break;
1486 case BOOK3S_INTERRUPT_H_DOORBELL:
1487 case BOOK3S_INTERRUPT_H_VIRT:
1488 vcpu->stat.ext_intr_exits++;
1489 r = RESUME_GUEST;
1490 break;
1491 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
1492 case BOOK3S_INTERRUPT_HMI:
1493 case BOOK3S_INTERRUPT_PERFMON:
1494 case BOOK3S_INTERRUPT_SYSTEM_RESET:
1495 r = RESUME_GUEST;
1496 break;
1497 case BOOK3S_INTERRUPT_MACHINE_CHECK:
1498 /* Pass the machine check to the L1 guest */
1499 r = RESUME_HOST;
1500 /* Print the MCE event to host console. */
Paul Mackerrasc0577202019-02-21 13:40:20 +11001501 machine_check_print_event_info(&vcpu->arch.mce_evt, false, true);
Paul Mackerras360cae32018-10-08 16:31:04 +11001502 break;
1503 /*
1504 * We get these next two if the guest accesses a page which it thinks
1505 * it has mapped but which is not actually present, either because
1506 * it is for an emulated I/O device or because the corresonding
1507 * host page has been paged out.
1508 */
1509 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
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 case BOOK3S_INTERRUPT_H_INST_STORAGE:
1515 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
1516 vcpu->arch.fault_dsisr = kvmppc_get_msr(vcpu) &
1517 DSISR_SRR1_MATCH_64S;
1518 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1519 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
1520 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11001521 r = kvmhv_nested_page_fault(run, vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11001522 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1523 break;
1524
1525#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1526 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1527 /*
1528 * This occurs for various TM-related instructions that
1529 * we need to emulate on POWER9 DD2.2. We have already
1530 * handled the cases where the guest was in real-suspend
1531 * mode and was transitioning to transactional state.
1532 */
1533 r = kvmhv_p9_tm_emulation(vcpu);
1534 break;
1535#endif
1536
1537 case BOOK3S_INTERRUPT_HV_RM_HARD:
1538 vcpu->arch.trap = 0;
1539 r = RESUME_GUEST;
Paul Mackerras03f95332019-02-04 22:07:20 +11001540 if (!xics_on_xive())
Paul Mackerras360cae32018-10-08 16:31:04 +11001541 kvmppc_xics_rm_complete(vcpu, 0);
1542 break;
1543 default:
1544 r = RESUME_HOST;
1545 break;
1546 }
1547
1548 return r;
1549}
1550
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301551static int kvm_arch_vcpu_ioctl_get_sregs_hv(struct kvm_vcpu *vcpu,
1552 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001553{
1554 int i;
1555
Paul Mackerrasde56a942011-06-29 00:21:34 +00001556 memset(sregs, 0, sizeof(struct kvm_sregs));
Aneesh Kumar K.V87916442013-08-22 17:08:39 +05301557 sregs->pvr = vcpu->arch.pvr;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001558 for (i = 0; i < vcpu->arch.slb_max; i++) {
1559 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
1560 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1561 }
1562
1563 return 0;
1564}
1565
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301566static int kvm_arch_vcpu_ioctl_set_sregs_hv(struct kvm_vcpu *vcpu,
1567 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001568{
1569 int i, j;
1570
Paul Mackerras9333e6c2014-09-02 16:14:43 +10001571 /* Only accept the same PVR as the host's, since we can't spoof it */
1572 if (sregs->pvr != vcpu->arch.pvr)
1573 return -EINVAL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001574
1575 j = 0;
1576 for (i = 0; i < vcpu->arch.slb_nr; i++) {
1577 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
1578 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
1579 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
1580 ++j;
1581 }
1582 }
1583 vcpu->arch.slb_max = j;
1584
1585 return 0;
1586}
1587
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001588static void kvmppc_set_lpcr(struct kvm_vcpu *vcpu, u64 new_lpcr,
1589 bool preserve_top32)
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001590{
Paul Mackerras8f902b02015-03-20 20:39:38 +11001591 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001592 struct kvmppc_vcore *vc = vcpu->arch.vcore;
1593 u64 mask;
1594
1595 spin_lock(&vc->lock);
1596 /*
Anton Blanchardd6829162014-01-08 21:25:30 +11001597 * If ILE (interrupt little-endian) has changed, update the
1598 * MSR_LE bit in the intr_msr for each vcpu in this vcore.
1599 */
1600 if ((new_lpcr & LPCR_ILE) != (vc->lpcr & LPCR_ILE)) {
Anton Blanchardd6829162014-01-08 21:25:30 +11001601 struct kvm_vcpu *vcpu;
1602 int i;
1603
Anton Blanchardd6829162014-01-08 21:25:30 +11001604 kvm_for_each_vcpu(i, vcpu, kvm) {
1605 if (vcpu->arch.vcore != vc)
1606 continue;
1607 if (new_lpcr & LPCR_ILE)
1608 vcpu->arch.intr_msr |= MSR_LE;
1609 else
1610 vcpu->arch.intr_msr &= ~MSR_LE;
1611 }
Anton Blanchardd6829162014-01-08 21:25:30 +11001612 }
1613
1614 /*
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001615 * Userspace can only modify DPFD (default prefetch depth),
1616 * ILE (interrupt little-endian) and TC (translation control).
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11001617 * On POWER8 and POWER9 userspace can also modify AIL (alt. interrupt loc.).
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001618 */
1619 mask = LPCR_DPFD | LPCR_ILE | LPCR_TC;
Paul Mackerrase0622bd2014-01-08 21:25:27 +11001620 if (cpu_has_feature(CPU_FTR_ARCH_207S))
1621 mask |= LPCR_AIL;
Paul Mackerras1bc3fe82017-05-22 16:55:16 +10001622 /*
1623 * On POWER9, allow userspace to enable large decrementer for the
1624 * guest, whether or not the host has it enabled.
1625 */
1626 if (cpu_has_feature(CPU_FTR_ARCH_300))
1627 mask |= LPCR_LD;
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001628
1629 /* Broken 32-bit version of LPCR must not clear top bits */
1630 if (preserve_top32)
1631 mask &= 0xFFFFFFFF;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001632 vc->lpcr = (vc->lpcr & ~mask) | (new_lpcr & mask);
1633 spin_unlock(&vc->lock);
1634}
1635
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301636static int kvmppc_get_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1637 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001638{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001639 int r = 0;
1640 long int i;
Paul Mackerras31f34382011-12-12 12:26:50 +00001641
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001642 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301643 case KVM_REG_PPC_DEBUG_INST:
1644 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1645 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001646 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001647 *val = get_reg_val(id, 0);
1648 break;
1649 case KVM_REG_PPC_DABR:
1650 *val = get_reg_val(id, vcpu->arch.dabr);
1651 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001652 case KVM_REG_PPC_DABRX:
1653 *val = get_reg_val(id, vcpu->arch.dabrx);
1654 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001655 case KVM_REG_PPC_DSCR:
1656 *val = get_reg_val(id, vcpu->arch.dscr);
1657 break;
1658 case KVM_REG_PPC_PURR:
1659 *val = get_reg_val(id, vcpu->arch.purr);
1660 break;
1661 case KVM_REG_PPC_SPURR:
1662 *val = get_reg_val(id, vcpu->arch.spurr);
1663 break;
1664 case KVM_REG_PPC_AMR:
1665 *val = get_reg_val(id, vcpu->arch.amr);
1666 break;
1667 case KVM_REG_PPC_UAMOR:
1668 *val = get_reg_val(id, vcpu->arch.uamor);
1669 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001670 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRS:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001671 i = id - KVM_REG_PPC_MMCR0;
1672 *val = get_reg_val(id, vcpu->arch.mmcr[i]);
1673 break;
1674 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1675 i = id - KVM_REG_PPC_PMC1;
1676 *val = get_reg_val(id, vcpu->arch.pmc[i]);
Paul Mackerras31f34382011-12-12 12:26:50 +00001677 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001678 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1679 i = id - KVM_REG_PPC_SPMC1;
1680 *val = get_reg_val(id, vcpu->arch.spmc[i]);
1681 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001682 case KVM_REG_PPC_SIAR:
1683 *val = get_reg_val(id, vcpu->arch.siar);
1684 break;
1685 case KVM_REG_PPC_SDAR:
1686 *val = get_reg_val(id, vcpu->arch.sdar);
1687 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001688 case KVM_REG_PPC_SIER:
1689 *val = get_reg_val(id, vcpu->arch.sier);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001690 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001691 case KVM_REG_PPC_IAMR:
1692 *val = get_reg_val(id, vcpu->arch.iamr);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001693 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001694 case KVM_REG_PPC_PSPB:
1695 *val = get_reg_val(id, vcpu->arch.pspb);
1696 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001697 case KVM_REG_PPC_DPDES:
Paul Mackerrasff42df42019-08-27 11:35:40 +10001698 /*
1699 * On POWER9, where we are emulating msgsndp etc.,
1700 * we return 1 bit for each vcpu, which can come from
1701 * either vcore->dpdes or doorbell_request.
1702 * On POWER8, doorbell_request is 0.
1703 */
1704 *val = get_reg_val(id, vcpu->arch.vcore->dpdes |
1705 vcpu->arch.doorbell_request);
Michael Neulingb005255e2014-01-08 21:25:21 +11001706 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001707 case KVM_REG_PPC_VTB:
1708 *val = get_reg_val(id, vcpu->arch.vcore->vtb);
1709 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001710 case KVM_REG_PPC_DAWR:
1711 *val = get_reg_val(id, vcpu->arch.dawr);
1712 break;
1713 case KVM_REG_PPC_DAWRX:
1714 *val = get_reg_val(id, vcpu->arch.dawrx);
1715 break;
1716 case KVM_REG_PPC_CIABR:
1717 *val = get_reg_val(id, vcpu->arch.ciabr);
1718 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001719 case KVM_REG_PPC_CSIGR:
1720 *val = get_reg_val(id, vcpu->arch.csigr);
1721 break;
1722 case KVM_REG_PPC_TACR:
1723 *val = get_reg_val(id, vcpu->arch.tacr);
1724 break;
1725 case KVM_REG_PPC_TCSCR:
1726 *val = get_reg_val(id, vcpu->arch.tcscr);
1727 break;
1728 case KVM_REG_PPC_PID:
1729 *val = get_reg_val(id, vcpu->arch.pid);
1730 break;
1731 case KVM_REG_PPC_ACOP:
1732 *val = get_reg_val(id, vcpu->arch.acop);
1733 break;
1734 case KVM_REG_PPC_WORT:
1735 *val = get_reg_val(id, vcpu->arch.wort);
1736 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001737 case KVM_REG_PPC_TIDR:
1738 *val = get_reg_val(id, vcpu->arch.tid);
1739 break;
1740 case KVM_REG_PPC_PSSCR:
1741 *val = get_reg_val(id, vcpu->arch.psscr);
1742 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001743 case KVM_REG_PPC_VPA_ADDR:
1744 spin_lock(&vcpu->arch.vpa_update_lock);
1745 *val = get_reg_val(id, vcpu->arch.vpa.next_gpa);
1746 spin_unlock(&vcpu->arch.vpa_update_lock);
1747 break;
1748 case KVM_REG_PPC_VPA_SLB:
1749 spin_lock(&vcpu->arch.vpa_update_lock);
1750 val->vpaval.addr = vcpu->arch.slb_shadow.next_gpa;
1751 val->vpaval.length = vcpu->arch.slb_shadow.len;
1752 spin_unlock(&vcpu->arch.vpa_update_lock);
1753 break;
1754 case KVM_REG_PPC_VPA_DTL:
1755 spin_lock(&vcpu->arch.vpa_update_lock);
1756 val->vpaval.addr = vcpu->arch.dtl.next_gpa;
1757 val->vpaval.length = vcpu->arch.dtl.len;
1758 spin_unlock(&vcpu->arch.vpa_update_lock);
1759 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001760 case KVM_REG_PPC_TB_OFFSET:
1761 *val = get_reg_val(id, vcpu->arch.vcore->tb_offset);
1762 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001763 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001764 case KVM_REG_PPC_LPCR_64:
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001765 *val = get_reg_val(id, vcpu->arch.vcore->lpcr);
1766 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001767 case KVM_REG_PPC_PPR:
1768 *val = get_reg_val(id, vcpu->arch.ppr);
1769 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001770#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1771 case KVM_REG_PPC_TFHAR:
1772 *val = get_reg_val(id, vcpu->arch.tfhar);
1773 break;
1774 case KVM_REG_PPC_TFIAR:
1775 *val = get_reg_val(id, vcpu->arch.tfiar);
1776 break;
1777 case KVM_REG_PPC_TEXASR:
1778 *val = get_reg_val(id, vcpu->arch.texasr);
1779 break;
1780 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
1781 i = id - KVM_REG_PPC_TM_GPR0;
1782 *val = get_reg_val(id, vcpu->arch.gpr_tm[i]);
1783 break;
1784 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
1785 {
1786 int j;
1787 i = id - KVM_REG_PPC_TM_VSR0;
1788 if (i < 32)
1789 for (j = 0; j < TS_FPRWIDTH; j++)
1790 val->vsxval[j] = vcpu->arch.fp_tm.fpr[i][j];
1791 else {
1792 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1793 val->vval = vcpu->arch.vr_tm.vr[i-32];
1794 else
1795 r = -ENXIO;
1796 }
1797 break;
1798 }
1799 case KVM_REG_PPC_TM_CR:
1800 *val = get_reg_val(id, vcpu->arch.cr_tm);
1801 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11001802 case KVM_REG_PPC_TM_XER:
1803 *val = get_reg_val(id, vcpu->arch.xer_tm);
1804 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001805 case KVM_REG_PPC_TM_LR:
1806 *val = get_reg_val(id, vcpu->arch.lr_tm);
1807 break;
1808 case KVM_REG_PPC_TM_CTR:
1809 *val = get_reg_val(id, vcpu->arch.ctr_tm);
1810 break;
1811 case KVM_REG_PPC_TM_FPSCR:
1812 *val = get_reg_val(id, vcpu->arch.fp_tm.fpscr);
1813 break;
1814 case KVM_REG_PPC_TM_AMR:
1815 *val = get_reg_val(id, vcpu->arch.amr_tm);
1816 break;
1817 case KVM_REG_PPC_TM_PPR:
1818 *val = get_reg_val(id, vcpu->arch.ppr_tm);
1819 break;
1820 case KVM_REG_PPC_TM_VRSAVE:
1821 *val = get_reg_val(id, vcpu->arch.vrsave_tm);
1822 break;
1823 case KVM_REG_PPC_TM_VSCR:
1824 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1825 *val = get_reg_val(id, vcpu->arch.vr_tm.vscr.u[3]);
1826 else
1827 r = -ENXIO;
1828 break;
1829 case KVM_REG_PPC_TM_DSCR:
1830 *val = get_reg_val(id, vcpu->arch.dscr_tm);
1831 break;
1832 case KVM_REG_PPC_TM_TAR:
1833 *val = get_reg_val(id, vcpu->arch.tar_tm);
1834 break;
1835#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10001836 case KVM_REG_PPC_ARCH_COMPAT:
1837 *val = get_reg_val(id, vcpu->arch.vcore->arch_compat);
1838 break;
Paul Mackerras58555642018-01-12 20:55:20 +11001839 case KVM_REG_PPC_DEC_EXPIRY:
1840 *val = get_reg_val(id, vcpu->arch.dec_expires +
1841 vcpu->arch.vcore->tb_offset);
1842 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10001843 case KVM_REG_PPC_ONLINE:
1844 *val = get_reg_val(id, vcpu->arch.online);
1845 break;
Paul Mackerras30323412018-10-08 16:31:13 +11001846 case KVM_REG_PPC_PTCR:
1847 *val = get_reg_val(id, vcpu->kvm->arch.l1_ptcr);
1848 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001849 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001850 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001851 break;
1852 }
1853
1854 return r;
1855}
1856
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301857static int kvmppc_set_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1858 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001859{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001860 int r = 0;
1861 long int i;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001862 unsigned long addr, len;
Paul Mackerras31f34382011-12-12 12:26:50 +00001863
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001864 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001865 case KVM_REG_PPC_HIOR:
Paul Mackerras31f34382011-12-12 12:26:50 +00001866 /* Only allow this to be set to zero */
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001867 if (set_reg_val(id, *val))
Paul Mackerras31f34382011-12-12 12:26:50 +00001868 r = -EINVAL;
1869 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001870 case KVM_REG_PPC_DABR:
1871 vcpu->arch.dabr = set_reg_val(id, *val);
1872 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001873 case KVM_REG_PPC_DABRX:
1874 vcpu->arch.dabrx = set_reg_val(id, *val) & ~DABRX_HYP;
1875 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001876 case KVM_REG_PPC_DSCR:
1877 vcpu->arch.dscr = set_reg_val(id, *val);
1878 break;
1879 case KVM_REG_PPC_PURR:
1880 vcpu->arch.purr = set_reg_val(id, *val);
1881 break;
1882 case KVM_REG_PPC_SPURR:
1883 vcpu->arch.spurr = set_reg_val(id, *val);
1884 break;
1885 case KVM_REG_PPC_AMR:
1886 vcpu->arch.amr = set_reg_val(id, *val);
1887 break;
1888 case KVM_REG_PPC_UAMOR:
1889 vcpu->arch.uamor = set_reg_val(id, *val);
1890 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001891 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRS:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001892 i = id - KVM_REG_PPC_MMCR0;
1893 vcpu->arch.mmcr[i] = set_reg_val(id, *val);
1894 break;
1895 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1896 i = id - KVM_REG_PPC_PMC1;
1897 vcpu->arch.pmc[i] = set_reg_val(id, *val);
1898 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001899 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1900 i = id - KVM_REG_PPC_SPMC1;
1901 vcpu->arch.spmc[i] = set_reg_val(id, *val);
1902 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001903 case KVM_REG_PPC_SIAR:
1904 vcpu->arch.siar = set_reg_val(id, *val);
1905 break;
1906 case KVM_REG_PPC_SDAR:
1907 vcpu->arch.sdar = set_reg_val(id, *val);
1908 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001909 case KVM_REG_PPC_SIER:
1910 vcpu->arch.sier = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001911 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001912 case KVM_REG_PPC_IAMR:
1913 vcpu->arch.iamr = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001914 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001915 case KVM_REG_PPC_PSPB:
1916 vcpu->arch.pspb = set_reg_val(id, *val);
1917 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001918 case KVM_REG_PPC_DPDES:
1919 vcpu->arch.vcore->dpdes = set_reg_val(id, *val);
1920 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001921 case KVM_REG_PPC_VTB:
1922 vcpu->arch.vcore->vtb = set_reg_val(id, *val);
1923 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001924 case KVM_REG_PPC_DAWR:
1925 vcpu->arch.dawr = set_reg_val(id, *val);
1926 break;
1927 case KVM_REG_PPC_DAWRX:
1928 vcpu->arch.dawrx = set_reg_val(id, *val) & ~DAWRX_HYP;
1929 break;
1930 case KVM_REG_PPC_CIABR:
1931 vcpu->arch.ciabr = set_reg_val(id, *val);
1932 /* Don't allow setting breakpoints in hypervisor code */
1933 if ((vcpu->arch.ciabr & CIABR_PRIV) == CIABR_PRIV_HYPER)
1934 vcpu->arch.ciabr &= ~CIABR_PRIV; /* disable */
1935 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001936 case KVM_REG_PPC_CSIGR:
1937 vcpu->arch.csigr = set_reg_val(id, *val);
1938 break;
1939 case KVM_REG_PPC_TACR:
1940 vcpu->arch.tacr = set_reg_val(id, *val);
1941 break;
1942 case KVM_REG_PPC_TCSCR:
1943 vcpu->arch.tcscr = set_reg_val(id, *val);
1944 break;
1945 case KVM_REG_PPC_PID:
1946 vcpu->arch.pid = set_reg_val(id, *val);
1947 break;
1948 case KVM_REG_PPC_ACOP:
1949 vcpu->arch.acop = set_reg_val(id, *val);
1950 break;
1951 case KVM_REG_PPC_WORT:
1952 vcpu->arch.wort = set_reg_val(id, *val);
1953 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001954 case KVM_REG_PPC_TIDR:
1955 vcpu->arch.tid = set_reg_val(id, *val);
1956 break;
1957 case KVM_REG_PPC_PSSCR:
1958 vcpu->arch.psscr = set_reg_val(id, *val) & PSSCR_GUEST_VIS;
1959 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001960 case KVM_REG_PPC_VPA_ADDR:
1961 addr = set_reg_val(id, *val);
1962 r = -EINVAL;
1963 if (!addr && (vcpu->arch.slb_shadow.next_gpa ||
1964 vcpu->arch.dtl.next_gpa))
1965 break;
1966 r = set_vpa(vcpu, &vcpu->arch.vpa, addr, sizeof(struct lppaca));
1967 break;
1968 case KVM_REG_PPC_VPA_SLB:
1969 addr = val->vpaval.addr;
1970 len = val->vpaval.length;
1971 r = -EINVAL;
1972 if (addr && !vcpu->arch.vpa.next_gpa)
1973 break;
1974 r = set_vpa(vcpu, &vcpu->arch.slb_shadow, addr, len);
1975 break;
1976 case KVM_REG_PPC_VPA_DTL:
1977 addr = val->vpaval.addr;
1978 len = val->vpaval.length;
1979 r = -EINVAL;
Paul Mackerras9f8c8c72012-10-15 01:18:37 +00001980 if (addr && (len < sizeof(struct dtl_entry) ||
1981 !vcpu->arch.vpa.next_gpa))
Paul Mackerras55b665b2012-09-25 20:33:06 +00001982 break;
1983 len -= len % sizeof(struct dtl_entry);
1984 r = set_vpa(vcpu, &vcpu->arch.dtl, addr, len);
1985 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001986 case KVM_REG_PPC_TB_OFFSET:
1987 /* round up to multiple of 2^24 */
1988 vcpu->arch.vcore->tb_offset =
1989 ALIGN(set_reg_val(id, *val), 1UL << 24);
1990 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001991 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001992 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), true);
1993 break;
1994 case KVM_REG_PPC_LPCR_64:
1995 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), false);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001996 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001997 case KVM_REG_PPC_PPR:
1998 vcpu->arch.ppr = set_reg_val(id, *val);
1999 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002000#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
2001 case KVM_REG_PPC_TFHAR:
2002 vcpu->arch.tfhar = set_reg_val(id, *val);
2003 break;
2004 case KVM_REG_PPC_TFIAR:
2005 vcpu->arch.tfiar = set_reg_val(id, *val);
2006 break;
2007 case KVM_REG_PPC_TEXASR:
2008 vcpu->arch.texasr = set_reg_val(id, *val);
2009 break;
2010 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
2011 i = id - KVM_REG_PPC_TM_GPR0;
2012 vcpu->arch.gpr_tm[i] = set_reg_val(id, *val);
2013 break;
2014 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
2015 {
2016 int j;
2017 i = id - KVM_REG_PPC_TM_VSR0;
2018 if (i < 32)
2019 for (j = 0; j < TS_FPRWIDTH; j++)
2020 vcpu->arch.fp_tm.fpr[i][j] = val->vsxval[j];
2021 else
2022 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2023 vcpu->arch.vr_tm.vr[i-32] = val->vval;
2024 else
2025 r = -ENXIO;
2026 break;
2027 }
2028 case KVM_REG_PPC_TM_CR:
2029 vcpu->arch.cr_tm = set_reg_val(id, *val);
2030 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11002031 case KVM_REG_PPC_TM_XER:
2032 vcpu->arch.xer_tm = set_reg_val(id, *val);
2033 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002034 case KVM_REG_PPC_TM_LR:
2035 vcpu->arch.lr_tm = set_reg_val(id, *val);
2036 break;
2037 case KVM_REG_PPC_TM_CTR:
2038 vcpu->arch.ctr_tm = set_reg_val(id, *val);
2039 break;
2040 case KVM_REG_PPC_TM_FPSCR:
2041 vcpu->arch.fp_tm.fpscr = set_reg_val(id, *val);
2042 break;
2043 case KVM_REG_PPC_TM_AMR:
2044 vcpu->arch.amr_tm = set_reg_val(id, *val);
2045 break;
2046 case KVM_REG_PPC_TM_PPR:
2047 vcpu->arch.ppr_tm = set_reg_val(id, *val);
2048 break;
2049 case KVM_REG_PPC_TM_VRSAVE:
2050 vcpu->arch.vrsave_tm = set_reg_val(id, *val);
2051 break;
2052 case KVM_REG_PPC_TM_VSCR:
2053 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2054 vcpu->arch.vr.vscr.u[3] = set_reg_val(id, *val);
2055 else
2056 r = - ENXIO;
2057 break;
2058 case KVM_REG_PPC_TM_DSCR:
2059 vcpu->arch.dscr_tm = set_reg_val(id, *val);
2060 break;
2061 case KVM_REG_PPC_TM_TAR:
2062 vcpu->arch.tar_tm = set_reg_val(id, *val);
2063 break;
2064#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10002065 case KVM_REG_PPC_ARCH_COMPAT:
2066 r = kvmppc_set_arch_compat(vcpu, set_reg_val(id, *val));
2067 break;
Paul Mackerras58555642018-01-12 20:55:20 +11002068 case KVM_REG_PPC_DEC_EXPIRY:
2069 vcpu->arch.dec_expires = set_reg_val(id, *val) -
2070 vcpu->arch.vcore->tb_offset;
2071 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002072 case KVM_REG_PPC_ONLINE:
Paul Mackerras7aa15842018-04-20 19:53:22 +10002073 i = set_reg_val(id, *val);
2074 if (i && !vcpu->arch.online)
2075 atomic_inc(&vcpu->arch.vcore->online_count);
2076 else if (!i && vcpu->arch.online)
2077 atomic_dec(&vcpu->arch.vcore->online_count);
2078 vcpu->arch.online = i;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002079 break;
Paul Mackerras30323412018-10-08 16:31:13 +11002080 case KVM_REG_PPC_PTCR:
2081 vcpu->kvm->arch.l1_ptcr = set_reg_val(id, *val);
2082 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00002083 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002084 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00002085 break;
2086 }
2087
2088 return r;
2089}
2090
Paul Mackerras45c940b2016-11-18 17:43:30 +11002091/*
2092 * On POWER9, threads are independent and can be in different partitions.
2093 * Therefore we consider each thread to be a subcore.
2094 * There is a restriction that all threads have to be in the same
2095 * MMU mode (radix or HPT), unfortunately, but since we only support
2096 * HPT guests on a HPT host so far, that isn't an impediment yet.
2097 */
Paul Mackerras516f7892017-10-16 16:11:57 +11002098static int threads_per_vcore(struct kvm *kvm)
Paul Mackerras45c940b2016-11-18 17:43:30 +11002099{
Paul Mackerras516f7892017-10-16 16:11:57 +11002100 if (kvm->arch.threads_indep)
Paul Mackerras45c940b2016-11-18 17:43:30 +11002101 return 1;
2102 return threads_per_subcore;
2103}
2104
Sam Bobroff1e175d22018-07-25 16:12:02 +10002105static struct kvmppc_vcore *kvmppc_vcore_create(struct kvm *kvm, int id)
Stewart Smithde9bdd12014-07-18 14:18:42 +10002106{
2107 struct kvmppc_vcore *vcore;
2108
2109 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
2110
2111 if (vcore == NULL)
2112 return NULL;
2113
Stewart Smithde9bdd12014-07-18 14:18:42 +10002114 spin_lock_init(&vcore->lock);
Paul Mackerras2711e242014-12-04 16:43:28 +11002115 spin_lock_init(&vcore->stoltb_lock);
Marcelo Tosatti85773702016-02-19 09:46:39 +01002116 init_swait_queue_head(&vcore->wq);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002117 vcore->preempt_tb = TB_NIL;
2118 vcore->lpcr = kvm->arch.lpcr;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002119 vcore->first_vcpuid = id;
Stewart Smithde9bdd12014-07-18 14:18:42 +10002120 vcore->kvm = kvm;
Paul Mackerrasec257162015-06-24 21:18:03 +10002121 INIT_LIST_HEAD(&vcore->preempt_list);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002122
2123 return vcore;
2124}
2125
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002126#ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
2127static struct debugfs_timings_element {
2128 const char *name;
2129 size_t offset;
2130} timings[] = {
2131 {"rm_entry", offsetof(struct kvm_vcpu, arch.rm_entry)},
2132 {"rm_intr", offsetof(struct kvm_vcpu, arch.rm_intr)},
2133 {"rm_exit", offsetof(struct kvm_vcpu, arch.rm_exit)},
2134 {"guest", offsetof(struct kvm_vcpu, arch.guest_time)},
2135 {"cede", offsetof(struct kvm_vcpu, arch.cede_time)},
2136};
2137
Thomas Meyer4bb817ed2017-09-03 14:19:31 +02002138#define N_TIMINGS (ARRAY_SIZE(timings))
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002139
2140struct debugfs_timings_state {
2141 struct kvm_vcpu *vcpu;
2142 unsigned int buflen;
2143 char buf[N_TIMINGS * 100];
2144};
2145
2146static int debugfs_timings_open(struct inode *inode, struct file *file)
2147{
2148 struct kvm_vcpu *vcpu = inode->i_private;
2149 struct debugfs_timings_state *p;
2150
2151 p = kzalloc(sizeof(*p), GFP_KERNEL);
2152 if (!p)
2153 return -ENOMEM;
2154
2155 kvm_get_kvm(vcpu->kvm);
2156 p->vcpu = vcpu;
2157 file->private_data = p;
2158
2159 return nonseekable_open(inode, file);
2160}
2161
2162static int debugfs_timings_release(struct inode *inode, struct file *file)
2163{
2164 struct debugfs_timings_state *p = file->private_data;
2165
2166 kvm_put_kvm(p->vcpu->kvm);
2167 kfree(p);
2168 return 0;
2169}
2170
2171static ssize_t debugfs_timings_read(struct file *file, char __user *buf,
2172 size_t len, loff_t *ppos)
2173{
2174 struct debugfs_timings_state *p = file->private_data;
2175 struct kvm_vcpu *vcpu = p->vcpu;
2176 char *s, *buf_end;
2177 struct kvmhv_tb_accumulator tb;
2178 u64 count;
2179 loff_t pos;
2180 ssize_t n;
2181 int i, loops;
2182 bool ok;
2183
2184 if (!p->buflen) {
2185 s = p->buf;
2186 buf_end = s + sizeof(p->buf);
2187 for (i = 0; i < N_TIMINGS; ++i) {
2188 struct kvmhv_tb_accumulator *acc;
2189
2190 acc = (struct kvmhv_tb_accumulator *)
2191 ((unsigned long)vcpu + timings[i].offset);
2192 ok = false;
2193 for (loops = 0; loops < 1000; ++loops) {
2194 count = acc->seqcount;
2195 if (!(count & 1)) {
2196 smp_rmb();
2197 tb = *acc;
2198 smp_rmb();
2199 if (count == acc->seqcount) {
2200 ok = true;
2201 break;
2202 }
2203 }
2204 udelay(1);
2205 }
2206 if (!ok)
2207 snprintf(s, buf_end - s, "%s: stuck\n",
2208 timings[i].name);
2209 else
2210 snprintf(s, buf_end - s,
2211 "%s: %llu %llu %llu %llu\n",
2212 timings[i].name, count / 2,
2213 tb_to_ns(tb.tb_total),
2214 tb_to_ns(tb.tb_min),
2215 tb_to_ns(tb.tb_max));
2216 s += strlen(s);
2217 }
2218 p->buflen = s - p->buf;
2219 }
2220
2221 pos = *ppos;
2222 if (pos >= p->buflen)
2223 return 0;
2224 if (len > p->buflen - pos)
2225 len = p->buflen - pos;
2226 n = copy_to_user(buf, p->buf + pos, len);
2227 if (n) {
2228 if (n == len)
2229 return -EFAULT;
2230 len -= n;
2231 }
2232 *ppos = pos + len;
2233 return len;
2234}
2235
2236static ssize_t debugfs_timings_write(struct file *file, const char __user *buf,
2237 size_t len, loff_t *ppos)
2238{
2239 return -EACCES;
2240}
2241
2242static const struct file_operations debugfs_timings_ops = {
2243 .owner = THIS_MODULE,
2244 .open = debugfs_timings_open,
2245 .release = debugfs_timings_release,
2246 .read = debugfs_timings_read,
2247 .write = debugfs_timings_write,
2248 .llseek = generic_file_llseek,
2249};
2250
2251/* Create a debugfs directory for the vcpu */
2252static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2253{
2254 char buf[16];
2255 struct kvm *kvm = vcpu->kvm;
2256
2257 snprintf(buf, sizeof(buf), "vcpu%u", id);
2258 if (IS_ERR_OR_NULL(kvm->arch.debugfs_dir))
2259 return;
2260 vcpu->arch.debugfs_dir = debugfs_create_dir(buf, kvm->arch.debugfs_dir);
2261 if (IS_ERR_OR_NULL(vcpu->arch.debugfs_dir))
2262 return;
2263 vcpu->arch.debugfs_timings =
2264 debugfs_create_file("timings", 0444, vcpu->arch.debugfs_dir,
2265 vcpu, &debugfs_timings_ops);
2266}
2267
2268#else /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2269static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2270{
2271}
2272#endif /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2273
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302274static struct kvm_vcpu *kvmppc_core_vcpu_create_hv(struct kvm *kvm,
2275 unsigned int id)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002276{
2277 struct kvm_vcpu *vcpu;
Paul Mackerras3c313522017-02-06 13:24:41 +11002278 int err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002279 int core;
2280 struct kvmppc_vcore *vcore;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002281
Paul Mackerras371fefd2011-06-29 00:23:08 +00002282 err = -ENOMEM;
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002283 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002284 if (!vcpu)
2285 goto out;
2286
2287 err = kvm_vcpu_init(vcpu, kvm, id);
2288 if (err)
2289 goto free_vcpu;
2290
2291 vcpu->arch.shared = &vcpu->arch.shregs;
Alexander Graf5deb8e72014-04-24 13:46:24 +02002292#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2293 /*
2294 * The shared struct is never shared on HV,
2295 * so we can always use host endianness
2296 */
2297#ifdef __BIG_ENDIAN__
2298 vcpu->arch.shared_big_endian = true;
2299#else
2300 vcpu->arch.shared_big_endian = false;
2301#endif
2302#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +00002303 vcpu->arch.mmcr[0] = MMCR0_FC;
2304 vcpu->arch.ctrl = CTRL_RUNLATCH;
2305 /* default to host PVR, since we can't spoof it */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302306 kvmppc_set_pvr_hv(vcpu, mfspr(SPRN_PVR));
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002307 spin_lock_init(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002308 spin_lock_init(&vcpu->arch.tbacct_lock);
2309 vcpu->arch.busy_preempt = TB_NIL;
Anton Blanchardd6829162014-01-08 21:25:30 +11002310 vcpu->arch.intr_msr = MSR_SF | MSR_ME;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002311
Paul Mackerras769377f2017-02-15 14:30:17 +11002312 /*
2313 * Set the default HFSCR for the guest from the host value.
2314 * This value is only used on POWER9.
Paul Mackerras57900692017-05-16 16:41:20 +10002315 * On POWER9, we want to virtualize the doorbell facility, so we
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002316 * don't set the HFSCR_MSGP bit, and that causes those instructions
2317 * to trap and then we emulate them.
Paul Mackerras769377f2017-02-15 14:30:17 +11002318 */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002319 vcpu->arch.hfscr = HFSCR_TAR | HFSCR_EBB | HFSCR_PM | HFSCR_BHRB |
2320 HFSCR_DSCR | HFSCR_VECVSX | HFSCR_FP;
2321 if (cpu_has_feature(CPU_FTR_HVMODE)) {
2322 vcpu->arch.hfscr &= mfspr(SPRN_HFSCR);
2323 if (cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
2324 vcpu->arch.hfscr |= HFSCR_TM;
2325 }
2326 if (cpu_has_feature(CPU_FTR_TM_COMP))
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002327 vcpu->arch.hfscr |= HFSCR_TM;
Paul Mackerras769377f2017-02-15 14:30:17 +11002328
Paul Mackerrasde56a942011-06-29 00:21:34 +00002329 kvmppc_mmu_book3s_hv_init(vcpu);
2330
Paul Mackerras8455d792012-10-15 01:17:42 +00002331 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002332
2333 init_waitqueue_head(&vcpu->arch.cpu_run);
2334
2335 mutex_lock(&kvm->lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002336 vcore = NULL;
2337 err = -EINVAL;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002338 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasb5c6f762018-07-26 15:38:41 +10002339 if (id >= (KVM_MAX_VCPUS * kvm->arch.emul_smt_mode)) {
2340 pr_devel("KVM: VCPU ID too high\n");
2341 core = KVM_MAX_VCORES;
2342 } else {
2343 BUG_ON(kvm->arch.smt_mode != 1);
2344 core = kvmppc_pack_vcpu_id(kvm, id);
2345 }
Sam Bobroff1e175d22018-07-25 16:12:02 +10002346 } else {
2347 core = id / kvm->arch.smt_mode;
2348 }
Paul Mackerras3c313522017-02-06 13:24:41 +11002349 if (core < KVM_MAX_VCORES) {
2350 vcore = kvm->arch.vcores[core];
Sam Bobroff1e175d22018-07-25 16:12:02 +10002351 if (vcore && cpu_has_feature(CPU_FTR_ARCH_300)) {
2352 pr_devel("KVM: collision on id %u", id);
2353 vcore = NULL;
2354 } else if (!vcore) {
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002355 /*
2356 * Take mmu_setup_lock for mutual exclusion
2357 * with kvmppc_update_lpcr().
2358 */
Paul Mackerras3c313522017-02-06 13:24:41 +11002359 err = -ENOMEM;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002360 vcore = kvmppc_vcore_create(kvm,
2361 id & ~(kvm->arch.smt_mode - 1));
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002362 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002363 kvm->arch.vcores[core] = vcore;
2364 kvm->arch.online_vcores++;
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002365 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002366 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002367 }
2368 mutex_unlock(&kvm->lock);
2369
2370 if (!vcore)
2371 goto free_vcpu;
2372
2373 spin_lock(&vcore->lock);
2374 ++vcore->num_threads;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002375 spin_unlock(&vcore->lock);
2376 vcpu->arch.vcore = vcore;
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11002377 vcpu->arch.ptid = vcpu->vcpu_id - vcore->first_vcpuid;
Paul Mackerrasec257162015-06-24 21:18:03 +10002378 vcpu->arch.thread_cpu = -1;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002379 vcpu->arch.prev_cpu = -1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002380
Alexander Grafaf8f38b2011-08-10 13:57:08 +02002381 vcpu->arch.cpu_type = KVM_CPU_3S_64;
2382 kvmppc_sanity_check(vcpu);
2383
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002384 debugfs_vcpu_init(vcpu, id);
2385
Paul Mackerrasde56a942011-06-29 00:21:34 +00002386 return vcpu;
2387
2388free_vcpu:
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002389 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002390out:
2391 return ERR_PTR(err);
2392}
2393
Paul Mackerras3c313522017-02-06 13:24:41 +11002394static int kvmhv_set_smt_mode(struct kvm *kvm, unsigned long smt_mode,
2395 unsigned long flags)
2396{
2397 int err;
Paul Mackerras57900692017-05-16 16:41:20 +10002398 int esmt = 0;
Paul Mackerras3c313522017-02-06 13:24:41 +11002399
2400 if (flags)
2401 return -EINVAL;
2402 if (smt_mode > MAX_SMT_THREADS || !is_power_of_2(smt_mode))
2403 return -EINVAL;
2404 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
2405 /*
2406 * On POWER8 (or POWER7), the threading mode is "strict",
2407 * so we pack smt_mode vcpus per vcore.
2408 */
2409 if (smt_mode > threads_per_subcore)
2410 return -EINVAL;
2411 } else {
2412 /*
2413 * On POWER9, the threading mode is "loose",
2414 * so each vcpu gets its own vcore.
2415 */
Paul Mackerras57900692017-05-16 16:41:20 +10002416 esmt = smt_mode;
Paul Mackerras3c313522017-02-06 13:24:41 +11002417 smt_mode = 1;
2418 }
2419 mutex_lock(&kvm->lock);
2420 err = -EBUSY;
2421 if (!kvm->arch.online_vcores) {
2422 kvm->arch.smt_mode = smt_mode;
Paul Mackerras57900692017-05-16 16:41:20 +10002423 kvm->arch.emul_smt_mode = esmt;
Paul Mackerras3c313522017-02-06 13:24:41 +11002424 err = 0;
2425 }
2426 mutex_unlock(&kvm->lock);
2427
2428 return err;
2429}
2430
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002431static void unpin_vpa(struct kvm *kvm, struct kvmppc_vpa *vpa)
2432{
2433 if (vpa->pinned_addr)
2434 kvmppc_unpin_guest_page(kvm, vpa->pinned_addr, vpa->gpa,
2435 vpa->dirty);
2436}
2437
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302438static void kvmppc_core_vcpu_free_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002439{
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002440 spin_lock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002441 unpin_vpa(vcpu->kvm, &vcpu->arch.dtl);
2442 unpin_vpa(vcpu->kvm, &vcpu->arch.slb_shadow);
2443 unpin_vpa(vcpu->kvm, &vcpu->arch.vpa);
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002444 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002445 kvm_vcpu_uninit(vcpu);
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002446 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002447}
2448
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302449static int kvmppc_core_check_requests_hv(struct kvm_vcpu *vcpu)
2450{
2451 /* Indicate we want to get back into the guest */
2452 return 1;
2453}
2454
Paul Mackerras19ccb762011-07-23 17:42:46 +10002455static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002456{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002457 unsigned long dec_nsec, now;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002458
Paul Mackerras19ccb762011-07-23 17:42:46 +10002459 now = get_tb();
2460 if (now > vcpu->arch.dec_expires) {
2461 /* decrementer has already gone negative */
2462 kvmppc_core_queue_dec(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -06002463 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002464 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002465 }
Paul Mackerrasc43befc2018-10-20 20:54:55 +11002466 dec_nsec = tb_to_ns(vcpu->arch.dec_expires - now);
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002467 hrtimer_start(&vcpu->arch.dec_timer, dec_nsec, HRTIMER_MODE_REL);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002468 vcpu->arch.timer_running = 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002469}
2470
Paul Mackerras8b24e692017-06-26 15:45:51 +10002471extern int __kvmppc_vcore_entry(void);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002472
2473static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
2474 struct kvm_vcpu *vcpu)
2475{
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002476 u64 now;
2477
Paul Mackerras371fefd2011-06-29 00:23:08 +00002478 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
2479 return;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002480 spin_lock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002481 now = mftb();
2482 vcpu->arch.busy_stolen += vcore_stolen_time(vc, now) -
2483 vcpu->arch.stolen_logged;
2484 vcpu->arch.busy_preempt = now;
2485 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002486 spin_unlock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002487 --vc->n_runnable;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002488 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], NULL);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002489}
2490
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002491static int kvmppc_grab_hwthread(int cpu)
2492{
2493 struct paca_struct *tpaca;
Paul Mackerrasb754c732014-09-02 16:14:42 +10002494 long timeout = 10000;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002495
Nicholas Piggind2e60072018-02-14 01:08:12 +10002496 tpaca = paca_ptrs[cpu];
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002497
2498 /* Ensure the thread won't go into the kernel if it wakes */
Paul Mackerras7b444c62012-10-15 01:16:14 +00002499 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002500 tpaca->kvm_hstate.kvm_vcore = NULL;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002501 tpaca->kvm_hstate.napping = 0;
2502 smp_wmb();
2503 tpaca->kvm_hstate.hwthread_req = 1;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002504
2505 /*
2506 * If the thread is already executing in the kernel (e.g. handling
2507 * a stray interrupt), wait for it to get back to nap mode.
2508 * The smp_mb() is to ensure that our setting of hwthread_req
2509 * is visible before we look at hwthread_state, so if this
2510 * races with the code at system_reset_pSeries and the thread
2511 * misses our setting of hwthread_req, we are sure to see its
2512 * setting of hwthread_state, and vice versa.
2513 */
2514 smp_mb();
2515 while (tpaca->kvm_hstate.hwthread_state == KVM_HWTHREAD_IN_KERNEL) {
2516 if (--timeout <= 0) {
2517 pr_err("KVM: couldn't grab cpu %d\n", cpu);
2518 return -EBUSY;
2519 }
2520 udelay(1);
2521 }
2522 return 0;
2523}
2524
2525static void kvmppc_release_hwthread(int cpu)
2526{
2527 struct paca_struct *tpaca;
2528
Nicholas Piggind2e60072018-02-14 01:08:12 +10002529 tpaca = paca_ptrs[cpu];
Paul Mackerras31a4d442017-10-19 15:14:20 +11002530 tpaca->kvm_hstate.hwthread_req = 0;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002531 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002532 tpaca->kvm_hstate.kvm_vcore = NULL;
2533 tpaca->kvm_hstate.kvm_split_mode = NULL;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002534}
2535
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002536static void radix_flush_cpu(struct kvm *kvm, int cpu, struct kvm_vcpu *vcpu)
2537{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002538 struct kvm_nested_guest *nested = vcpu->arch.nested;
2539 cpumask_t *cpu_in_guest;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002540 int i;
2541
2542 cpu = cpu_first_thread_sibling(cpu);
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002543 if (nested) {
2544 cpumask_set_cpu(cpu, &nested->need_tlb_flush);
2545 cpu_in_guest = &nested->cpu_in_guest;
2546 } else {
2547 cpumask_set_cpu(cpu, &kvm->arch.need_tlb_flush);
2548 cpu_in_guest = &kvm->arch.cpu_in_guest;
2549 }
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002550 /*
2551 * Make sure setting of bit in need_tlb_flush precedes
2552 * testing of cpu_in_guest bits. The matching barrier on
2553 * the other side is the first smp_mb() in kvmppc_run_core().
2554 */
2555 smp_mb();
2556 for (i = 0; i < threads_per_core; ++i)
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002557 if (cpumask_test_cpu(cpu + i, cpu_in_guest))
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002558 smp_call_function_single(cpu + i, do_nothing, NULL, 1);
2559}
2560
Paul Mackerras8b24e692017-06-26 15:45:51 +10002561static void kvmppc_prepare_radix_vcpu(struct kvm_vcpu *vcpu, int pcpu)
2562{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002563 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002564 struct kvm *kvm = vcpu->kvm;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002565 int prev_cpu;
2566
2567 if (!cpu_has_feature(CPU_FTR_HVMODE))
2568 return;
2569
2570 if (nested)
2571 prev_cpu = nested->prev_cpu[vcpu->arch.nested_vcpu_id];
2572 else
2573 prev_cpu = vcpu->arch.prev_cpu;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002574
2575 /*
2576 * With radix, the guest can do TLB invalidations itself,
2577 * and it could choose to use the local form (tlbiel) if
2578 * it is invalidating a translation that has only ever been
2579 * used on one vcpu. However, that doesn't mean it has
2580 * only ever been used on one physical cpu, since vcpus
2581 * can move around between pcpus. To cope with this, when
2582 * a vcpu moves from one pcpu to another, we need to tell
2583 * any vcpus running on the same core as this vcpu previously
2584 * ran to flush the TLB. The TLB is shared between threads,
2585 * so we use a single bit in .need_tlb_flush for all 4 threads.
2586 */
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002587 if (prev_cpu != pcpu) {
2588 if (prev_cpu >= 0 &&
2589 cpu_first_thread_sibling(prev_cpu) !=
Paul Mackerras8b24e692017-06-26 15:45:51 +10002590 cpu_first_thread_sibling(pcpu))
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002591 radix_flush_cpu(kvm, prev_cpu, vcpu);
2592 if (nested)
2593 nested->prev_cpu[vcpu->arch.nested_vcpu_id] = pcpu;
2594 else
2595 vcpu->arch.prev_cpu = pcpu;
2596 }
2597}
2598
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002599static void kvmppc_start_thread(struct kvm_vcpu *vcpu, struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002600{
2601 int cpu;
2602 struct paca_struct *tpaca;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002603 struct kvm *kvm = vc->kvm;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002604
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002605 cpu = vc->pcpu;
2606 if (vcpu) {
2607 if (vcpu->arch.timer_running) {
2608 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2609 vcpu->arch.timer_running = 0;
2610 }
2611 cpu += vcpu->arch.ptid;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002612 vcpu->cpu = vc->pcpu;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002613 vcpu->arch.thread_cpu = cpu;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002614 cpumask_set_cpu(cpu, &kvm->arch.cpu_in_guest);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002615 }
Nicholas Piggind2e60072018-02-14 01:08:12 +10002616 tpaca = paca_ptrs[cpu];
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002617 tpaca->kvm_hstate.kvm_vcpu = vcpu;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002618 tpaca->kvm_hstate.ptid = cpu - vc->pcpu;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002619 tpaca->kvm_hstate.fake_suspend = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002620 /* Order stores to hstate.kvm_vcpu etc. before store to kvm_vcore */
Paul Mackerras19ccb762011-07-23 17:42:46 +10002621 smp_wmb();
Paul Mackerras898b25b2017-06-22 15:08:42 +10002622 tpaca->kvm_hstate.kvm_vcore = vc;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002623 if (cpu != smp_processor_id())
Paul Mackerras66feed62015-03-28 14:21:12 +11002624 kvmppc_ipi_thread(cpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002625}
2626
Paul Mackerras516f7892017-10-16 16:11:57 +11002627static void kvmppc_wait_for_nap(int n_threads)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002628{
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002629 int cpu = smp_processor_id();
2630 int i, loops;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002631
Paul Mackerras45c940b2016-11-18 17:43:30 +11002632 if (n_threads <= 1)
2633 return;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002634 for (loops = 0; loops < 1000000; ++loops) {
2635 /*
2636 * Check if all threads are finished.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002637 * We set the vcore pointer when starting a thread
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002638 * and the thread clears it when finished, so we look
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002639 * for any threads that still have a non-NULL vcore ptr.
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002640 */
Paul Mackerras45c940b2016-11-18 17:43:30 +11002641 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002642 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002643 break;
Paul Mackerras45c940b2016-11-18 17:43:30 +11002644 if (i == n_threads) {
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002645 HMT_medium();
2646 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002647 }
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002648 HMT_low();
Paul Mackerras371fefd2011-06-29 00:23:08 +00002649 }
2650 HMT_medium();
Paul Mackerras45c940b2016-11-18 17:43:30 +11002651 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002652 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002653 pr_err("KVM: CPU %d seems to be stuck\n", cpu + i);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002654}
2655
2656/*
2657 * Check that we are on thread 0 and that any other threads in
Paul Mackerras7b444c62012-10-15 01:16:14 +00002658 * this core are off-line. Then grab the threads so they can't
2659 * enter the kernel.
Paul Mackerras371fefd2011-06-29 00:23:08 +00002660 */
2661static int on_primary_thread(void)
2662{
2663 int cpu = smp_processor_id();
Michael Ellerman3102f782014-05-23 18:15:29 +10002664 int thr;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002665
Michael Ellerman3102f782014-05-23 18:15:29 +10002666 /* Are we on a primary subcore? */
2667 if (cpu_thread_in_subcore(cpu))
Paul Mackerras371fefd2011-06-29 00:23:08 +00002668 return 0;
Michael Ellerman3102f782014-05-23 18:15:29 +10002669
2670 thr = 0;
2671 while (++thr < threads_per_subcore)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002672 if (cpu_online(cpu + thr))
2673 return 0;
Paul Mackerras7b444c62012-10-15 01:16:14 +00002674
2675 /* Grab all hw threads so they can't go into the kernel */
Michael Ellerman3102f782014-05-23 18:15:29 +10002676 for (thr = 1; thr < threads_per_subcore; ++thr) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00002677 if (kvmppc_grab_hwthread(cpu + thr)) {
2678 /* Couldn't grab one; let the others go */
2679 do {
2680 kvmppc_release_hwthread(cpu + thr);
2681 } while (--thr > 0);
2682 return 0;
2683 }
2684 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002685 return 1;
2686}
2687
Paul Mackerrasec257162015-06-24 21:18:03 +10002688/*
2689 * A list of virtual cores for each physical CPU.
2690 * These are vcores that could run but their runner VCPU tasks are
2691 * (or may be) preempted.
2692 */
2693struct preempted_vcore_list {
2694 struct list_head list;
2695 spinlock_t lock;
2696};
2697
2698static DEFINE_PER_CPU(struct preempted_vcore_list, preempted_vcores);
2699
2700static void init_vcore_lists(void)
2701{
2702 int cpu;
2703
2704 for_each_possible_cpu(cpu) {
2705 struct preempted_vcore_list *lp = &per_cpu(preempted_vcores, cpu);
2706 spin_lock_init(&lp->lock);
2707 INIT_LIST_HEAD(&lp->list);
2708 }
2709}
2710
2711static void kvmppc_vcore_preempt(struct kvmppc_vcore *vc)
2712{
2713 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2714
2715 vc->vcore_state = VCORE_PREEMPT;
2716 vc->pcpu = smp_processor_id();
Paul Mackerras516f7892017-10-16 16:11:57 +11002717 if (vc->num_threads < threads_per_vcore(vc->kvm)) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002718 spin_lock(&lp->lock);
2719 list_add_tail(&vc->preempt_list, &lp->list);
2720 spin_unlock(&lp->lock);
2721 }
2722
2723 /* Start accumulating stolen time */
2724 kvmppc_core_start_stolen(vc);
2725}
2726
2727static void kvmppc_vcore_end_preempt(struct kvmppc_vcore *vc)
2728{
Paul Mackerras402813f2015-07-16 17:11:13 +10002729 struct preempted_vcore_list *lp;
Paul Mackerrasec257162015-06-24 21:18:03 +10002730
2731 kvmppc_core_end_stolen(vc);
2732 if (!list_empty(&vc->preempt_list)) {
Paul Mackerras402813f2015-07-16 17:11:13 +10002733 lp = &per_cpu(preempted_vcores, vc->pcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002734 spin_lock(&lp->lock);
2735 list_del_init(&vc->preempt_list);
2736 spin_unlock(&lp->lock);
2737 }
2738 vc->vcore_state = VCORE_INACTIVE;
2739}
2740
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002741/*
2742 * This stores information about the virtual cores currently
2743 * assigned to a physical core.
2744 */
Paul Mackerrasec257162015-06-24 21:18:03 +10002745struct core_info {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002746 int n_subcores;
2747 int max_subcore_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002748 int total_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002749 int subcore_threads[MAX_SUBCORES];
Paul Mackerras898b25b2017-06-22 15:08:42 +10002750 struct kvmppc_vcore *vc[MAX_SUBCORES];
Paul Mackerrasec257162015-06-24 21:18:03 +10002751};
2752
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002753/*
2754 * This mapping means subcores 0 and 1 can use threads 0-3 and 4-7
Paul Mackerras516f7892017-10-16 16:11:57 +11002755 * respectively in 2-way micro-threading (split-core) mode on POWER8.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002756 */
2757static int subcore_thread_map[MAX_SUBCORES] = { 0, 4, 2, 6 };
2758
Paul Mackerrasec257162015-06-24 21:18:03 +10002759static void init_core_info(struct core_info *cip, struct kvmppc_vcore *vc)
2760{
2761 memset(cip, 0, sizeof(*cip));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002762 cip->n_subcores = 1;
2763 cip->max_subcore_threads = vc->num_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002764 cip->total_threads = vc->num_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002765 cip->subcore_threads[0] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002766 cip->vc[0] = vc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002767}
2768
2769static bool subcore_config_ok(int n_subcores, int n_threads)
2770{
Paul Mackerras516f7892017-10-16 16:11:57 +11002771 /*
Paul Mackerras00608e12018-01-11 16:54:26 +11002772 * POWER9 "SMT4" cores are permanently in what is effectively a 4-way
2773 * split-core mode, with one thread per subcore.
Paul Mackerras516f7892017-10-16 16:11:57 +11002774 */
2775 if (cpu_has_feature(CPU_FTR_ARCH_300))
2776 return n_subcores <= 4 && n_threads == 1;
2777
2778 /* On POWER8, can only dynamically split if unsplit to begin with */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002779 if (n_subcores > 1 && threads_per_subcore < MAX_SMT_THREADS)
2780 return false;
2781 if (n_subcores > MAX_SUBCORES)
2782 return false;
2783 if (n_subcores > 1) {
2784 if (!(dynamic_mt_modes & 2))
2785 n_subcores = 4;
2786 if (n_subcores > 2 && !(dynamic_mt_modes & 4))
2787 return false;
2788 }
2789
2790 return n_subcores * roundup_pow_of_two(n_threads) <= MAX_SMT_THREADS;
Paul Mackerrasec257162015-06-24 21:18:03 +10002791}
2792
Paul Mackerras898b25b2017-06-22 15:08:42 +10002793static void init_vcore_to_run(struct kvmppc_vcore *vc)
Paul Mackerrasec257162015-06-24 21:18:03 +10002794{
Paul Mackerrasec257162015-06-24 21:18:03 +10002795 vc->entry_exit_map = 0;
2796 vc->in_guest = 0;
2797 vc->napping_threads = 0;
2798 vc->conferring_threads = 0;
Paul Mackerras57b8daa2018-04-20 22:51:11 +10002799 vc->tb_offset_applied = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002800}
2801
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002802static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip)
2803{
2804 int n_threads = vc->num_threads;
2805 int sub;
2806
2807 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
2808 return false;
2809
Paul Mackerrasaa227862018-09-12 10:42:12 +10002810 /* In one_vm_per_core mode, require all vcores to be from the same vm */
2811 if (one_vm_per_core && vc->kvm != cip->vc[0]->kvm)
2812 return false;
2813
Paul Mackerras00608e12018-01-11 16:54:26 +11002814 /* Some POWER9 chips require all threads to be in the same MMU mode */
2815 if (no_mixing_hpt_and_radix &&
Paul Mackerrasc0101502017-10-19 14:11:23 +11002816 kvm_is_radix(vc->kvm) != kvm_is_radix(cip->vc[0]->kvm))
2817 return false;
2818
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002819 if (n_threads < cip->max_subcore_threads)
2820 n_threads = cip->max_subcore_threads;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002821 if (!subcore_config_ok(cip->n_subcores + 1, n_threads))
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002822 return false;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002823 cip->max_subcore_threads = n_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002824
2825 sub = cip->n_subcores;
2826 ++cip->n_subcores;
2827 cip->total_threads += vc->num_threads;
2828 cip->subcore_threads[sub] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002829 cip->vc[sub] = vc;
2830 init_vcore_to_run(vc);
2831 list_del_init(&vc->preempt_list);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002832
2833 return true;
2834}
2835
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002836/*
2837 * Work out whether it is possible to piggyback the execution of
2838 * vcore *pvc onto the execution of the other vcores described in *cip.
2839 */
2840static bool can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip,
2841 int target_threads)
2842{
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002843 if (cip->total_threads + pvc->num_threads > target_threads)
2844 return false;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002845
Paul Mackerrasb0090312016-09-15 16:27:41 +10002846 return can_dynamic_split(pvc, cip);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002847}
2848
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002849static void prepare_threads(struct kvmppc_vcore *vc)
2850{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002851 int i;
2852 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002853
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002854 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002855 if (signal_pending(vcpu->arch.run_task))
2856 vcpu->arch.ret = -EINTR;
2857 else if (vcpu->arch.vpa.update_pending ||
2858 vcpu->arch.slb_shadow.update_pending ||
2859 vcpu->arch.dtl.update_pending)
2860 vcpu->arch.ret = RESUME_GUEST;
2861 else
2862 continue;
2863 kvmppc_remove_runnable(vc, vcpu);
2864 wake_up(&vcpu->arch.cpu_run);
2865 }
2866}
2867
Paul Mackerrasec257162015-06-24 21:18:03 +10002868static void collect_piggybacks(struct core_info *cip, int target_threads)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002869{
Paul Mackerrasec257162015-06-24 21:18:03 +10002870 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2871 struct kvmppc_vcore *pvc, *vcnext;
2872
2873 spin_lock(&lp->lock);
2874 list_for_each_entry_safe(pvc, vcnext, &lp->list, preempt_list) {
2875 if (!spin_trylock(&pvc->lock))
2876 continue;
2877 prepare_threads(pvc);
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10002878 if (!pvc->n_runnable || !pvc->kvm->arch.mmu_ready) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002879 list_del_init(&pvc->preempt_list);
2880 if (pvc->runner == NULL) {
2881 pvc->vcore_state = VCORE_INACTIVE;
2882 kvmppc_core_end_stolen(pvc);
2883 }
2884 spin_unlock(&pvc->lock);
2885 continue;
2886 }
2887 if (!can_piggyback(pvc, cip, target_threads)) {
2888 spin_unlock(&pvc->lock);
2889 continue;
2890 }
2891 kvmppc_core_end_stolen(pvc);
2892 pvc->vcore_state = VCORE_PIGGYBACK;
2893 if (cip->total_threads >= target_threads)
2894 break;
2895 }
2896 spin_unlock(&lp->lock);
2897}
2898
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10002899static bool recheck_signals_and_mmu(struct core_info *cip)
Paul Mackerras8b24e692017-06-26 15:45:51 +10002900{
2901 int sub, i;
2902 struct kvm_vcpu *vcpu;
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10002903 struct kvmppc_vcore *vc;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002904
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10002905 for (sub = 0; sub < cip->n_subcores; ++sub) {
2906 vc = cip->vc[sub];
2907 if (!vc->kvm->arch.mmu_ready)
2908 return true;
2909 for_each_runnable_thread(i, vcpu, vc)
Paul Mackerras8b24e692017-06-26 15:45:51 +10002910 if (signal_pending(vcpu->arch.run_task))
2911 return true;
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10002912 }
Paul Mackerras8b24e692017-06-26 15:45:51 +10002913 return false;
2914}
2915
Paul Mackerrasec257162015-06-24 21:18:03 +10002916static void post_guest_process(struct kvmppc_vcore *vc, bool is_master)
2917{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002918 int still_running = 0, i;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002919 u64 now;
2920 long ret;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002921 struct kvm_vcpu *vcpu;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002922
Paul Mackerrasec257162015-06-24 21:18:03 +10002923 spin_lock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002924 now = get_tb();
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002925 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras53655dd2018-10-08 16:30:54 +11002926 /*
2927 * It's safe to unlock the vcore in the loop here, because
2928 * for_each_runnable_thread() is safe against removal of
2929 * the vcpu, and the vcore state is VCORE_EXITING here,
2930 * so any vcpus becoming runnable will have their arch.trap
2931 * set to zero and can't actually run in the guest.
2932 */
2933 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002934 /* cancel pending dec exception if dec is positive */
2935 if (now < vcpu->arch.dec_expires &&
2936 kvmppc_core_pending_dec(vcpu))
2937 kvmppc_core_dequeue_dec(vcpu);
2938
2939 trace_kvm_guest_exit(vcpu);
2940
2941 ret = RESUME_GUEST;
2942 if (vcpu->arch.trap)
2943 ret = kvmppc_handle_exit_hv(vcpu->arch.kvm_run, vcpu,
2944 vcpu->arch.run_task);
2945
2946 vcpu->arch.ret = ret;
2947 vcpu->arch.trap = 0;
2948
Paul Mackerras53655dd2018-10-08 16:30:54 +11002949 spin_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10002950 if (is_kvmppc_resume_guest(vcpu->arch.ret)) {
2951 if (vcpu->arch.pending_exceptions)
2952 kvmppc_core_prepare_to_enter(vcpu);
2953 if (vcpu->arch.ceded)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002954 kvmppc_set_timer(vcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002955 else
2956 ++still_running;
2957 } else {
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002958 kvmppc_remove_runnable(vc, vcpu);
2959 wake_up(&vcpu->arch.cpu_run);
2960 }
2961 }
Paul Mackerrasec257162015-06-24 21:18:03 +10002962 if (!is_master) {
Paul Mackerras563a1e92015-07-16 17:11:14 +10002963 if (still_running > 0) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002964 kvmppc_vcore_preempt(vc);
Paul Mackerras563a1e92015-07-16 17:11:14 +10002965 } else if (vc->runner) {
2966 vc->vcore_state = VCORE_PREEMPT;
2967 kvmppc_core_start_stolen(vc);
2968 } else {
2969 vc->vcore_state = VCORE_INACTIVE;
2970 }
Paul Mackerrasec257162015-06-24 21:18:03 +10002971 if (vc->n_runnable > 0 && vc->runner == NULL) {
2972 /* make sure there's a candidate runner awake */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002973 i = -1;
2974 vcpu = next_runnable_thread(vc, &i);
Paul Mackerrasec257162015-06-24 21:18:03 +10002975 wake_up(&vcpu->arch.cpu_run);
2976 }
2977 }
2978 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002979}
2980
Paul Mackerras371fefd2011-06-29 00:23:08 +00002981/*
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002982 * Clear core from the list of active host cores as we are about to
2983 * enter the guest. Only do this if it is the primary thread of the
2984 * core (not if a subcore) that is entering the guest.
2985 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002986static inline int kvmppc_clear_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002987{
2988 int core;
2989
2990 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002991 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002992 /*
2993 * Memory barrier can be omitted here as we will do a smp_wmb()
2994 * later in kvmppc_start_thread and we need ensure that state is
2995 * visible to other CPUs only after we enter guest.
2996 */
2997 core = cpu >> threads_shift;
2998 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 0;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002999 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003000}
3001
3002/*
3003 * Advertise this core as an active host core since we exited the guest
3004 * Only need to do this if it is the primary thread of the core that is
3005 * exiting.
3006 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003007static inline int kvmppc_set_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003008{
3009 int core;
3010
3011 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003012 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003013
3014 /*
3015 * Memory barrier can be omitted here because we do a spin_unlock
3016 * immediately after this which provides the memory barrier.
3017 */
3018 core = cpu >> threads_shift;
3019 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 1;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003020 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003021}
3022
Paul Mackerras8b24e692017-06-26 15:45:51 +10003023static void set_irq_happened(int trap)
3024{
3025 switch (trap) {
3026 case BOOK3S_INTERRUPT_EXTERNAL:
3027 local_paca->irq_happened |= PACA_IRQ_EE;
3028 break;
3029 case BOOK3S_INTERRUPT_H_DOORBELL:
3030 local_paca->irq_happened |= PACA_IRQ_DBELL;
3031 break;
3032 case BOOK3S_INTERRUPT_HMI:
3033 local_paca->irq_happened |= PACA_IRQ_HMI;
3034 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11003035 case BOOK3S_INTERRUPT_SYSTEM_RESET:
3036 replay_system_reset();
3037 break;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003038 }
3039}
3040
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003041/*
Paul Mackerras371fefd2011-06-29 00:23:08 +00003042 * Run a set of guest threads on a physical core.
3043 * Called with vc->lock held.
3044 */
Paul Mackerras66feed62015-03-28 14:21:12 +11003045static noinline void kvmppc_run_core(struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003046{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003047 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003048 int i;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003049 int srcu_idx;
Paul Mackerrasec257162015-06-24 21:18:03 +10003050 struct core_info core_info;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003051 struct kvmppc_vcore *pvc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003052 struct kvm_split_mode split_info, *sip;
3053 int split, subcore_size, active;
3054 int sub;
3055 bool thr0_done;
3056 unsigned long cmd_bit, stat_bit;
Paul Mackerrasec257162015-06-24 21:18:03 +10003057 int pcpu, thr;
3058 int target_threads;
Paul Mackerras45c940b2016-11-18 17:43:30 +11003059 int controlled_threads;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003060 int trap;
Paul Mackerras516f7892017-10-16 16:11:57 +11003061 bool is_power8;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003062 bool hpt_on_radix;
Paul Mackerras081f3232012-06-01 20:20:24 +10003063
3064 /*
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003065 * Remove from the list any threads that have a signal pending
3066 * or need a VPA update done
3067 */
3068 prepare_threads(vc);
3069
3070 /* if the runner is no longer runnable, let the caller pick a new one */
3071 if (vc->runner->arch.state != KVMPPC_VCPU_RUNNABLE)
3072 return;
3073
3074 /*
3075 * Initialize *vc.
Paul Mackerras081f3232012-06-01 20:20:24 +10003076 */
Paul Mackerras898b25b2017-06-22 15:08:42 +10003077 init_vcore_to_run(vc);
Paul Mackerras2711e242014-12-04 16:43:28 +11003078 vc->preempt_tb = TB_NIL;
Paul Mackerras081f3232012-06-01 20:20:24 +10003079
3080 /*
Paul Mackerras45c940b2016-11-18 17:43:30 +11003081 * Number of threads that we will be controlling: the same as
3082 * the number of threads per subcore, except on POWER9,
3083 * where it's 1 because the threads are (mostly) independent.
3084 */
Paul Mackerras516f7892017-10-16 16:11:57 +11003085 controlled_threads = threads_per_vcore(vc->kvm);
Paul Mackerras45c940b2016-11-18 17:43:30 +11003086
3087 /*
Michael Ellerman3102f782014-05-23 18:15:29 +10003088 * Make sure we are running on primary threads, and that secondary
3089 * threads are offline. Also check if the number of threads in this
3090 * guest are greater than the current system threads per guest.
Paul Mackerrasc0101502017-10-19 14:11:23 +11003091 * On POWER9, we need to be not in independent-threads mode if
Paul Mackerras00608e12018-01-11 16:54:26 +11003092 * this is a HPT guest on a radix host machine where the
3093 * CPU threads may not be in different MMU modes.
Paul Mackerras7b444c62012-10-15 01:16:14 +00003094 */
Paul Mackerras00608e12018-01-11 16:54:26 +11003095 hpt_on_radix = no_mixing_hpt_and_radix && radix_enabled() &&
3096 !kvm_is_radix(vc->kvm);
Paul Mackerrasc0101502017-10-19 14:11:23 +11003097 if (((controlled_threads > 1) &&
3098 ((vc->num_threads > threads_per_subcore) || !on_primary_thread())) ||
3099 (hpt_on_radix && vc->kvm->arch.threads_indep)) {
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003100 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00003101 vcpu->arch.ret = -EBUSY;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003102 kvmppc_remove_runnable(vc, vcpu);
3103 wake_up(&vcpu->arch.cpu_run);
3104 }
Paul Mackerras7b444c62012-10-15 01:16:14 +00003105 goto out;
3106 }
3107
Paul Mackerrasec257162015-06-24 21:18:03 +10003108 /*
3109 * See if we could run any other vcores on the physical core
3110 * along with this one.
3111 */
3112 init_core_info(&core_info, vc);
3113 pcpu = smp_processor_id();
Paul Mackerras45c940b2016-11-18 17:43:30 +11003114 target_threads = controlled_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10003115 if (target_smt_mode && target_smt_mode < target_threads)
3116 target_threads = target_smt_mode;
3117 if (vc->num_threads < target_threads)
3118 collect_piggybacks(&core_info, target_threads);
Michael Ellerman3102f782014-05-23 18:15:29 +10003119
Paul Mackerras8b24e692017-06-26 15:45:51 +10003120 /*
3121 * On radix, arrange for TLB flushing if necessary.
3122 * This has to be done before disabling interrupts since
3123 * it uses smp_call_function().
3124 */
3125 pcpu = smp_processor_id();
3126 if (kvm_is_radix(vc->kvm)) {
3127 for (sub = 0; sub < core_info.n_subcores; ++sub)
3128 for_each_runnable_thread(i, vcpu, core_info.vc[sub])
3129 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
3130 }
3131
3132 /*
3133 * Hard-disable interrupts, and check resched flag and signals.
3134 * If we need to reschedule or deliver a signal, clean up
3135 * and return without going into the guest(s).
Paul Mackerras072df812017-11-09 14:30:24 +11003136 * If the mmu_ready flag has been cleared, don't go into the
Paul Mackerras38c53af2017-11-08 14:44:04 +11003137 * guest because that means a HPT resize operation is in progress.
Paul Mackerras8b24e692017-06-26 15:45:51 +10003138 */
3139 local_irq_disable();
3140 hard_irq_disable();
3141 if (lazy_irq_pending() || need_resched() ||
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003142 recheck_signals_and_mmu(&core_info)) {
Paul Mackerras8b24e692017-06-26 15:45:51 +10003143 local_irq_enable();
3144 vc->vcore_state = VCORE_INACTIVE;
3145 /* Unlock all except the primary vcore */
3146 for (sub = 1; sub < core_info.n_subcores; ++sub) {
3147 pvc = core_info.vc[sub];
3148 /* Put back on to the preempted vcores list */
3149 kvmppc_vcore_preempt(pvc);
3150 spin_unlock(&pvc->lock);
3151 }
3152 for (i = 0; i < controlled_threads; ++i)
3153 kvmppc_release_hwthread(pcpu + i);
3154 return;
3155 }
3156
3157 kvmppc_clear_host_core(pcpu);
3158
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003159 /* Decide on micro-threading (split-core) mode */
3160 subcore_size = threads_per_subcore;
3161 cmd_bit = stat_bit = 0;
3162 split = core_info.n_subcores;
3163 sip = NULL;
Paul Mackerras516f7892017-10-16 16:11:57 +11003164 is_power8 = cpu_has_feature(CPU_FTR_ARCH_207S)
3165 && !cpu_has_feature(CPU_FTR_ARCH_300);
3166
Paul Mackerrasc0101502017-10-19 14:11:23 +11003167 if (split > 1 || hpt_on_radix) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003168 sip = &split_info;
3169 memset(&split_info, 0, sizeof(split_info));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003170 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003171 split_info.vc[sub] = core_info.vc[sub];
Paul Mackerras516f7892017-10-16 16:11:57 +11003172
3173 if (is_power8) {
3174 if (split == 2 && (dynamic_mt_modes & 2)) {
3175 cmd_bit = HID0_POWER8_1TO2LPAR;
3176 stat_bit = HID0_POWER8_2LPARMODE;
3177 } else {
3178 split = 4;
3179 cmd_bit = HID0_POWER8_1TO4LPAR;
3180 stat_bit = HID0_POWER8_4LPARMODE;
3181 }
3182 subcore_size = MAX_SMT_THREADS / split;
3183 split_info.rpr = mfspr(SPRN_RPR);
3184 split_info.pmmar = mfspr(SPRN_PMMAR);
3185 split_info.ldbar = mfspr(SPRN_LDBAR);
3186 split_info.subcore_size = subcore_size;
3187 } else {
3188 split_info.subcore_size = 1;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003189 if (hpt_on_radix) {
3190 /* Use the split_info for LPCR/LPIDR changes */
3191 split_info.lpcr_req = vc->lpcr;
3192 split_info.lpidr_req = vc->kvm->arch.lpid;
3193 split_info.host_lpcr = vc->kvm->arch.host_lpcr;
3194 split_info.do_set = 1;
3195 }
Paul Mackerras516f7892017-10-16 16:11:57 +11003196 }
3197
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003198 /* order writes to split_info before kvm_split_mode pointer */
3199 smp_wmb();
3200 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003201
Paul Mackerrasc0101502017-10-19 14:11:23 +11003202 for (thr = 0; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003203 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3204
3205 paca->kvm_hstate.tid = thr;
3206 paca->kvm_hstate.napping = 0;
3207 paca->kvm_hstate.kvm_split_mode = sip;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003208 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003209
Paul Mackerras516f7892017-10-16 16:11:57 +11003210 /* Initiate micro-threading (split-core) on POWER8 if required */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003211 if (cmd_bit) {
3212 unsigned long hid0 = mfspr(SPRN_HID0);
3213
3214 hid0 |= cmd_bit | HID0_POWER8_DYNLPARDIS;
3215 mb();
3216 mtspr(SPRN_HID0, hid0);
3217 isync();
3218 for (;;) {
3219 hid0 = mfspr(SPRN_HID0);
3220 if (hid0 & stat_bit)
3221 break;
3222 cpu_relax();
3223 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +00003224 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003225
Paul Mackerras7aa15842018-04-20 19:53:22 +10003226 /*
3227 * On POWER8, set RWMR register.
3228 * Since it only affects PURR and SPURR, it doesn't affect
3229 * the host, so we don't save/restore the host value.
3230 */
3231 if (is_power8) {
3232 unsigned long rwmr_val = RWMR_RPA_P8_8THREAD;
3233 int n_online = atomic_read(&vc->online_count);
3234
3235 /*
3236 * Use the 8-thread value if we're doing split-core
3237 * or if the vcore's online count looks bogus.
3238 */
3239 if (split == 1 && threads_per_subcore == MAX_SMT_THREADS &&
3240 n_online >= 1 && n_online <= MAX_SMT_THREADS)
3241 rwmr_val = p8_rwmr_values[n_online];
3242 mtspr(SPRN_RWMR, rwmr_val);
3243 }
3244
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003245 /* Start all the threads */
3246 active = 0;
3247 for (sub = 0; sub < core_info.n_subcores; ++sub) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003248 thr = is_power8 ? subcore_thread_map[sub] : sub;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003249 thr0_done = false;
3250 active |= 1 << thr;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003251 pvc = core_info.vc[sub];
3252 pvc->pcpu = pcpu + thr;
3253 for_each_runnable_thread(i, vcpu, pvc) {
3254 kvmppc_start_thread(vcpu, pvc);
3255 kvmppc_create_dtl_entry(vcpu, pvc);
3256 trace_kvm_guest_enter(vcpu);
3257 if (!vcpu->arch.ptid)
3258 thr0_done = true;
3259 active |= 1 << (thr + vcpu->arch.ptid);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003260 }
Paul Mackerras898b25b2017-06-22 15:08:42 +10003261 /*
3262 * We need to start the first thread of each subcore
3263 * even if it doesn't have a vcpu.
3264 */
3265 if (!thr0_done)
3266 kvmppc_start_thread(NULL, pvc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003267 }
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303268
3269 /*
3270 * Ensure that split_info.do_nap is set after setting
3271 * the vcore pointer in the PACA of the secondaries.
3272 */
3273 smp_mb();
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303274
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003275 /*
3276 * When doing micro-threading, poke the inactive threads as well.
3277 * This gets them to the nap instruction after kvm_do_nap,
3278 * which reduces the time taken to unsplit later.
Paul Mackerrasc0101502017-10-19 14:11:23 +11003279 * For POWER9 HPT guest on radix host, we need all the secondary
3280 * threads woken up so they can do the LPCR/LPIDR change.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003281 */
Paul Mackerrasc0101502017-10-19 14:11:23 +11003282 if (cmd_bit || hpt_on_radix) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003283 split_info.do_nap = 1; /* ask secondaries to nap when done */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003284 for (thr = 1; thr < threads_per_subcore; ++thr)
3285 if (!(active & (1 << thr)))
3286 kvmppc_ipi_thread(pcpu + thr);
Paul Mackerras516f7892017-10-16 16:11:57 +11003287 }
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003288
Paul Mackerras2f12f032012-10-15 01:17:17 +00003289 vc->vcore_state = VCORE_RUNNING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003290 preempt_disable();
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003291
3292 trace_kvmppc_run_core(vc, 0);
3293
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003294 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003295 spin_unlock(&core_info.vc[sub]->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003296
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003297 guest_enter_irqoff();
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003298
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003299 srcu_idx = srcu_read_lock(&vc->kvm->srcu);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003300
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303301 this_cpu_disable_ftrace();
3302
Alexey Kardashevskiy3309bec2019-03-29 16:40:13 +11003303 /*
3304 * Interrupts will be enabled once we get into the guest,
3305 * so tell lockdep that we're about to enable interrupts.
3306 */
3307 trace_hardirqs_on();
3308
Paul Mackerras8b24e692017-06-26 15:45:51 +10003309 trap = __kvmppc_vcore_entry();
Paul Mackerras19ccb762011-07-23 17:42:46 +10003310
Alexey Kardashevskiy3309bec2019-03-29 16:40:13 +11003311 trace_hardirqs_off();
3312
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303313 this_cpu_enable_ftrace();
3314
Paul Mackerrasec257162015-06-24 21:18:03 +10003315 srcu_read_unlock(&vc->kvm->srcu, srcu_idx);
3316
Paul Mackerras8b24e692017-06-26 15:45:51 +10003317 set_irq_happened(trap);
3318
Paul Mackerrasec257162015-06-24 21:18:03 +10003319 spin_lock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003320 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
Paul Mackerras19ccb762011-07-23 17:42:46 +10003321 vc->vcore_state = VCORE_EXITING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003322
Paul Mackerras371fefd2011-06-29 00:23:08 +00003323 /* wait for secondary threads to finish writing their state to memory */
Paul Mackerras516f7892017-10-16 16:11:57 +11003324 kvmppc_wait_for_nap(controlled_threads);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003325
3326 /* Return to whole-core mode if we split the core earlier */
Paul Mackerras516f7892017-10-16 16:11:57 +11003327 if (cmd_bit) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003328 unsigned long hid0 = mfspr(SPRN_HID0);
3329 unsigned long loops = 0;
3330
3331 hid0 &= ~HID0_POWER8_DYNLPARDIS;
3332 stat_bit = HID0_POWER8_2LPARMODE | HID0_POWER8_4LPARMODE;
3333 mb();
3334 mtspr(SPRN_HID0, hid0);
3335 isync();
3336 for (;;) {
3337 hid0 = mfspr(SPRN_HID0);
3338 if (!(hid0 & stat_bit))
3339 break;
3340 cpu_relax();
3341 ++loops;
3342 }
Paul Mackerrasc0101502017-10-19 14:11:23 +11003343 } else if (hpt_on_radix) {
3344 /* Wait for all threads to have seen final sync */
3345 for (thr = 1; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003346 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3347
3348 while (paca->kvm_hstate.kvm_split_mode) {
Paul Mackerrasc0101502017-10-19 14:11:23 +11003349 HMT_low();
3350 barrier();
3351 }
3352 HMT_medium();
3353 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003354 }
Paul Mackerrasc0101502017-10-19 14:11:23 +11003355 split_info.do_nap = 0;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003356
Paul Mackerras8b24e692017-06-26 15:45:51 +10003357 kvmppc_set_host_core(pcpu);
3358
3359 local_irq_enable();
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003360 guest_exit();
Paul Mackerras8b24e692017-06-26 15:45:51 +10003361
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003362 /* Let secondaries go back to the offline loop */
Paul Mackerras45c940b2016-11-18 17:43:30 +11003363 for (i = 0; i < controlled_threads; ++i) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003364 kvmppc_release_hwthread(pcpu + i);
3365 if (sip && sip->napped[i])
3366 kvmppc_ipi_thread(pcpu + i);
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003367 cpumask_clear_cpu(pcpu + i, &vc->kvm->arch.cpu_in_guest);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003368 }
3369
Paul Mackerras371fefd2011-06-29 00:23:08 +00003370 spin_unlock(&vc->lock);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003371
Paul Mackerras371fefd2011-06-29 00:23:08 +00003372 /* make sure updates to secondary vcpu structs are visible now */
3373 smp_mb();
Paul Mackerrasde56a942011-06-29 00:21:34 +00003374
Paul Mackerras36ee41d2018-01-30 10:51:32 +11003375 preempt_enable();
3376
Paul Mackerras898b25b2017-06-22 15:08:42 +10003377 for (sub = 0; sub < core_info.n_subcores; ++sub) {
3378 pvc = core_info.vc[sub];
3379 post_guest_process(pvc, pvc == vc);
3380 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00003381
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003382 spin_lock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003383
Paul Mackerrasde56a942011-06-29 00:21:34 +00003384 out:
Paul Mackerras19ccb762011-07-23 17:42:46 +10003385 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003386 trace_kvmppc_run_core(vc, 1);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003387}
3388
Paul Mackerras19ccb762011-07-23 17:42:46 +10003389/*
Paul Mackerras95a64322018-10-08 16:30:55 +11003390 * Load up hypervisor-mode registers on P9.
3391 */
Paul Mackerras360cae32018-10-08 16:31:04 +11003392static int kvmhv_load_hv_regs_and_go(struct kvm_vcpu *vcpu, u64 time_limit,
3393 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003394{
3395 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3396 s64 hdec;
3397 u64 tb, purr, spurr;
3398 int trap;
3399 unsigned long host_hfscr = mfspr(SPRN_HFSCR);
3400 unsigned long host_ciabr = mfspr(SPRN_CIABR);
3401 unsigned long host_dawr = mfspr(SPRN_DAWR);
3402 unsigned long host_dawrx = mfspr(SPRN_DAWRX);
3403 unsigned long host_psscr = mfspr(SPRN_PSSCR);
3404 unsigned long host_pidr = mfspr(SPRN_PID);
3405
3406 hdec = time_limit - mftb();
3407 if (hdec < 0)
3408 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3409 mtspr(SPRN_HDEC, hdec);
3410
3411 if (vc->tb_offset) {
3412 u64 new_tb = mftb() + vc->tb_offset;
3413 mtspr(SPRN_TBU40, new_tb);
3414 tb = mftb();
3415 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3416 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3417 vc->tb_offset_applied = vc->tb_offset;
3418 }
3419
3420 if (vc->pcr)
Jordan Niethe13c7bb32019-09-17 10:46:05 +10003421 mtspr(SPRN_PCR, vc->pcr | PCR_MASK);
Paul Mackerras95a64322018-10-08 16:30:55 +11003422 mtspr(SPRN_DPDES, vc->dpdes);
3423 mtspr(SPRN_VTB, vc->vtb);
3424
3425 local_paca->kvm_hstate.host_purr = mfspr(SPRN_PURR);
3426 local_paca->kvm_hstate.host_spurr = mfspr(SPRN_SPURR);
3427 mtspr(SPRN_PURR, vcpu->arch.purr);
3428 mtspr(SPRN_SPURR, vcpu->arch.spurr);
3429
Michael Neulingc1fe1902019-04-01 17:03:12 +11003430 if (dawr_enabled()) {
Paul Mackerras95a64322018-10-08 16:30:55 +11003431 mtspr(SPRN_DAWR, vcpu->arch.dawr);
3432 mtspr(SPRN_DAWRX, vcpu->arch.dawrx);
3433 }
3434 mtspr(SPRN_CIABR, vcpu->arch.ciabr);
3435 mtspr(SPRN_IC, vcpu->arch.ic);
3436 mtspr(SPRN_PID, vcpu->arch.pid);
3437
3438 mtspr(SPRN_PSSCR, vcpu->arch.psscr | PSSCR_EC |
3439 (local_paca->kvm_hstate.fake_suspend << PSSCR_FAKE_SUSPEND_LG));
3440
3441 mtspr(SPRN_HFSCR, vcpu->arch.hfscr);
3442
3443 mtspr(SPRN_SPRG0, vcpu->arch.shregs.sprg0);
3444 mtspr(SPRN_SPRG1, vcpu->arch.shregs.sprg1);
3445 mtspr(SPRN_SPRG2, vcpu->arch.shregs.sprg2);
3446 mtspr(SPRN_SPRG3, vcpu->arch.shregs.sprg3);
3447
3448 mtspr(SPRN_AMOR, ~0UL);
3449
Paul Mackerras360cae32018-10-08 16:31:04 +11003450 mtspr(SPRN_LPCR, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11003451 isync();
3452
3453 kvmppc_xive_push_vcpu(vcpu);
3454
3455 mtspr(SPRN_SRR0, vcpu->arch.shregs.srr0);
3456 mtspr(SPRN_SRR1, vcpu->arch.shregs.srr1);
3457
3458 trap = __kvmhv_vcpu_entry_p9(vcpu);
3459
3460 /* Advance host PURR/SPURR by the amount used by guest */
3461 purr = mfspr(SPRN_PURR);
3462 spurr = mfspr(SPRN_SPURR);
3463 mtspr(SPRN_PURR, local_paca->kvm_hstate.host_purr +
3464 purr - vcpu->arch.purr);
3465 mtspr(SPRN_SPURR, local_paca->kvm_hstate.host_spurr +
3466 spurr - vcpu->arch.spurr);
3467 vcpu->arch.purr = purr;
3468 vcpu->arch.spurr = spurr;
3469
3470 vcpu->arch.ic = mfspr(SPRN_IC);
3471 vcpu->arch.pid = mfspr(SPRN_PID);
3472 vcpu->arch.psscr = mfspr(SPRN_PSSCR) & PSSCR_GUEST_VIS;
3473
3474 vcpu->arch.shregs.sprg0 = mfspr(SPRN_SPRG0);
3475 vcpu->arch.shregs.sprg1 = mfspr(SPRN_SPRG1);
3476 vcpu->arch.shregs.sprg2 = mfspr(SPRN_SPRG2);
3477 vcpu->arch.shregs.sprg3 = mfspr(SPRN_SPRG3);
3478
Suraj Jitindar Singh7cb9eb12019-03-18 13:59:46 +11003479 /* Preserve PSSCR[FAKE_SUSPEND] until we've called kvmppc_save_tm_hv */
3480 mtspr(SPRN_PSSCR, host_psscr |
3481 (local_paca->kvm_hstate.fake_suspend << PSSCR_FAKE_SUSPEND_LG));
Paul Mackerras95a64322018-10-08 16:30:55 +11003482 mtspr(SPRN_HFSCR, host_hfscr);
3483 mtspr(SPRN_CIABR, host_ciabr);
3484 mtspr(SPRN_DAWR, host_dawr);
3485 mtspr(SPRN_DAWRX, host_dawrx);
3486 mtspr(SPRN_PID, host_pidr);
3487
3488 /*
3489 * Since this is radix, do a eieio; tlbsync; ptesync sequence in
3490 * case we interrupted the guest between a tlbie and a ptesync.
3491 */
3492 asm volatile("eieio; tlbsync; ptesync");
3493
3494 mtspr(SPRN_LPID, vcpu->kvm->arch.host_lpid); /* restore host LPID */
3495 isync();
3496
3497 vc->dpdes = mfspr(SPRN_DPDES);
3498 vc->vtb = mfspr(SPRN_VTB);
3499 mtspr(SPRN_DPDES, 0);
3500 if (vc->pcr)
Jordan Niethe13c7bb32019-09-17 10:46:05 +10003501 mtspr(SPRN_PCR, PCR_MASK);
Paul Mackerras95a64322018-10-08 16:30:55 +11003502
3503 if (vc->tb_offset_applied) {
3504 u64 new_tb = mftb() - vc->tb_offset_applied;
3505 mtspr(SPRN_TBU40, new_tb);
3506 tb = mftb();
3507 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3508 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3509 vc->tb_offset_applied = 0;
3510 }
3511
3512 mtspr(SPRN_HDEC, 0x7fffffff);
3513 mtspr(SPRN_LPCR, vcpu->kvm->arch.host_lpcr);
3514
3515 return trap;
3516}
3517
3518/*
3519 * Virtual-mode guest entry for POWER9 and later when the host and
3520 * guest are both using the radix MMU. The LPIDR has already been set.
3521 */
Paul Mackerras360cae32018-10-08 16:31:04 +11003522int kvmhv_p9_guest_entry(struct kvm_vcpu *vcpu, u64 time_limit,
3523 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003524{
3525 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3526 unsigned long host_dscr = mfspr(SPRN_DSCR);
3527 unsigned long host_tidr = mfspr(SPRN_TIDR);
3528 unsigned long host_iamr = mfspr(SPRN_IAMR);
Michael Ellermand976f682019-02-20 19:55:00 +11003529 unsigned long host_amr = mfspr(SPRN_AMR);
Paul Mackerras95a64322018-10-08 16:30:55 +11003530 s64 dec;
3531 u64 tb;
3532 int trap, save_pmu;
3533
3534 dec = mfspr(SPRN_DEC);
3535 tb = mftb();
3536 if (dec < 512)
3537 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3538 local_paca->kvm_hstate.dec_expires = dec + tb;
3539 if (local_paca->kvm_hstate.dec_expires < time_limit)
3540 time_limit = local_paca->kvm_hstate.dec_expires;
3541
3542 vcpu->arch.ceded = 0;
3543
3544 kvmhv_save_host_pmu(); /* saves it to PACA kvm_hstate */
3545
3546 kvmppc_subcore_enter_guest();
3547
3548 vc->entry_exit_map = 1;
3549 vc->in_guest = 1;
3550
3551 if (vcpu->arch.vpa.pinned_addr) {
3552 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3553 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3554 lp->yield_count = cpu_to_be32(yield_count);
3555 vcpu->arch.vpa.dirty = 1;
3556 }
3557
3558 if (cpu_has_feature(CPU_FTR_TM) ||
3559 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3560 kvmppc_restore_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3561
3562 kvmhv_load_guest_pmu(vcpu);
3563
3564 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3565 load_fp_state(&vcpu->arch.fp);
3566#ifdef CONFIG_ALTIVEC
3567 load_vr_state(&vcpu->arch.vr);
3568#endif
Suraj Jitindar Singh44b198a2019-04-30 10:41:23 +10003569 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
Paul Mackerras95a64322018-10-08 16:30:55 +11003570
3571 mtspr(SPRN_DSCR, vcpu->arch.dscr);
3572 mtspr(SPRN_IAMR, vcpu->arch.iamr);
3573 mtspr(SPRN_PSPB, vcpu->arch.pspb);
3574 mtspr(SPRN_FSCR, vcpu->arch.fscr);
3575 mtspr(SPRN_TAR, vcpu->arch.tar);
3576 mtspr(SPRN_EBBHR, vcpu->arch.ebbhr);
3577 mtspr(SPRN_EBBRR, vcpu->arch.ebbrr);
3578 mtspr(SPRN_BESCR, vcpu->arch.bescr);
3579 mtspr(SPRN_WORT, vcpu->arch.wort);
3580 mtspr(SPRN_TIDR, vcpu->arch.tid);
3581 mtspr(SPRN_DAR, vcpu->arch.shregs.dar);
3582 mtspr(SPRN_DSISR, vcpu->arch.shregs.dsisr);
3583 mtspr(SPRN_AMR, vcpu->arch.amr);
3584 mtspr(SPRN_UAMOR, vcpu->arch.uamor);
3585
3586 if (!(vcpu->arch.ctrl & 1))
3587 mtspr(SPRN_CTRLT, mfspr(SPRN_CTRLF) & ~1);
3588
3589 mtspr(SPRN_DEC, vcpu->arch.dec_expires - mftb());
3590
Paul Mackerras360cae32018-10-08 16:31:04 +11003591 if (kvmhv_on_pseries()) {
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003592 /*
3593 * We need to save and restore the guest visible part of the
3594 * psscr (i.e. using SPRN_PSSCR_PR) since the hypervisor
3595 * doesn't do this for us. Note only required if pseries since
3596 * this is done in kvmhv_load_hv_regs_and_go() below otherwise.
3597 */
3598 unsigned long host_psscr;
Paul Mackerras360cae32018-10-08 16:31:04 +11003599 /* call our hypervisor to load up HV regs and go */
3600 struct hv_guest_state hvregs;
Paul Mackerras95a64322018-10-08 16:30:55 +11003601
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003602 host_psscr = mfspr(SPRN_PSSCR_PR);
3603 mtspr(SPRN_PSSCR_PR, vcpu->arch.psscr);
Paul Mackerras360cae32018-10-08 16:31:04 +11003604 kvmhv_save_hv_regs(vcpu, &hvregs);
3605 hvregs.lpcr = lpcr;
3606 vcpu->arch.regs.msr = vcpu->arch.shregs.msr;
3607 hvregs.version = HV_GUEST_STATE_VERSION;
3608 if (vcpu->arch.nested) {
3609 hvregs.lpid = vcpu->arch.nested->shadow_lpid;
3610 hvregs.vcpu_token = vcpu->arch.nested_vcpu_id;
3611 } else {
3612 hvregs.lpid = vcpu->kvm->arch.lpid;
3613 hvregs.vcpu_token = vcpu->vcpu_id;
3614 }
3615 hvregs.hdec_expiry = time_limit;
3616 trap = plpar_hcall_norets(H_ENTER_NESTED, __pa(&hvregs),
3617 __pa(&vcpu->arch.regs));
3618 kvmhv_restore_hv_return_state(vcpu, &hvregs);
3619 vcpu->arch.shregs.msr = vcpu->arch.regs.msr;
3620 vcpu->arch.shregs.dar = mfspr(SPRN_DAR);
3621 vcpu->arch.shregs.dsisr = mfspr(SPRN_DSISR);
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003622 vcpu->arch.psscr = mfspr(SPRN_PSSCR_PR);
3623 mtspr(SPRN_PSSCR_PR, host_psscr);
Paul Mackerras4bad7772018-10-08 16:31:06 +11003624
3625 /* H_CEDE has to be handled now, not later */
3626 if (trap == BOOK3S_INTERRUPT_SYSCALL && !vcpu->arch.nested &&
3627 kvmppc_get_gpr(vcpu, 3) == H_CEDE) {
3628 kvmppc_nested_cede(vcpu);
3629 trap = 0;
3630 }
Paul Mackerras360cae32018-10-08 16:31:04 +11003631 } else {
3632 trap = kvmhv_load_hv_regs_and_go(vcpu, time_limit, lpcr);
3633 }
Paul Mackerras95a64322018-10-08 16:30:55 +11003634
3635 vcpu->arch.slb_max = 0;
3636 dec = mfspr(SPRN_DEC);
Suraj Jitindar Singh86953772019-06-20 11:46:50 +10003637 if (!(lpcr & LPCR_LD)) /* Sign extend if not using large decrementer */
3638 dec = (s32) dec;
Paul Mackerras95a64322018-10-08 16:30:55 +11003639 tb = mftb();
3640 vcpu->arch.dec_expires = dec + tb;
3641 vcpu->cpu = -1;
3642 vcpu->arch.thread_cpu = -1;
3643 vcpu->arch.ctrl = mfspr(SPRN_CTRLF);
3644
3645 vcpu->arch.iamr = mfspr(SPRN_IAMR);
3646 vcpu->arch.pspb = mfspr(SPRN_PSPB);
3647 vcpu->arch.fscr = mfspr(SPRN_FSCR);
3648 vcpu->arch.tar = mfspr(SPRN_TAR);
3649 vcpu->arch.ebbhr = mfspr(SPRN_EBBHR);
3650 vcpu->arch.ebbrr = mfspr(SPRN_EBBRR);
3651 vcpu->arch.bescr = mfspr(SPRN_BESCR);
3652 vcpu->arch.wort = mfspr(SPRN_WORT);
3653 vcpu->arch.tid = mfspr(SPRN_TIDR);
3654 vcpu->arch.amr = mfspr(SPRN_AMR);
3655 vcpu->arch.uamor = mfspr(SPRN_UAMOR);
3656 vcpu->arch.dscr = mfspr(SPRN_DSCR);
3657
3658 mtspr(SPRN_PSPB, 0);
3659 mtspr(SPRN_WORT, 0);
Paul Mackerras95a64322018-10-08 16:30:55 +11003660 mtspr(SPRN_UAMOR, 0);
3661 mtspr(SPRN_DSCR, host_dscr);
3662 mtspr(SPRN_TIDR, host_tidr);
3663 mtspr(SPRN_IAMR, host_iamr);
3664 mtspr(SPRN_PSPB, 0);
3665
Michael Ellermand976f682019-02-20 19:55:00 +11003666 if (host_amr != vcpu->arch.amr)
3667 mtspr(SPRN_AMR, host_amr);
3668
Paul Mackerras95a64322018-10-08 16:30:55 +11003669 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3670 store_fp_state(&vcpu->arch.fp);
3671#ifdef CONFIG_ALTIVEC
3672 store_vr_state(&vcpu->arch.vr);
3673#endif
Suraj Jitindar Singh44b198a2019-04-30 10:41:23 +10003674 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerras95a64322018-10-08 16:30:55 +11003675
3676 if (cpu_has_feature(CPU_FTR_TM) ||
3677 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3678 kvmppc_save_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3679
3680 save_pmu = 1;
3681 if (vcpu->arch.vpa.pinned_addr) {
3682 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3683 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3684 lp->yield_count = cpu_to_be32(yield_count);
3685 vcpu->arch.vpa.dirty = 1;
3686 save_pmu = lp->pmcregs_in_use;
3687 }
Suraj Jitindar Singh63279ee2019-07-03 11:20:20 +10003688 /* Must save pmu if this guest is capable of running nested guests */
3689 save_pmu |= nesting_enabled(vcpu->kvm);
Paul Mackerras95a64322018-10-08 16:30:55 +11003690
3691 kvmhv_save_guest_pmu(vcpu, save_pmu);
3692
3693 vc->entry_exit_map = 0x101;
3694 vc->in_guest = 0;
3695
3696 mtspr(SPRN_DEC, local_paca->kvm_hstate.dec_expires - mftb());
Suraj Jitindar Singhd724c9e2019-05-30 12:17:18 +10003697 mtspr(SPRN_SPRG_VDSO_WRITE, local_paca->sprg_vdso);
Paul Mackerras95a64322018-10-08 16:30:55 +11003698
3699 kvmhv_load_host_pmu();
3700
3701 kvmppc_subcore_exit_guest();
3702
3703 return trap;
3704}
3705
3706/*
Paul Mackerras19ccb762011-07-23 17:42:46 +10003707 * Wait for some other vcpu thread to execute us, and
3708 * wake us up when we need to handle something in the host.
3709 */
Paul Mackerrasec257162015-06-24 21:18:03 +10003710static void kvmppc_wait_for_exec(struct kvmppc_vcore *vc,
3711 struct kvm_vcpu *vcpu, int wait_state)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003712{
Paul Mackerras371fefd2011-06-29 00:23:08 +00003713 DEFINE_WAIT(wait);
3714
Paul Mackerras19ccb762011-07-23 17:42:46 +10003715 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
Paul Mackerrasec257162015-06-24 21:18:03 +10003716 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
3717 spin_unlock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003718 schedule();
Paul Mackerrasec257162015-06-24 21:18:03 +10003719 spin_lock(&vc->lock);
3720 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003721 finish_wait(&vcpu->arch.cpu_run, &wait);
3722}
Paul Mackerras371fefd2011-06-29 00:23:08 +00003723
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003724static void grow_halt_poll_ns(struct kvmppc_vcore *vc)
3725{
Nir Weiner7fa08e72019-01-27 12:17:14 +02003726 if (!halt_poll_ns_grow)
3727 return;
3728
Nir Weinerdee339b2019-01-27 12:17:16 +02003729 vc->halt_poll_ns *= halt_poll_ns_grow;
3730 if (vc->halt_poll_ns < halt_poll_ns_grow_start)
Nir Weiner49113d32019-01-27 12:17:15 +02003731 vc->halt_poll_ns = halt_poll_ns_grow_start;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003732}
3733
3734static void shrink_halt_poll_ns(struct kvmppc_vcore *vc)
3735{
3736 if (halt_poll_ns_shrink == 0)
3737 vc->halt_poll_ns = 0;
3738 else
3739 vc->halt_poll_ns /= halt_poll_ns_shrink;
3740}
3741
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003742#ifdef CONFIG_KVM_XICS
3743static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3744{
Paul Mackerras03f95332019-02-04 22:07:20 +11003745 if (!xics_on_xive())
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003746 return false;
Benjamin Herrenschmidt2267ea72018-01-12 13:37:13 +11003747 return vcpu->arch.irq_pending || vcpu->arch.xive_saved_state.pipr <
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003748 vcpu->arch.xive_saved_state.cppr;
3749}
3750#else
3751static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3752{
3753 return false;
3754}
3755#endif /* CONFIG_KVM_XICS */
3756
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003757static bool kvmppc_vcpu_woken(struct kvm_vcpu *vcpu)
3758{
3759 if (vcpu->arch.pending_exceptions || vcpu->arch.prodded ||
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003760 kvmppc_doorbell_pending(vcpu) || xive_interrupt_pending(vcpu))
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003761 return true;
3762
3763 return false;
3764}
3765
Suraj Jitindar Singh908a0932016-10-14 11:53:23 +11003766/*
3767 * Check to see if any of the runnable vcpus on the vcore have pending
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003768 * exceptions or are no longer ceded
3769 */
3770static int kvmppc_vcore_check_block(struct kvmppc_vcore *vc)
3771{
3772 struct kvm_vcpu *vcpu;
3773 int i;
3774
3775 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003776 if (!vcpu->arch.ceded || kvmppc_vcpu_woken(vcpu))
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003777 return 1;
3778 }
3779
3780 return 0;
3781}
3782
Paul Mackerras19ccb762011-07-23 17:42:46 +10003783/*
3784 * All the vcpus in this vcore are idle, so wait for a decrementer
3785 * or external interrupt to one of the vcpus. vc->lock is held.
3786 */
3787static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
3788{
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003789 ktime_t cur, start_poll, start_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003790 int do_sleep = 1;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003791 u64 block_ns;
Marcelo Tosatti85773702016-02-19 09:46:39 +01003792 DECLARE_SWAITQUEUE(wait);
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003793
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003794 /* Poll for pending exceptions and ceded state */
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003795 cur = start_poll = ktime_get();
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003796 if (vc->halt_poll_ns) {
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003797 ktime_t stop = ktime_add_ns(start_poll, vc->halt_poll_ns);
3798 ++vc->runner->stat.halt_attempted_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003799
3800 vc->vcore_state = VCORE_POLLING;
3801 spin_unlock(&vc->lock);
3802
3803 do {
3804 if (kvmppc_vcore_check_block(vc)) {
3805 do_sleep = 0;
3806 break;
3807 }
3808 cur = ktime_get();
3809 } while (single_task_running() && ktime_before(cur, stop));
3810
3811 spin_lock(&vc->lock);
3812 vc->vcore_state = VCORE_INACTIVE;
3813
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003814 if (!do_sleep) {
3815 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003816 goto out;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003817 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003818 }
3819
Peter Zijlstrab3dae102018-06-12 10:34:52 +02003820 prepare_to_swait_exclusive(&vc->wq, &wait, TASK_INTERRUPTIBLE);
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003821
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003822 if (kvmppc_vcore_check_block(vc)) {
Marcelo Tosatti85773702016-02-19 09:46:39 +01003823 finish_swait(&vc->wq, &wait);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003824 do_sleep = 0;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003825 /* If we polled, count this as a successful poll */
3826 if (vc->halt_poll_ns)
3827 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003828 goto out;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003829 }
3830
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003831 start_wait = ktime_get();
3832
Paul Mackerras19ccb762011-07-23 17:42:46 +10003833 vc->vcore_state = VCORE_SLEEPING;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003834 trace_kvmppc_vcore_blocked(vc, 0);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003835 spin_unlock(&vc->lock);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003836 schedule();
Marcelo Tosatti85773702016-02-19 09:46:39 +01003837 finish_swait(&vc->wq, &wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003838 spin_lock(&vc->lock);
3839 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003840 trace_kvmppc_vcore_blocked(vc, 1);
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003841 ++vc->runner->stat.halt_successful_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003842
3843 cur = ktime_get();
3844
3845out:
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003846 block_ns = ktime_to_ns(cur) - ktime_to_ns(start_poll);
3847
3848 /* Attribute wait time */
3849 if (do_sleep) {
3850 vc->runner->stat.halt_wait_ns +=
3851 ktime_to_ns(cur) - ktime_to_ns(start_wait);
3852 /* Attribute failed poll time */
3853 if (vc->halt_poll_ns)
3854 vc->runner->stat.halt_poll_fail_ns +=
3855 ktime_to_ns(start_wait) -
3856 ktime_to_ns(start_poll);
3857 } else {
3858 /* Attribute successful poll time */
3859 if (vc->halt_poll_ns)
3860 vc->runner->stat.halt_poll_success_ns +=
3861 ktime_to_ns(cur) -
3862 ktime_to_ns(start_poll);
3863 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003864
3865 /* Adjust poll time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003866 if (halt_poll_ns) {
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003867 if (block_ns <= vc->halt_poll_ns)
3868 ;
3869 /* We slept and blocked for longer than the max halt time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003870 else if (vc->halt_poll_ns && block_ns > halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003871 shrink_halt_poll_ns(vc);
3872 /* We slept and our poll time is too small */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003873 else if (vc->halt_poll_ns < halt_poll_ns &&
3874 block_ns < halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003875 grow_halt_poll_ns(vc);
Suraj Jitindar Singhe03f3922016-10-14 11:53:21 +11003876 if (vc->halt_poll_ns > halt_poll_ns)
3877 vc->halt_poll_ns = halt_poll_ns;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003878 } else
3879 vc->halt_poll_ns = 0;
3880
3881 trace_kvmppc_vcore_wakeup(do_sleep, block_ns);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003882}
3883
Paul Mackerras360cae32018-10-08 16:31:04 +11003884/*
3885 * This never fails for a radix guest, as none of the operations it does
3886 * for a radix guest can fail or have a way to report failure.
3887 * kvmhv_run_single_vcpu() relies on this fact.
3888 */
Paul Mackerras432953b2017-11-09 15:37:10 +11003889static int kvmhv_setup_mmu(struct kvm_vcpu *vcpu)
3890{
3891 int r = 0;
3892 struct kvm *kvm = vcpu->kvm;
3893
Paul Mackerras0d4ee882019-05-23 16:35:34 +10003894 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11003895 if (!kvm->arch.mmu_ready) {
3896 if (!kvm_is_radix(kvm))
3897 r = kvmppc_hv_setup_htab_rma(vcpu);
3898 if (!r) {
3899 if (cpu_has_feature(CPU_FTR_ARCH_300))
3900 kvmppc_setup_partition_table(kvm);
3901 kvm->arch.mmu_ready = 1;
3902 }
3903 }
Paul Mackerras0d4ee882019-05-23 16:35:34 +10003904 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11003905 return r;
3906}
3907
Paul Mackerras19ccb762011-07-23 17:42:46 +10003908static int kvmppc_run_vcpu(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
3909{
Paul Mackerras38c53af2017-11-08 14:44:04 +11003910 int n_ceded, i, r;
Paul Mackerras19ccb762011-07-23 17:42:46 +10003911 struct kvmppc_vcore *vc;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003912 struct kvm_vcpu *v;
Paul Mackerras9e368f22011-06-29 00:40:08 +00003913
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003914 trace_kvmppc_run_vcpu_enter(vcpu);
3915
Paul Mackerras371fefd2011-06-29 00:23:08 +00003916 kvm_run->exit_reason = 0;
3917 vcpu->arch.ret = RESUME_GUEST;
3918 vcpu->arch.trap = 0;
Paul Mackerras2f12f032012-10-15 01:17:17 +00003919 kvmppc_update_vpas(vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003920
Paul Mackerras371fefd2011-06-29 00:23:08 +00003921 /*
3922 * Synchronize with other threads in this virtual core
3923 */
3924 vc = vcpu->arch.vcore;
3925 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003926 vcpu->arch.ceded = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003927 vcpu->arch.run_task = current;
3928 vcpu->arch.kvm_run = kvm_run;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003929 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
Paul Mackerras19ccb762011-07-23 17:42:46 +10003930 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003931 vcpu->arch.busy_preempt = TB_NIL;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003932 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003933 ++vc->n_runnable;
3934
Paul Mackerras19ccb762011-07-23 17:42:46 +10003935 /*
3936 * This happens the first time this is called for a vcpu.
3937 * If the vcore is already running, we may be able to start
3938 * this thread straight away and have it join in.
3939 */
Paul Mackerras8455d792012-10-15 01:17:42 +00003940 if (!signal_pending(current)) {
Paul Mackerrasc0093f12017-11-20 16:12:25 +11003941 if ((vc->vcore_state == VCORE_PIGGYBACK ||
3942 vc->vcore_state == VCORE_RUNNING) &&
Paul Mackerrasec257162015-06-24 21:18:03 +10003943 !VCORE_IS_EXITING(vc)) {
Paul Mackerras2f12f032012-10-15 01:17:17 +00003944 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003945 kvmppc_start_thread(vcpu, vc);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003946 trace_kvm_guest_enter(vcpu);
Paul Mackerras8455d792012-10-15 01:17:42 +00003947 } else if (vc->vcore_state == VCORE_SLEEPING) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +02003948 swake_up_one(&vc->wq);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003949 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003950
Paul Mackerras8455d792012-10-15 01:17:42 +00003951 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003952
3953 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
3954 !signal_pending(current)) {
Paul Mackerras072df812017-11-09 14:30:24 +11003955 /* See if the MMU is ready to go */
3956 if (!vcpu->kvm->arch.mmu_ready) {
Paul Mackerras38c53af2017-11-08 14:44:04 +11003957 spin_unlock(&vc->lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11003958 r = kvmhv_setup_mmu(vcpu);
Paul Mackerras38c53af2017-11-08 14:44:04 +11003959 spin_lock(&vc->lock);
3960 if (r) {
3961 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
Paul Mackerras432953b2017-11-09 15:37:10 +11003962 kvm_run->fail_entry.
3963 hardware_entry_failure_reason = 0;
Paul Mackerras38c53af2017-11-08 14:44:04 +11003964 vcpu->arch.ret = r;
3965 break;
3966 }
3967 }
3968
Paul Mackerrasec257162015-06-24 21:18:03 +10003969 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
3970 kvmppc_vcore_end_preempt(vc);
3971
Paul Mackerras8455d792012-10-15 01:17:42 +00003972 if (vc->vcore_state != VCORE_INACTIVE) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003973 kvmppc_wait_for_exec(vc, vcpu, TASK_INTERRUPTIBLE);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003974 continue;
3975 }
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003976 for_each_runnable_thread(i, v, vc) {
Scott Wood7e28e60e2011-11-08 18:23:20 -06003977 kvmppc_core_prepare_to_enter(v);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003978 if (signal_pending(v->arch.run_task)) {
3979 kvmppc_remove_runnable(vc, v);
3980 v->stat.signal_exits++;
3981 v->arch.kvm_run->exit_reason = KVM_EXIT_INTR;
3982 v->arch.ret = -EINTR;
3983 wake_up(&v->arch.cpu_run);
3984 }
3985 }
Paul Mackerras8455d792012-10-15 01:17:42 +00003986 if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
3987 break;
Paul Mackerras8455d792012-10-15 01:17:42 +00003988 n_ceded = 0;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003989 for_each_runnable_thread(i, v, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003990 if (!kvmppc_vcpu_woken(v))
Paul Mackerras8455d792012-10-15 01:17:42 +00003991 n_ceded += v->arch.ceded;
Paul Mackerras4619ac82013-04-17 20:31:41 +00003992 else
3993 v->arch.ceded = 0;
3994 }
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003995 vc->runner = vcpu;
3996 if (n_ceded == vc->n_runnable) {
Paul Mackerras8455d792012-10-15 01:17:42 +00003997 kvmppc_vcore_blocked(vc);
Konstantin Khlebnikovc56dadf2015-07-15 12:52:03 +03003998 } else if (need_resched()) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003999 kvmppc_vcore_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004000 /* Let something else run */
4001 cond_resched_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10004002 if (vc->vcore_state == VCORE_PREEMPT)
4003 kvmppc_vcore_end_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004004 } else {
Paul Mackerras8455d792012-10-15 01:17:42 +00004005 kvmppc_run_core(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004006 }
Paul Mackerras0456ec42012-02-03 00:56:21 +00004007 vc->runner = NULL;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004008 }
4009
Paul Mackerras8455d792012-10-15 01:17:42 +00004010 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
4011 (vc->vcore_state == VCORE_RUNNING ||
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004012 vc->vcore_state == VCORE_EXITING ||
4013 vc->vcore_state == VCORE_PIGGYBACK))
Paul Mackerrasec257162015-06-24 21:18:03 +10004014 kvmppc_wait_for_exec(vc, vcpu, TASK_UNINTERRUPTIBLE);
Paul Mackerras8455d792012-10-15 01:17:42 +00004015
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004016 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
4017 kvmppc_vcore_end_preempt(vc);
4018
Paul Mackerras8455d792012-10-15 01:17:42 +00004019 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
4020 kvmppc_remove_runnable(vc, vcpu);
4021 vcpu->stat.signal_exits++;
4022 kvm_run->exit_reason = KVM_EXIT_INTR;
4023 vcpu->arch.ret = -EINTR;
4024 }
4025
4026 if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) {
4027 /* Wake up some vcpu to run the core */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004028 i = -1;
4029 v = next_runnable_thread(vc, &i);
Paul Mackerras8455d792012-10-15 01:17:42 +00004030 wake_up(&v->arch.cpu_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004031 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00004032
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004033 trace_kvmppc_run_vcpu_exit(vcpu, kvm_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004034 spin_unlock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004035 return vcpu->arch.ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004036}
4037
Paul Mackerras360cae32018-10-08 16:31:04 +11004038int kvmhv_run_single_vcpu(struct kvm_run *kvm_run,
4039 struct kvm_vcpu *vcpu, u64 time_limit,
4040 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11004041{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11004042 int trap, r, pcpu;
Paul Mackerras70ea13f2019-04-29 19:02:58 +10004043 int srcu_idx, lpid;
Paul Mackerras95a64322018-10-08 16:30:55 +11004044 struct kvmppc_vcore *vc;
4045 struct kvm *kvm = vcpu->kvm;
Paul Mackerras360cae32018-10-08 16:31:04 +11004046 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras95a64322018-10-08 16:30:55 +11004047
4048 trace_kvmppc_run_vcpu_enter(vcpu);
4049
4050 kvm_run->exit_reason = 0;
4051 vcpu->arch.ret = RESUME_GUEST;
4052 vcpu->arch.trap = 0;
4053
4054 vc = vcpu->arch.vcore;
4055 vcpu->arch.ceded = 0;
4056 vcpu->arch.run_task = current;
4057 vcpu->arch.kvm_run = kvm_run;
4058 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
4059 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
4060 vcpu->arch.busy_preempt = TB_NIL;
4061 vcpu->arch.last_inst = KVM_INST_FETCH_FAILED;
4062 vc->runnable_threads[0] = vcpu;
4063 vc->n_runnable = 1;
4064 vc->runner = vcpu;
4065
4066 /* See if the MMU is ready to go */
Paul Mackerras360cae32018-10-08 16:31:04 +11004067 if (!kvm->arch.mmu_ready)
4068 kvmhv_setup_mmu(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004069
4070 if (need_resched())
4071 cond_resched();
4072
4073 kvmppc_update_vpas(vcpu);
4074
4075 init_vcore_to_run(vc);
4076 vc->preempt_tb = TB_NIL;
4077
4078 preempt_disable();
4079 pcpu = smp_processor_id();
4080 vc->pcpu = pcpu;
4081 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
4082
4083 local_irq_disable();
4084 hard_irq_disable();
4085 if (signal_pending(current))
4086 goto sigpend;
4087 if (lazy_irq_pending() || need_resched() || !kvm->arch.mmu_ready)
4088 goto out;
4089
Paul Mackerras360cae32018-10-08 16:31:04 +11004090 if (!nested) {
4091 kvmppc_core_prepare_to_enter(vcpu);
4092 if (vcpu->arch.doorbell_request) {
4093 vc->dpdes = 1;
4094 smp_wmb();
4095 vcpu->arch.doorbell_request = 0;
4096 }
4097 if (test_bit(BOOK3S_IRQPRIO_EXTERNAL,
4098 &vcpu->arch.pending_exceptions))
4099 lpcr |= LPCR_MER;
4100 } else if (vcpu->arch.pending_exceptions ||
4101 vcpu->arch.doorbell_request ||
4102 xive_interrupt_pending(vcpu)) {
4103 vcpu->arch.ret = RESUME_HOST;
4104 goto out;
4105 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004106
4107 kvmppc_clear_host_core(pcpu);
4108
4109 local_paca->kvm_hstate.tid = 0;
4110 local_paca->kvm_hstate.napping = 0;
4111 local_paca->kvm_hstate.kvm_split_mode = NULL;
4112 kvmppc_start_thread(vcpu, vc);
4113 kvmppc_create_dtl_entry(vcpu, vc);
4114 trace_kvm_guest_enter(vcpu);
4115
4116 vc->vcore_state = VCORE_RUNNING;
4117 trace_kvmppc_run_core(vc, 0);
4118
Paul Mackerras70ea13f2019-04-29 19:02:58 +10004119 if (cpu_has_feature(CPU_FTR_HVMODE)) {
4120 lpid = nested ? nested->shadow_lpid : kvm->arch.lpid;
4121 mtspr(SPRN_LPID, lpid);
4122 isync();
4123 kvmppc_check_need_tlb_flush(kvm, pcpu, nested);
4124 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004125
Paul Mackerras95a64322018-10-08 16:30:55 +11004126 guest_enter_irqoff();
4127
4128 srcu_idx = srcu_read_lock(&kvm->srcu);
4129
4130 this_cpu_disable_ftrace();
4131
Paul Mackerras1b28d552019-05-28 15:01:59 +10004132 /* Tell lockdep that we're about to enable interrupts */
4133 trace_hardirqs_on();
4134
Paul Mackerras360cae32018-10-08 16:31:04 +11004135 trap = kvmhv_p9_guest_entry(vcpu, time_limit, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004136 vcpu->arch.trap = trap;
4137
Paul Mackerras1b28d552019-05-28 15:01:59 +10004138 trace_hardirqs_off();
4139
Paul Mackerras95a64322018-10-08 16:30:55 +11004140 this_cpu_enable_ftrace();
4141
4142 srcu_read_unlock(&kvm->srcu, srcu_idx);
4143
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11004144 if (cpu_has_feature(CPU_FTR_HVMODE)) {
4145 mtspr(SPRN_LPID, kvm->arch.host_lpid);
4146 isync();
4147 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004148
Paul Mackerras95a64322018-10-08 16:30:55 +11004149 set_irq_happened(trap);
4150
4151 kvmppc_set_host_core(pcpu);
4152
4153 local_irq_enable();
4154 guest_exit();
4155
4156 cpumask_clear_cpu(pcpu, &kvm->arch.cpu_in_guest);
4157
4158 preempt_enable();
4159
Suraj Jitindar Singh3c25ab32019-06-20 11:46:51 +10004160 /*
4161 * cancel pending decrementer exception if DEC is now positive, or if
4162 * entering a nested guest in which case the decrementer is now owned
4163 * by L2 and the L1 decrementer is provided in hdec_expires
4164 */
4165 if (kvmppc_core_pending_dec(vcpu) &&
4166 ((get_tb() < vcpu->arch.dec_expires) ||
4167 (trap == BOOK3S_INTERRUPT_SYSCALL &&
4168 kvmppc_get_gpr(vcpu, 3) == H_ENTER_NESTED)))
Paul Mackerras95a64322018-10-08 16:30:55 +11004169 kvmppc_core_dequeue_dec(vcpu);
4170
4171 trace_kvm_guest_exit(vcpu);
4172 r = RESUME_GUEST;
Paul Mackerras360cae32018-10-08 16:31:04 +11004173 if (trap) {
4174 if (!nested)
4175 r = kvmppc_handle_exit_hv(kvm_run, vcpu, current);
4176 else
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11004177 r = kvmppc_handle_nested_exit(kvm_run, vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11004178 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004179 vcpu->arch.ret = r;
4180
4181 if (is_kvmppc_resume_guest(r) && vcpu->arch.ceded &&
4182 !kvmppc_vcpu_woken(vcpu)) {
4183 kvmppc_set_timer(vcpu);
4184 while (vcpu->arch.ceded && !kvmppc_vcpu_woken(vcpu)) {
4185 if (signal_pending(current)) {
4186 vcpu->stat.signal_exits++;
4187 kvm_run->exit_reason = KVM_EXIT_INTR;
4188 vcpu->arch.ret = -EINTR;
4189 break;
4190 }
4191 spin_lock(&vc->lock);
4192 kvmppc_vcore_blocked(vc);
4193 spin_unlock(&vc->lock);
4194 }
4195 }
4196 vcpu->arch.ceded = 0;
4197
4198 vc->vcore_state = VCORE_INACTIVE;
4199 trace_kvmppc_run_core(vc, 1);
4200
4201 done:
4202 kvmppc_remove_runnable(vc, vcpu);
4203 trace_kvmppc_run_vcpu_exit(vcpu, kvm_run);
4204
4205 return vcpu->arch.ret;
4206
4207 sigpend:
4208 vcpu->stat.signal_exits++;
4209 kvm_run->exit_reason = KVM_EXIT_INTR;
4210 vcpu->arch.ret = -EINTR;
4211 out:
4212 local_irq_enable();
4213 preempt_enable();
4214 goto done;
4215}
4216
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304217static int kvmppc_vcpu_run_hv(struct kvm_run *run, struct kvm_vcpu *vcpu)
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004218{
4219 int r;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004220 int srcu_idx;
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004221 unsigned long ebb_regs[3] = {}; /* shut up GCC */
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004222 unsigned long user_tar = 0;
4223 unsigned int user_vrsave;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004224 struct kvm *kvm;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004225
Alexander Grafaf8f38b2011-08-10 13:57:08 +02004226 if (!vcpu->arch.sane) {
4227 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4228 return -EINVAL;
4229 }
4230
Paul Mackerras46a704f2017-06-15 16:10:27 +10004231 /*
4232 * Don't allow entry with a suspended transaction, because
4233 * the guest entry/exit code will lose it.
4234 * If the guest has TM enabled, save away their TM-related SPRs
4235 * (they will get restored by the TM unavailable interrupt).
4236 */
4237#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
4238 if (cpu_has_feature(CPU_FTR_TM) && current->thread.regs &&
4239 (current->thread.regs->msr & MSR_TM)) {
4240 if (MSR_TM_ACTIVE(current->thread.regs->msr)) {
4241 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4242 run->fail_entry.hardware_entry_failure_reason = 0;
4243 return -EINVAL;
4244 }
Paul Mackerrase4705712017-07-21 13:57:14 +10004245 /* Enable TM so we can read the TM SPRs */
4246 mtmsr(mfmsr() | MSR_TM);
Paul Mackerras46a704f2017-06-15 16:10:27 +10004247 current->thread.tm_tfhar = mfspr(SPRN_TFHAR);
4248 current->thread.tm_tfiar = mfspr(SPRN_TFIAR);
4249 current->thread.tm_texasr = mfspr(SPRN_TEXASR);
4250 current->thread.regs->msr &= ~MSR_TM;
4251 }
4252#endif
4253
Paul Mackerras7aa15842018-04-20 19:53:22 +10004254 /*
4255 * Force online to 1 for the sake of old userspace which doesn't
4256 * set it.
4257 */
4258 if (!vcpu->arch.online) {
4259 atomic_inc(&vcpu->arch.vcore->online_count);
4260 vcpu->arch.online = 1;
4261 }
4262
Scott Wood25051b5a2011-11-08 18:23:23 -06004263 kvmppc_core_prepare_to_enter(vcpu);
4264
Paul Mackerras19ccb762011-07-23 17:42:46 +10004265 /* No need to go into the guest when all we'll do is come back out */
4266 if (signal_pending(current)) {
4267 run->exit_reason = KVM_EXIT_INTR;
4268 return -EINTR;
4269 }
4270
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004271 kvm = vcpu->kvm;
4272 atomic_inc(&kvm->arch.vcpus_running);
4273 /* Order vcpus_running vs. mmu_ready, see kvmppc_alloc_reset_hpt */
Paul Mackerras32fad282012-05-04 02:32:53 +00004274 smp_mb();
4275
Anton Blanchard579e6332015-10-29 11:44:09 +11004276 flush_all_to_thread(current);
4277
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004278 /* Save userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004279 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4280 ebb_regs[0] = mfspr(SPRN_EBBHR);
4281 ebb_regs[1] = mfspr(SPRN_EBBRR);
4282 ebb_regs[2] = mfspr(SPRN_BESCR);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004283 user_tar = mfspr(SPRN_TAR);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004284 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004285 user_vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004286
Paul Mackerras19ccb762011-07-23 17:42:46 +10004287 vcpu->arch.wqp = &vcpu->arch.vcore->wq;
Leonardo Bras8a9c8922019-11-26 19:36:30 -03004288 vcpu->arch.pgdir = kvm->mm->pgd;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004289 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004290
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004291 do {
Paul Mackerras8d9fcac2018-10-19 20:44:04 +11004292 /*
4293 * The early POWER9 chips that can't mix radix and HPT threads
4294 * on the same core also need the workaround for the problem
4295 * where the TLB would prefetch entries in the guest exit path
4296 * for radix guests using the guest PIDR value and LPID 0.
4297 * The workaround is in the old path (kvmppc_run_vcpu())
4298 * but not the new path (kvmhv_run_single_vcpu()).
4299 */
4300 if (kvm->arch.threads_indep && kvm_is_radix(kvm) &&
4301 !no_mixing_hpt_and_radix)
Paul Mackerras360cae32018-10-08 16:31:04 +11004302 r = kvmhv_run_single_vcpu(run, vcpu, ~(u64)0,
4303 vcpu->arch.vcore->lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004304 else
4305 r = kvmppc_run_vcpu(run, vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004306
4307 if (run->exit_reason == KVM_EXIT_PAPR_HCALL &&
4308 !(vcpu->arch.shregs.msr & MSR_PR)) {
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004309 trace_kvm_hcall_enter(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004310 r = kvmppc_pseries_do_hcall(vcpu);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004311 trace_kvm_hcall_exit(vcpu, r);
Scott Wood7e28e60e2011-11-08 18:23:20 -06004312 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004313 } else if (r == RESUME_PAGE_FAULT) {
Paul Mackerras432953b2017-11-09 15:37:10 +11004314 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004315 r = kvmppc_book3s_hv_page_fault(run, vcpu,
4316 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
Paul Mackerras432953b2017-11-09 15:37:10 +11004317 srcu_read_unlock(&kvm->srcu, srcu_idx);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004318 } else if (r == RESUME_PASSTHROUGH) {
Paul Mackerras03f95332019-02-04 22:07:20 +11004319 if (WARN_ON(xics_on_xive()))
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004320 r = H_SUCCESS;
4321 else
4322 r = kvmppc_xics_rm_complete(vcpu, 0);
4323 }
Greg Kurze59d24e2014-02-06 17:36:56 +01004324 } while (is_kvmppc_resume_guest(r));
Paul Mackerras32fad282012-05-04 02:32:53 +00004325
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004326 /* Restore userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004327 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4328 mtspr(SPRN_EBBHR, ebb_regs[0]);
4329 mtspr(SPRN_EBBRR, ebb_regs[1]);
4330 mtspr(SPRN_BESCR, ebb_regs[2]);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004331 mtspr(SPRN_TAR, user_tar);
4332 mtspr(SPRN_FSCR, current->thread.fscr);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004333 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004334 mtspr(SPRN_VRSAVE, user_vrsave);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004335
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004336 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras432953b2017-11-09 15:37:10 +11004337 atomic_dec(&kvm->arch.vcpus_running);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004338 return r;
4339}
4340
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004341static void kvmppc_add_seg_page_size(struct kvm_ppc_one_seg_page_size **sps,
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004342 int shift, int sllp)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004343{
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004344 (*sps)->page_shift = shift;
4345 (*sps)->slb_enc = sllp;
4346 (*sps)->enc[0].page_shift = shift;
4347 (*sps)->enc[0].pte_enc = kvmppc_pgsize_lp_encoding(shift, shift);
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304348 /*
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004349 * Add 16MB MPSS support (may get filtered out by userspace)
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304350 */
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004351 if (shift != 24) {
4352 int penc = kvmppc_pgsize_lp_encoding(shift, 24);
4353 if (penc != -1) {
4354 (*sps)->enc[1].page_shift = 24;
4355 (*sps)->enc[1].pte_enc = penc;
4356 }
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304357 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004358 (*sps)++;
4359}
4360
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304361static int kvm_vm_ioctl_get_smmu_info_hv(struct kvm *kvm,
4362 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004363{
4364 struct kvm_ppc_one_seg_page_size *sps;
4365
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004366 /*
Paul Mackerrase3bfed12017-08-25 19:53:39 +10004367 * POWER7, POWER8 and POWER9 all support 32 storage keys for data.
4368 * POWER7 doesn't support keys for instruction accesses,
4369 * POWER8 and POWER9 do.
4370 */
4371 info->data_keys = 32;
4372 info->instr_keys = cpu_has_feature(CPU_FTR_ARCH_207S) ? 32 : 0;
4373
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004374 /* POWER7, 8 and 9 all have 1T segments and 32-entry SLB */
4375 info->flags = KVM_PPC_PAGE_SIZES_REAL | KVM_PPC_1T_SEGMENTS;
4376 info->slb_size = 32;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004377
4378 /* We only support these sizes for now, and no muti-size segments */
4379 sps = &info->sps[0];
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004380 kvmppc_add_seg_page_size(&sps, 12, 0);
4381 kvmppc_add_seg_page_size(&sps, 16, SLB_VSID_L | SLB_VSID_LP_01);
4382 kvmppc_add_seg_page_size(&sps, 24, SLB_VSID_L);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004383
Paul Mackerras901f8c32018-10-08 14:24:30 +11004384 /* If running as a nested hypervisor, we don't support HPT guests */
4385 if (kvmhv_on_pseries())
4386 info->flags |= KVM_PPC_NO_HASH;
4387
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004388 return 0;
4389}
4390
Paul Mackerras82ed3612011-12-15 02:03:22 +00004391/*
4392 * Get (and clear) the dirty memory log for a memory slot.
4393 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304394static int kvm_vm_ioctl_get_dirty_log_hv(struct kvm *kvm,
4395 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004396{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004397 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004398 struct kvm_memory_slot *memslot;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004399 int i, r;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004400 unsigned long n;
Paul Mackerrase641a312017-10-26 16:39:19 +11004401 unsigned long *buf, *p;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004402 struct kvm_vcpu *vcpu;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004403
4404 mutex_lock(&kvm->slots_lock);
4405
4406 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07004407 if (log->slot >= KVM_USER_MEM_SLOTS)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004408 goto out;
4409
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004410 slots = kvm_memslots(kvm);
4411 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004412 r = -ENOENT;
4413 if (!memslot->dirty_bitmap)
4414 goto out;
4415
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004416 /*
Paul Mackerrase641a312017-10-26 16:39:19 +11004417 * Use second half of bitmap area because both HPT and radix
4418 * accumulate bits in the first half.
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004419 */
Paul Mackerras82ed3612011-12-15 02:03:22 +00004420 n = kvm_dirty_bitmap_bytes(memslot);
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004421 buf = memslot->dirty_bitmap + n / sizeof(long);
4422 memset(buf, 0, n);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004423
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004424 if (kvm_is_radix(kvm))
4425 r = kvmppc_hv_get_dirty_log_radix(kvm, memslot, buf);
4426 else
4427 r = kvmppc_hv_get_dirty_log_hpt(kvm, memslot, buf);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004428 if (r)
4429 goto out;
4430
Paul Mackerrase641a312017-10-26 16:39:19 +11004431 /*
4432 * We accumulate dirty bits in the first half of the
4433 * memslot's dirty_bitmap area, for when pages are paged
4434 * out or modified by the host directly. Pick up these
4435 * bits and add them to the map.
4436 */
4437 p = memslot->dirty_bitmap;
4438 for (i = 0; i < n / sizeof(long); ++i)
4439 buf[i] |= xchg(&p[i], 0);
4440
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004441 /* Harvest dirty bits from VPA and DTL updates */
4442 /* Note: we never modify the SLB shadow buffer areas */
4443 kvm_for_each_vcpu(i, vcpu, kvm) {
4444 spin_lock(&vcpu->arch.vpa_update_lock);
4445 kvmppc_harvest_vpa_dirty(&vcpu->arch.vpa, memslot, buf);
4446 kvmppc_harvest_vpa_dirty(&vcpu->arch.dtl, memslot, buf);
4447 spin_unlock(&vcpu->arch.vpa_update_lock);
4448 }
4449
Paul Mackerras82ed3612011-12-15 02:03:22 +00004450 r = -EFAULT;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004451 if (copy_to_user(log->dirty_bitmap, buf, n))
Paul Mackerras82ed3612011-12-15 02:03:22 +00004452 goto out;
4453
4454 r = 0;
4455out:
4456 mutex_unlock(&kvm->slots_lock);
4457 return r;
4458}
4459
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304460static void kvmppc_core_free_memslot_hv(struct kvm_memory_slot *free,
4461 struct kvm_memory_slot *dont)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004462{
4463 if (!dont || free->arch.rmap != dont->arch.rmap) {
4464 vfree(free->arch.rmap);
4465 free->arch.rmap = NULL;
4466 }
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004467}
4468
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304469static int kvmppc_core_create_memslot_hv(struct kvm_memory_slot *slot,
4470 unsigned long npages)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004471{
Kees Cookfad953c2018-06-12 14:27:37 -07004472 slot->arch.rmap = vzalloc(array_size(npages, sizeof(*slot->arch.rmap)));
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004473 if (!slot->arch.rmap)
4474 return -ENOMEM;
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004475
4476 return 0;
4477}
4478
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304479static int kvmppc_core_prepare_memory_region_hv(struct kvm *kvm,
4480 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02004481 const struct kvm_userspace_memory_region *mem)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004482{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004483 return 0;
4484}
4485
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304486static void kvmppc_core_commit_memory_region_hv(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02004487 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004488 const struct kvm_memory_slot *old,
Bharata B Raof032b732018-12-12 15:15:30 +11004489 const struct kvm_memory_slot *new,
4490 enum kvm_mr_change change)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004491{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004492 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004493
Yongji Xiea56ee9f2016-11-04 13:55:12 +08004494 /*
4495 * If we are making a new memslot, it might make
4496 * some address that was previously cached as emulated
4497 * MMIO be no longer emulated MMIO, so invalidate
4498 * all the caches of emulated MMIO translations.
4499 */
4500 if (npages)
4501 atomic64_inc(&kvm->arch.mmio_update);
Paul Mackerras5af3e9d2018-12-12 15:17:17 +11004502
4503 /*
4504 * For change == KVM_MR_MOVE or KVM_MR_DELETE, higher levels
4505 * have already called kvm_arch_flush_shadow_memslot() to
4506 * flush shadow mappings. For KVM_MR_CREATE we have no
4507 * previous mappings. So the only case to handle is
4508 * KVM_MR_FLAGS_ONLY when the KVM_MEM_LOG_DIRTY_PAGES bit
4509 * has been changed.
4510 * For radix guests, we flush on setting KVM_MEM_LOG_DIRTY_PAGES
4511 * to get rid of any THP PTEs in the partition-scoped page tables
4512 * so we can track dirtiness at the page level; we flush when
4513 * clearing KVM_MEM_LOG_DIRTY_PAGES so that we can go back to
4514 * using THP PTEs.
4515 */
4516 if (change == KVM_MR_FLAGS_ONLY && kvm_is_radix(kvm) &&
4517 ((new->flags ^ old->flags) & KVM_MEM_LOG_DIRTY_PAGES))
4518 kvmppc_radix_flush_memslot(kvm, old);
Bharata B Raoc3262252019-11-25 08:36:29 +05304519 /*
4520 * If UV hasn't yet called H_SVM_INIT_START, don't register memslots.
4521 */
4522 if (!kvm->arch.secure_guest)
4523 return;
4524
4525 switch (change) {
4526 case KVM_MR_CREATE:
4527 if (kvmppc_uvmem_slot_init(kvm, new))
4528 return;
4529 uv_register_mem_slot(kvm->arch.lpid,
4530 new->base_gfn << PAGE_SHIFT,
4531 new->npages * PAGE_SIZE,
4532 0, new->id);
4533 break;
4534 case KVM_MR_DELETE:
4535 uv_unregister_mem_slot(kvm->arch.lpid, old->id);
4536 kvmppc_uvmem_slot_free(kvm, old);
4537 break;
4538 default:
4539 /* TODO: Handle KVM_MR_MOVE */
4540 break;
4541 }
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004542}
4543
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004544/*
4545 * Update LPCR values in kvm->arch and in vcores.
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004546 * Caller must hold kvm->arch.mmu_setup_lock (for mutual exclusion
4547 * of kvm->arch.lpcr update).
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004548 */
4549void kvmppc_update_lpcr(struct kvm *kvm, unsigned long lpcr, unsigned long mask)
4550{
4551 long int i;
4552 u32 cores_done = 0;
4553
4554 if ((kvm->arch.lpcr & mask) == lpcr)
4555 return;
4556
4557 kvm->arch.lpcr = (kvm->arch.lpcr & ~mask) | lpcr;
4558
4559 for (i = 0; i < KVM_MAX_VCORES; ++i) {
4560 struct kvmppc_vcore *vc = kvm->arch.vcores[i];
4561 if (!vc)
4562 continue;
4563 spin_lock(&vc->lock);
4564 vc->lpcr = (vc->lpcr & ~mask) | lpcr;
4565 spin_unlock(&vc->lock);
4566 if (++cores_done >= kvm->arch.online_vcores)
4567 break;
4568 }
4569}
4570
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304571static void kvmppc_mmu_destroy_hv(struct kvm_vcpu *vcpu)
4572{
4573 return;
4574}
4575
Paul Mackerrasded13fc2017-11-22 14:38:53 +11004576void kvmppc_setup_partition_table(struct kvm *kvm)
Paul Mackerras7a840842016-11-16 22:25:20 +11004577{
4578 unsigned long dw0, dw1;
4579
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004580 if (!kvm_is_radix(kvm)) {
4581 /* PS field - page size for VRMA */
4582 dw0 = ((kvm->arch.vrma_slb_v & SLB_VSID_L) >> 1) |
4583 ((kvm->arch.vrma_slb_v & SLB_VSID_LP) << 1);
4584 /* HTABSIZE and HTABORG fields */
4585 dw0 |= kvm->arch.sdr1;
Paul Mackerras7a840842016-11-16 22:25:20 +11004586
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004587 /* Second dword as set by userspace */
4588 dw1 = kvm->arch.process_table;
4589 } else {
4590 dw0 = PATB_HR | radix__get_tree_size() |
4591 __pa(kvm->arch.pgtable) | RADIX_PGD_INDEX_SIZE;
4592 dw1 = PATB_GR | kvm->arch.process_table;
4593 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004594 kvmhv_set_ptbl_entry(kvm->arch.lpid, dw0, dw1);
Paul Mackerras7a840842016-11-16 22:25:20 +11004595}
4596
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004597/*
4598 * Set up HPT (hashed page table) and RMA (real-mode area).
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004599 * Must be called with kvm->arch.mmu_setup_lock held.
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004600 */
Paul Mackerras32fad282012-05-04 02:32:53 +00004601static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004602{
4603 int err = 0;
4604 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004605 unsigned long hva;
4606 struct kvm_memory_slot *memslot;
4607 struct vm_area_struct *vma;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004608 unsigned long lpcr = 0, senc;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004609 unsigned long psize, porder;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004610 int srcu_idx;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004611
Paul Mackerras32fad282012-05-04 02:32:53 +00004612 /* Allocate hashed page table (if not done already) and reset it */
David Gibson3f9d4f52016-12-20 16:49:00 +11004613 if (!kvm->arch.hpt.virt) {
David Gibsonaae07772016-12-20 16:49:02 +11004614 int order = KVM_DEFAULT_HPT_ORDER;
4615 struct kvm_hpt_info info;
4616
4617 err = kvmppc_allocate_hpt(&info, order);
4618 /* If we get here, it means userspace didn't specify a
4619 * size explicitly. So, try successively smaller
4620 * sizes if the default failed. */
4621 while ((err == -ENOMEM) && --order >= PPC_MIN_HPT_ORDER)
4622 err = kvmppc_allocate_hpt(&info, order);
4623
4624 if (err < 0) {
Paul Mackerras32fad282012-05-04 02:32:53 +00004625 pr_err("KVM: Couldn't alloc HPT\n");
4626 goto out;
4627 }
David Gibsonaae07772016-12-20 16:49:02 +11004628
4629 kvmppc_set_hpt(kvm, &info);
Paul Mackerras32fad282012-05-04 02:32:53 +00004630 }
4631
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004632 /* Look up the memslot for guest physical address 0 */
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004633 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004634 memslot = gfn_to_memslot(kvm, 0);
4635
4636 /* We must have some memory at 0 by now */
4637 err = -EINVAL;
4638 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004639 goto out_srcu;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004640
4641 /* Look up the VMA for the start of this memory slot */
4642 hva = memslot->userspace_addr;
Leonardo Bras8a9c8922019-11-26 19:36:30 -03004643 down_read(&kvm->mm->mmap_sem);
4644 vma = find_vma(kvm->mm, hva);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004645 if (!vma || vma->vm_start > hva || (vma->vm_flags & VM_IO))
4646 goto up_out;
4647
4648 psize = vma_kernel_pagesize(vma);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004649
Leonardo Bras8a9c8922019-11-26 19:36:30 -03004650 up_read(&kvm->mm->mmap_sem);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004651
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004652 /* We can handle 4k, 64k or 16M pages in the VRMA */
Paul Mackerrasdebd5742018-03-02 15:38:04 +11004653 if (psize >= 0x1000000)
4654 psize = 0x1000000;
4655 else if (psize >= 0x10000)
4656 psize = 0x10000;
4657 else
4658 psize = 0x1000;
4659 porder = __ilog2(psize);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004660
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004661 senc = slb_pgsize_encoding(psize);
4662 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
4663 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004664 /* Create HPTEs in the hash page table for the VRMA */
4665 kvmppc_map_vrma(vcpu, memslot, porder);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004666
Paul Mackerras7a840842016-11-16 22:25:20 +11004667 /* Update VRMASD field in the LPCR */
4668 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
4669 /* the -4 is to account for senc values starting at 0x10 */
4670 lpcr = senc << (LPCR_VRMASD_SH - 4);
4671 kvmppc_update_lpcr(kvm, lpcr, LPCR_VRMASD);
Paul Mackerras7a840842016-11-16 22:25:20 +11004672 }
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004673
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004674 /* Order updates to kvm->arch.lpcr etc. vs. mmu_ready */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004675 smp_wmb();
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004676 err = 0;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004677 out_srcu:
4678 srcu_read_unlock(&kvm->srcu, srcu_idx);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004679 out:
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004680 return err;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004681
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004682 up_out:
Leonardo Bras8a9c8922019-11-26 19:36:30 -03004683 up_read(&kvm->mm->mmap_sem);
Lai Jiangshan505d6422013-03-16 00:50:49 +08004684 goto out_srcu;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004685}
4686
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004687/*
4688 * Must be called with kvm->arch.mmu_setup_lock held and
4689 * mmu_ready = 0 and no vcpus running.
4690 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004691int kvmppc_switch_mmu_to_hpt(struct kvm *kvm)
4692{
Paul Mackerrasaa069a92018-09-21 20:02:01 +10004693 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004694 kvmhv_release_all_nested(kvm);
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004695 kvmppc_rmap_reset(kvm);
4696 kvm->arch.process_table = 0;
4697 /* Mutual exclusion with kvm_unmap_hva_range etc. */
4698 spin_lock(&kvm->mmu_lock);
4699 kvm->arch.radix = 0;
4700 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10004701 kvmppc_free_radix(kvm);
4702 kvmppc_update_lpcr(kvm, LPCR_VPM1,
4703 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Paul Mackerras18c36402017-09-13 16:00:10 +10004704 return 0;
4705}
4706
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004707/*
4708 * Must be called with kvm->arch.mmu_setup_lock held and
4709 * mmu_ready = 0 and no vcpus running.
4710 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004711int kvmppc_switch_mmu_to_radix(struct kvm *kvm)
4712{
4713 int err;
4714
4715 err = kvmppc_init_vm_radix(kvm);
4716 if (err)
4717 return err;
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004718 kvmppc_rmap_reset(kvm);
4719 /* Mutual exclusion with kvm_unmap_hva_range etc. */
4720 spin_lock(&kvm->mmu_lock);
4721 kvm->arch.radix = 1;
4722 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10004723 kvmppc_free_hpt(&kvm->arch.hpt);
4724 kvmppc_update_lpcr(kvm, LPCR_UPRT | LPCR_GTSE | LPCR_HR,
4725 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Paul Mackerras18c36402017-09-13 16:00:10 +10004726 return 0;
4727}
4728
Suresh Warrier79b6c242015-12-17 14:59:06 -06004729#ifdef CONFIG_KVM_XICS
4730/*
4731 * Allocate a per-core structure for managing state about which cores are
4732 * running in the host versus the guest and for exchanging data between
4733 * real mode KVM and CPU running in the host.
4734 * This is only done for the first VM.
4735 * The allocated structure stays even if all VMs have stopped.
4736 * It is only freed when the kvm-hv module is unloaded.
4737 * It's OK for this routine to fail, we just don't support host
4738 * core operations like redirecting H_IPI wakeups.
4739 */
4740void kvmppc_alloc_host_rm_ops(void)
4741{
4742 struct kvmppc_host_rm_ops *ops;
4743 unsigned long l_ops;
4744 int cpu, core;
4745 int size;
4746
4747 /* Not the first time here ? */
4748 if (kvmppc_host_rm_ops_hv != NULL)
4749 return;
4750
4751 ops = kzalloc(sizeof(struct kvmppc_host_rm_ops), GFP_KERNEL);
4752 if (!ops)
4753 return;
4754
4755 size = cpu_nr_cores() * sizeof(struct kvmppc_host_rm_core);
4756 ops->rm_core = kzalloc(size, GFP_KERNEL);
4757
4758 if (!ops->rm_core) {
4759 kfree(ops);
4760 return;
4761 }
4762
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004763 cpus_read_lock();
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004764
Suresh Warrier79b6c242015-12-17 14:59:06 -06004765 for (cpu = 0; cpu < nr_cpu_ids; cpu += threads_per_core) {
4766 if (!cpu_online(cpu))
4767 continue;
4768
4769 core = cpu >> threads_shift;
4770 ops->rm_core[core].rm_state.in_host = 1;
4771 }
4772
Suresh Warrier0c2a6602015-12-17 14:59:09 -06004773 ops->vcpu_kick = kvmppc_fast_vcpu_kick_hv;
4774
Suresh Warrier79b6c242015-12-17 14:59:06 -06004775 /*
4776 * Make the contents of the kvmppc_host_rm_ops structure visible
4777 * to other CPUs before we assign it to the global variable.
4778 * Do an atomic assignment (no locks used here), but if someone
4779 * beats us to it, just free our copy and return.
4780 */
4781 smp_wmb();
4782 l_ops = (unsigned long) ops;
4783
4784 if (cmpxchg64((unsigned long *)&kvmppc_host_rm_ops_hv, 0, l_ops)) {
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004785 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06004786 kfree(ops->rm_core);
4787 kfree(ops);
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004788 return;
Suresh Warrier79b6c242015-12-17 14:59:06 -06004789 }
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004790
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004791 cpuhp_setup_state_nocalls_cpuslocked(CPUHP_KVM_PPC_BOOK3S_PREPARE,
4792 "ppc/kvm_book3s:prepare",
4793 kvmppc_set_host_core,
4794 kvmppc_clear_host_core);
4795 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06004796}
4797
4798void kvmppc_free_host_rm_ops(void)
4799{
4800 if (kvmppc_host_rm_ops_hv) {
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01004801 cpuhp_remove_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE);
Suresh Warrier79b6c242015-12-17 14:59:06 -06004802 kfree(kvmppc_host_rm_ops_hv->rm_core);
4803 kfree(kvmppc_host_rm_ops_hv);
4804 kvmppc_host_rm_ops_hv = NULL;
4805 }
4806}
4807#endif
4808
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304809static int kvmppc_core_init_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004810{
Paul Mackerras32fad282012-05-04 02:32:53 +00004811 unsigned long lpcr, lpid;
Paul Mackerrase23a8082015-03-28 14:21:01 +11004812 char buf[32];
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004813 int ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004814
Bharata B Raoca9f4942019-11-25 08:36:26 +05304815 mutex_init(&kvm->arch.uvmem_lock);
4816 INIT_LIST_HEAD(&kvm->arch.uvmem_pfns);
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004817 mutex_init(&kvm->arch.mmu_setup_lock);
4818
Paul Mackerras32fad282012-05-04 02:32:53 +00004819 /* Allocate the guest's logical partition ID */
4820
4821 lpid = kvmppc_alloc_lpid();
Chen Gang5d226ae2013-07-22 14:32:35 +08004822 if ((long)lpid < 0)
Paul Mackerras32fad282012-05-04 02:32:53 +00004823 return -ENOMEM;
4824 kvm->arch.lpid = lpid;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004825
Suresh Warrier79b6c242015-12-17 14:59:06 -06004826 kvmppc_alloc_host_rm_ops();
4827
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004828 kvmhv_vm_nested_init(kvm);
4829
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004830 /*
4831 * Since we don't flush the TLB when tearing down a VM,
4832 * and this lpid might have previously been used,
4833 * make sure we flush on each core before running the new VM.
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004834 * On POWER9, the tlbie in mmu_partition_table_set_entry()
4835 * does this flush for us.
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004836 */
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004837 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4838 cpumask_setall(&kvm->arch.need_tlb_flush);
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004839
Paul Mackerras699a0ea2014-06-02 11:02:59 +10004840 /* Start out with the default set of hcalls enabled */
4841 memcpy(kvm->arch.enabled_hcalls, default_enabled_hcalls,
4842 sizeof(kvm->arch.enabled_hcalls));
4843
Paul Mackerras7a840842016-11-16 22:25:20 +11004844 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4845 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004846
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004847 /* Init LPCR for virtual RMA mode */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11004848 if (cpu_has_feature(CPU_FTR_HVMODE)) {
4849 kvm->arch.host_lpid = mfspr(SPRN_LPID);
4850 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
4851 lpcr &= LPCR_PECE | LPCR_LPES;
4852 } else {
4853 lpcr = 0;
4854 }
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004855 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
4856 LPCR_VPM0 | LPCR_VPM1;
4857 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
4858 (VRMA_VSID << SLB_VSID_SHIFT_1T);
4859 /* On POWER8 turn on online bit to enable PURR/SPURR */
4860 if (cpu_has_feature(CPU_FTR_ARCH_207S))
4861 lpcr |= LPCR_ONL;
Paul Mackerras84f71392016-11-22 14:30:14 +11004862 /*
4863 * On POWER9, VPM0 bit is reserved (VPM0=1 behaviour is assumed)
4864 * Set HVICE bit to enable hypervisor virtualization interrupts.
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004865 * Set HEIC to prevent OS interrupts to go to hypervisor (should
4866 * be unnecessary but better safe than sorry in case we re-enable
4867 * EE in HV mode with this LPCR still set)
Paul Mackerras84f71392016-11-22 14:30:14 +11004868 */
4869 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerras7a840842016-11-16 22:25:20 +11004870 lpcr &= ~LPCR_VPM0;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004871 lpcr |= LPCR_HVICE | LPCR_HEIC;
4872
4873 /*
4874 * If xive is enabled, we route 0x500 interrupts directly
4875 * to the guest.
4876 */
Paul Mackerras03f95332019-02-04 22:07:20 +11004877 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004878 lpcr |= LPCR_LPES;
Paul Mackerras84f71392016-11-22 14:30:14 +11004879 }
4880
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004881 /*
Paul Mackerras18c36402017-09-13 16:00:10 +10004882 * If the host uses radix, the guest starts out as radix.
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004883 */
4884 if (radix_enabled()) {
4885 kvm->arch.radix = 1;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004886 kvm->arch.mmu_ready = 1;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004887 lpcr &= ~LPCR_VPM1;
4888 lpcr |= LPCR_UPRT | LPCR_GTSE | LPCR_HR;
4889 ret = kvmppc_init_vm_radix(kvm);
4890 if (ret) {
4891 kvmppc_free_lpid(kvm->arch.lpid);
4892 return ret;
4893 }
4894 kvmppc_setup_partition_table(kvm);
4895 }
4896
Paul Mackerras9e368f22011-06-29 00:40:08 +00004897 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004898
David Gibson5e985962016-12-20 16:49:05 +11004899 /* Initialization for future HPT resizes */
4900 kvm->arch.resize_hpt = NULL;
4901
Paul Mackerras512691d2012-10-15 01:15:41 +00004902 /*
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004903 * Work out how many sets the TLB has, for the use of
4904 * the TLB invalidation loop in book3s_hv_rmhandlers.S.
4905 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004906 if (radix_enabled())
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004907 kvm->arch.tlb_sets = POWER9_TLB_SETS_RADIX; /* 128 */
4908 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004909 kvm->arch.tlb_sets = POWER9_TLB_SETS_HASH; /* 256 */
4910 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
4911 kvm->arch.tlb_sets = POWER8_TLB_SETS; /* 512 */
4912 else
4913 kvm->arch.tlb_sets = POWER7_TLB_SETS; /* 128 */
4914
4915 /*
Michael Ellerman441c19c2014-05-23 18:15:25 +10004916 * Track that we now have a HV mode VM active. This blocks secondary
4917 * CPU threads from coming online.
Paul Mackerras516f7892017-10-16 16:11:57 +11004918 * On POWER9, we only need to do this if the "indep_threads_mode"
4919 * module parameter has been set to N.
Paul Mackerras512691d2012-10-15 01:15:41 +00004920 */
Paul Mackerras360cae32018-10-08 16:31:04 +11004921 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
4922 if (!indep_threads_mode && !cpu_has_feature(CPU_FTR_HVMODE)) {
4923 pr_warn("KVM: Ignoring indep_threads_mode=N in nested hypervisor\n");
4924 kvm->arch.threads_indep = true;
4925 } else {
4926 kvm->arch.threads_indep = indep_threads_mode;
4927 }
4928 }
Paul Mackerras516f7892017-10-16 16:11:57 +11004929 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004930 kvm_hv_vm_activated();
Paul Mackerras512691d2012-10-15 01:15:41 +00004931
Paul Mackerrase23a8082015-03-28 14:21:01 +11004932 /*
Paul Mackerras3c313522017-02-06 13:24:41 +11004933 * Initialize smt_mode depending on processor.
4934 * POWER8 and earlier have to use "strict" threading, where
4935 * all vCPUs in a vcore have to run on the same (sub)core,
4936 * whereas on POWER9 the threads can each run a different
4937 * guest.
4938 */
4939 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4940 kvm->arch.smt_mode = threads_per_subcore;
4941 else
4942 kvm->arch.smt_mode = 1;
Paul Mackerras57900692017-05-16 16:41:20 +10004943 kvm->arch.emul_smt_mode = 1;
Paul Mackerras3c313522017-02-06 13:24:41 +11004944
4945 /*
Paul Mackerrase23a8082015-03-28 14:21:01 +11004946 * Create a debugfs directory for the VM
4947 */
4948 snprintf(buf, sizeof(buf), "vm%d", current->pid);
4949 kvm->arch.debugfs_dir = debugfs_create_dir(buf, kvm_debugfs_dir);
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004950 kvmppc_mmu_debugfs_init(kvm);
Paul Mackerras9a94d3e2018-10-08 16:30:57 +11004951 if (radix_enabled())
4952 kvmhv_radix_debugfs_init(kvm);
Paul Mackerrase23a8082015-03-28 14:21:01 +11004953
David Gibson54738c02011-06-29 00:22:41 +00004954 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004955}
4956
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304957static void kvmppc_free_vcores(struct kvm *kvm)
4958{
4959 long int i;
4960
Paul Mackerras23316312015-10-21 16:03:14 +11004961 for (i = 0; i < KVM_MAX_VCORES; ++i)
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304962 kfree(kvm->arch.vcores[i]);
4963 kvm->arch.online_vcores = 0;
4964}
4965
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304966static void kvmppc_core_destroy_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004967{
Paul Mackerrase23a8082015-03-28 14:21:01 +11004968 debugfs_remove_recursive(kvm->arch.debugfs_dir);
4969
Paul Mackerras516f7892017-10-16 16:11:57 +11004970 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004971 kvm_hv_vm_deactivated();
Paul Mackerras512691d2012-10-15 01:15:41 +00004972
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304973 kvmppc_free_vcores(kvm);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004974
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004975
Paul Mackerras5a319352017-01-30 21:21:46 +11004976 if (kvm_is_radix(kvm))
4977 kvmppc_free_radix(kvm);
4978 else
David Gibsonaae07772016-12-20 16:49:02 +11004979 kvmppc_free_hpt(&kvm->arch.hpt);
Suresh Warrierc57875f2016-08-19 15:35:50 +10004980
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004981 /* Perform global invalidation and return lpid to the pool */
4982 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasaa069a92018-09-21 20:02:01 +10004983 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004984 kvmhv_release_all_nested(kvm);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004985 kvm->arch.process_table = 0;
Paul Mackerrasd89c69f2019-12-18 11:43:06 +11004986 if (kvm->arch.secure_guest)
4987 uv_svm_terminate(kvm->arch.lpid);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004988 kvmhv_set_ptbl_entry(kvm->arch.lpid, 0, 0);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004989 }
Bharata B Raoca9f4942019-11-25 08:36:26 +05304990
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004991 kvmppc_free_lpid(kvm->arch.lpid);
4992
Suresh Warrierc57875f2016-08-19 15:35:50 +10004993 kvmppc_free_pimap(kvm);
Paul Mackerrasde56a942011-06-29 00:21:34 +00004994}
4995
4996/* We don't need to emulate any privileged instructions or dcbz */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304997static int kvmppc_core_emulate_op_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
4998 unsigned int inst, int *advance)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004999{
5000 return EMULATE_FAIL;
5001}
5002
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305003static int kvmppc_core_emulate_mtspr_hv(struct kvm_vcpu *vcpu, int sprn,
5004 ulong spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005005{
5006 return EMULATE_FAIL;
5007}
5008
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305009static int kvmppc_core_emulate_mfspr_hv(struct kvm_vcpu *vcpu, int sprn,
5010 ulong *spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005011{
5012 return EMULATE_FAIL;
5013}
5014
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305015static int kvmppc_core_check_processor_compat_hv(void)
5016{
Paul Mackerrasde760db2018-10-08 16:31:16 +11005017 if (cpu_has_feature(CPU_FTR_HVMODE) &&
5018 cpu_has_feature(CPU_FTR_ARCH_206))
5019 return 0;
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10005020
Paul Mackerrasde760db2018-10-08 16:31:16 +11005021 /* POWER9 in radix mode is capable of being a nested hypervisor. */
5022 if (cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled())
5023 return 0;
5024
5025 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305026}
5027
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005028#ifdef CONFIG_KVM_XICS
5029
5030void kvmppc_free_pimap(struct kvm *kvm)
5031{
5032 kfree(kvm->arch.pimap);
5033}
5034
Suresh Warrierc57875f2016-08-19 15:35:50 +10005035static struct kvmppc_passthru_irqmap *kvmppc_alloc_pimap(void)
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005036{
5037 return kzalloc(sizeof(struct kvmppc_passthru_irqmap), GFP_KERNEL);
5038}
Suresh Warrierc57875f2016-08-19 15:35:50 +10005039
5040static int kvmppc_set_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
5041{
5042 struct irq_desc *desc;
5043 struct kvmppc_irq_map *irq_map;
5044 struct kvmppc_passthru_irqmap *pimap;
5045 struct irq_chip *chip;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005046 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005047
Suresh Warrier644abbb2016-08-19 15:35:54 +10005048 if (!kvm_irq_bypass)
5049 return 1;
5050
Suresh Warrierc57875f2016-08-19 15:35:50 +10005051 desc = irq_to_desc(host_irq);
5052 if (!desc)
5053 return -EIO;
5054
5055 mutex_lock(&kvm->lock);
5056
5057 pimap = kvm->arch.pimap;
5058 if (pimap == NULL) {
5059 /* First call, allocate structure to hold IRQ map */
5060 pimap = kvmppc_alloc_pimap();
5061 if (pimap == NULL) {
5062 mutex_unlock(&kvm->lock);
5063 return -ENOMEM;
5064 }
5065 kvm->arch.pimap = pimap;
5066 }
5067
5068 /*
5069 * For now, we only support interrupts for which the EOI operation
5070 * is an OPAL call followed by a write to XIRR, since that's
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005071 * what our real-mode EOI code does, or a XIVE interrupt
Suresh Warrierc57875f2016-08-19 15:35:50 +10005072 */
5073 chip = irq_data_get_irq_chip(&desc->irq_data);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005074 if (!chip || !(is_pnv_opal_msi(chip) || is_xive_irq(chip))) {
Suresh Warrierc57875f2016-08-19 15:35:50 +10005075 pr_warn("kvmppc_set_passthru_irq_hv: Could not assign IRQ map for (%d,%d)\n",
5076 host_irq, guest_gsi);
5077 mutex_unlock(&kvm->lock);
5078 return -ENOENT;
5079 }
5080
5081 /*
5082 * See if we already have an entry for this guest IRQ number.
5083 * If it's mapped to a hardware IRQ number, that's an error,
5084 * otherwise re-use this entry.
5085 */
5086 for (i = 0; i < pimap->n_mapped; i++) {
5087 if (guest_gsi == pimap->mapped[i].v_hwirq) {
5088 if (pimap->mapped[i].r_hwirq) {
5089 mutex_unlock(&kvm->lock);
5090 return -EINVAL;
5091 }
5092 break;
5093 }
5094 }
5095
5096 if (i == KVMPPC_PIRQ_MAPPED) {
5097 mutex_unlock(&kvm->lock);
5098 return -EAGAIN; /* table is full */
5099 }
5100
5101 irq_map = &pimap->mapped[i];
5102
5103 irq_map->v_hwirq = guest_gsi;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005104 irq_map->desc = desc;
5105
Suresh Warriere3c13e52016-08-19 15:35:51 +10005106 /*
5107 * Order the above two stores before the next to serialize with
5108 * the KVM real mode handler.
5109 */
5110 smp_wmb();
5111 irq_map->r_hwirq = desc->irq_data.hwirq;
5112
Suresh Warrierc57875f2016-08-19 15:35:50 +10005113 if (i == pimap->n_mapped)
5114 pimap->n_mapped++;
5115
Paul Mackerras03f95332019-02-04 22:07:20 +11005116 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005117 rc = kvmppc_xive_set_mapped(kvm, guest_gsi, desc);
5118 else
5119 kvmppc_xics_set_mapped(kvm, guest_gsi, desc->irq_data.hwirq);
5120 if (rc)
5121 irq_map->r_hwirq = 0;
Paul Mackerras5d375192016-08-19 15:35:56 +10005122
Suresh Warrierc57875f2016-08-19 15:35:50 +10005123 mutex_unlock(&kvm->lock);
5124
5125 return 0;
5126}
5127
5128static int kvmppc_clr_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
5129{
5130 struct irq_desc *desc;
5131 struct kvmppc_passthru_irqmap *pimap;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005132 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005133
Suresh Warrier644abbb2016-08-19 15:35:54 +10005134 if (!kvm_irq_bypass)
5135 return 0;
5136
Suresh Warrierc57875f2016-08-19 15:35:50 +10005137 desc = irq_to_desc(host_irq);
5138 if (!desc)
5139 return -EIO;
5140
5141 mutex_lock(&kvm->lock);
Markus Elfringa1c52e12017-01-20 11:00:08 +01005142 if (!kvm->arch.pimap)
5143 goto unlock;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005144
Suresh Warrierc57875f2016-08-19 15:35:50 +10005145 pimap = kvm->arch.pimap;
5146
5147 for (i = 0; i < pimap->n_mapped; i++) {
5148 if (guest_gsi == pimap->mapped[i].v_hwirq)
5149 break;
5150 }
5151
5152 if (i == pimap->n_mapped) {
5153 mutex_unlock(&kvm->lock);
5154 return -ENODEV;
5155 }
5156
Paul Mackerras03f95332019-02-04 22:07:20 +11005157 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005158 rc = kvmppc_xive_clr_mapped(kvm, guest_gsi, pimap->mapped[i].desc);
5159 else
5160 kvmppc_xics_clr_mapped(kvm, guest_gsi, pimap->mapped[i].r_hwirq);
Paul Mackerras5d375192016-08-19 15:35:56 +10005161
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005162 /* invalidate the entry (what do do on error from the above ?) */
Suresh Warrierc57875f2016-08-19 15:35:50 +10005163 pimap->mapped[i].r_hwirq = 0;
5164
5165 /*
5166 * We don't free this structure even when the count goes to
5167 * zero. The structure is freed when we destroy the VM.
5168 */
Markus Elfringa1c52e12017-01-20 11:00:08 +01005169 unlock:
Suresh Warrierc57875f2016-08-19 15:35:50 +10005170 mutex_unlock(&kvm->lock);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005171 return rc;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005172}
5173
5174static int kvmppc_irq_bypass_add_producer_hv(struct irq_bypass_consumer *cons,
5175 struct irq_bypass_producer *prod)
5176{
5177 int ret = 0;
5178 struct kvm_kernel_irqfd *irqfd =
5179 container_of(cons, struct kvm_kernel_irqfd, consumer);
5180
5181 irqfd->producer = prod;
5182
5183 ret = kvmppc_set_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5184 if (ret)
5185 pr_info("kvmppc_set_passthru_irq (irq %d, gsi %d) fails: %d\n",
5186 prod->irq, irqfd->gsi, ret);
5187
5188 return ret;
5189}
5190
5191static void kvmppc_irq_bypass_del_producer_hv(struct irq_bypass_consumer *cons,
5192 struct irq_bypass_producer *prod)
5193{
5194 int ret;
5195 struct kvm_kernel_irqfd *irqfd =
5196 container_of(cons, struct kvm_kernel_irqfd, consumer);
5197
5198 irqfd->producer = NULL;
5199
5200 /*
5201 * When producer of consumer is unregistered, we change back to
5202 * default external interrupt handling mode - KVM real mode
5203 * will switch back to host.
5204 */
5205 ret = kvmppc_clr_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5206 if (ret)
5207 pr_warn("kvmppc_clr_passthru_irq (irq %d, gsi %d) fails: %d\n",
5208 prod->irq, irqfd->gsi, ret);
5209}
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005210#endif
5211
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305212static long kvm_arch_vm_ioctl_hv(struct file *filp,
5213 unsigned int ioctl, unsigned long arg)
5214{
5215 struct kvm *kvm __maybe_unused = filp->private_data;
5216 void __user *argp = (void __user *)arg;
5217 long r;
5218
5219 switch (ioctl) {
5220
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305221 case KVM_PPC_ALLOCATE_HTAB: {
5222 u32 htab_order;
5223
5224 r = -EFAULT;
5225 if (get_user(htab_order, (u32 __user *)argp))
5226 break;
David Gibsonf98a8bf2016-12-20 16:49:03 +11005227 r = kvmppc_alloc_reset_hpt(kvm, htab_order);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305228 if (r)
5229 break;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305230 r = 0;
5231 break;
5232 }
5233
5234 case KVM_PPC_GET_HTAB_FD: {
5235 struct kvm_get_htab_fd ghf;
5236
5237 r = -EFAULT;
5238 if (copy_from_user(&ghf, argp, sizeof(ghf)))
5239 break;
5240 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
5241 break;
5242 }
5243
David Gibson5e985962016-12-20 16:49:05 +11005244 case KVM_PPC_RESIZE_HPT_PREPARE: {
5245 struct kvm_ppc_resize_hpt rhpt;
5246
5247 r = -EFAULT;
5248 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5249 break;
5250
5251 r = kvm_vm_ioctl_resize_hpt_prepare(kvm, &rhpt);
5252 break;
5253 }
5254
5255 case KVM_PPC_RESIZE_HPT_COMMIT: {
5256 struct kvm_ppc_resize_hpt rhpt;
5257
5258 r = -EFAULT;
5259 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5260 break;
5261
5262 r = kvm_vm_ioctl_resize_hpt_commit(kvm, &rhpt);
5263 break;
5264 }
5265
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305266 default:
5267 r = -ENOTTY;
5268 }
5269
5270 return r;
5271}
5272
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005273/*
5274 * List of hcall numbers to enable by default.
5275 * For compatibility with old userspace, we enable by default
5276 * all hcalls that were implemented before the hcall-enabling
5277 * facility was added. Note this list should not include H_RTAS.
5278 */
5279static unsigned int default_hcall_list[] = {
5280 H_REMOVE,
5281 H_ENTER,
5282 H_READ,
5283 H_PROTECT,
5284 H_BULK_REMOVE,
5285 H_GET_TCE,
5286 H_PUT_TCE,
5287 H_SET_DABR,
5288 H_SET_XDABR,
5289 H_CEDE,
5290 H_PROD,
5291 H_CONFER,
5292 H_REGISTER_VPA,
5293#ifdef CONFIG_KVM_XICS
5294 H_EOI,
5295 H_CPPR,
5296 H_IPI,
5297 H_IPOLL,
5298 H_XIRR,
5299 H_XIRR_X,
5300#endif
5301 0
5302};
5303
5304static void init_default_hcalls(void)
5305{
5306 int i;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005307 unsigned int hcall;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005308
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005309 for (i = 0; default_hcall_list[i]; ++i) {
5310 hcall = default_hcall_list[i];
5311 WARN_ON(!kvmppc_hcall_impl_hv(hcall));
5312 __set_bit(hcall / 4, default_enabled_hcalls);
5313 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005314}
5315
Paul Mackerrasc9270132017-01-30 21:21:41 +11005316static int kvmhv_configure_mmu(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
5317{
Paul Mackerras468808b2017-01-30 21:21:42 +11005318 unsigned long lpcr;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005319 int radix;
Paul Mackerras18c36402017-09-13 16:00:10 +10005320 int err;
Paul Mackerras468808b2017-01-30 21:21:42 +11005321
5322 /* If not on a POWER9, reject it */
5323 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5324 return -ENODEV;
5325
5326 /* If any unknown flags set, reject it */
5327 if (cfg->flags & ~(KVM_PPC_MMUV3_RADIX | KVM_PPC_MMUV3_GTSE))
5328 return -EINVAL;
5329
Paul Mackerras468808b2017-01-30 21:21:42 +11005330 /* GR (guest radix) bit in process_table field must match */
Paul Mackerras18c36402017-09-13 16:00:10 +10005331 radix = !!(cfg->flags & KVM_PPC_MMUV3_RADIX);
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005332 if (!!(cfg->process_table & PATB_GR) != radix)
Paul Mackerras468808b2017-01-30 21:21:42 +11005333 return -EINVAL;
5334
5335 /* Process table size field must be reasonable, i.e. <= 24 */
5336 if ((cfg->process_table & PRTS_MASK) > 24)
5337 return -EINVAL;
5338
Paul Mackerras18c36402017-09-13 16:00:10 +10005339 /* We can change a guest to/from radix now, if the host is radix */
5340 if (radix && !radix_enabled())
5341 return -EINVAL;
5342
Paul Mackerrasde760db2018-10-08 16:31:16 +11005343 /* If we're a nested hypervisor, we currently only support radix */
5344 if (kvmhv_on_pseries() && !radix)
5345 return -EINVAL;
5346
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005347 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005348 if (radix != kvm_is_radix(kvm)) {
5349 if (kvm->arch.mmu_ready) {
5350 kvm->arch.mmu_ready = 0;
5351 /* order mmu_ready vs. vcpus_running */
5352 smp_mb();
5353 if (atomic_read(&kvm->arch.vcpus_running)) {
5354 kvm->arch.mmu_ready = 1;
5355 err = -EBUSY;
5356 goto out_unlock;
5357 }
5358 }
5359 if (radix)
5360 err = kvmppc_switch_mmu_to_radix(kvm);
5361 else
5362 err = kvmppc_switch_mmu_to_hpt(kvm);
5363 if (err)
5364 goto out_unlock;
5365 }
5366
Paul Mackerras468808b2017-01-30 21:21:42 +11005367 kvm->arch.process_table = cfg->process_table;
5368 kvmppc_setup_partition_table(kvm);
5369
5370 lpcr = (cfg->flags & KVM_PPC_MMUV3_GTSE) ? LPCR_GTSE : 0;
5371 kvmppc_update_lpcr(kvm, lpcr, LPCR_GTSE);
Paul Mackerras18c36402017-09-13 16:00:10 +10005372 err = 0;
Paul Mackerras468808b2017-01-30 21:21:42 +11005373
Paul Mackerras18c36402017-09-13 16:00:10 +10005374 out_unlock:
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005375 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005376 return err;
Paul Mackerrasc9270132017-01-30 21:21:41 +11005377}
5378
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005379static int kvmhv_enable_nested(struct kvm *kvm)
5380{
5381 if (!nested)
5382 return -EPERM;
Paul Mackerras8d9fcac2018-10-19 20:44:04 +11005383 if (!cpu_has_feature(CPU_FTR_ARCH_300) || no_mixing_hpt_and_radix)
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005384 return -ENODEV;
5385
5386 /* kvm == NULL means the caller is testing if the capability exists */
5387 if (kvm)
5388 kvm->arch.nested_enable = true;
5389 return 0;
5390}
5391
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11005392static int kvmhv_load_from_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5393 int size)
5394{
5395 int rc = -EINVAL;
5396
5397 if (kvmhv_vcpu_is_radix(vcpu)) {
5398 rc = kvmhv_copy_from_guest_radix(vcpu, *eaddr, ptr, size);
5399
5400 if (rc > 0)
5401 rc = -EINVAL;
5402 }
5403
5404 /* For now quadrants are the only way to access nested guest memory */
5405 if (rc && vcpu->arch.nested)
5406 rc = -EAGAIN;
5407
5408 return rc;
5409}
5410
5411static int kvmhv_store_to_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5412 int size)
5413{
5414 int rc = -EINVAL;
5415
5416 if (kvmhv_vcpu_is_radix(vcpu)) {
5417 rc = kvmhv_copy_to_guest_radix(vcpu, *eaddr, ptr, size);
5418
5419 if (rc > 0)
5420 rc = -EINVAL;
5421 }
5422
5423 /* For now quadrants are the only way to access nested guest memory */
5424 if (rc && vcpu->arch.nested)
5425 rc = -EAGAIN;
5426
5427 return rc;
5428}
5429
Bharata B Rao22945682019-11-25 08:36:30 +05305430static void unpin_vpa_reset(struct kvm *kvm, struct kvmppc_vpa *vpa)
5431{
5432 unpin_vpa(kvm, vpa);
5433 vpa->gpa = 0;
5434 vpa->pinned_addr = NULL;
5435 vpa->dirty = false;
5436 vpa->update_pending = 0;
5437}
5438
5439/*
5440 * IOCTL handler to turn off secure mode of guest
5441 *
5442 * - Release all device pages
5443 * - Issue ucall to terminate the guest on the UV side
5444 * - Unpin the VPA pages.
5445 * - Reinit the partition scoped page tables
5446 */
5447static int kvmhv_svm_off(struct kvm *kvm)
5448{
5449 struct kvm_vcpu *vcpu;
5450 int mmu_was_ready;
5451 int srcu_idx;
5452 int ret = 0;
5453 int i;
5454
5455 if (!(kvm->arch.secure_guest & KVMPPC_SECURE_INIT_START))
5456 return ret;
5457
5458 mutex_lock(&kvm->arch.mmu_setup_lock);
5459 mmu_was_ready = kvm->arch.mmu_ready;
5460 if (kvm->arch.mmu_ready) {
5461 kvm->arch.mmu_ready = 0;
5462 /* order mmu_ready vs. vcpus_running */
5463 smp_mb();
5464 if (atomic_read(&kvm->arch.vcpus_running)) {
5465 kvm->arch.mmu_ready = 1;
5466 ret = -EBUSY;
5467 goto out;
5468 }
5469 }
5470
5471 srcu_idx = srcu_read_lock(&kvm->srcu);
5472 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
5473 struct kvm_memory_slot *memslot;
5474 struct kvm_memslots *slots = __kvm_memslots(kvm, i);
5475
5476 if (!slots)
5477 continue;
5478
5479 kvm_for_each_memslot(memslot, slots) {
Sukadev Bhattiproluce477a72019-12-19 13:51:45 -08005480 kvmppc_uvmem_drop_pages(memslot, kvm, true);
Bharata B Rao22945682019-11-25 08:36:30 +05305481 uv_unregister_mem_slot(kvm->arch.lpid, memslot->id);
5482 }
5483 }
5484 srcu_read_unlock(&kvm->srcu, srcu_idx);
5485
5486 ret = uv_svm_terminate(kvm->arch.lpid);
5487 if (ret != U_SUCCESS) {
5488 ret = -EINVAL;
5489 goto out;
5490 }
5491
5492 /*
5493 * When secure guest is reset, all the guest pages are sent
5494 * to UV via UV_PAGE_IN before the non-boot vcpus get a
5495 * chance to run and unpin their VPA pages. Unpinning of all
5496 * VPA pages is done here explicitly so that VPA pages
5497 * can be migrated to the secure side.
5498 *
5499 * This is required to for the secure SMP guest to reboot
5500 * correctly.
5501 */
5502 kvm_for_each_vcpu(i, vcpu, kvm) {
5503 spin_lock(&vcpu->arch.vpa_update_lock);
5504 unpin_vpa_reset(kvm, &vcpu->arch.dtl);
5505 unpin_vpa_reset(kvm, &vcpu->arch.slb_shadow);
5506 unpin_vpa_reset(kvm, &vcpu->arch.vpa);
5507 spin_unlock(&vcpu->arch.vpa_update_lock);
5508 }
5509
5510 kvmppc_setup_partition_table(kvm);
5511 kvm->arch.secure_guest = 0;
5512 kvm->arch.mmu_ready = mmu_was_ready;
5513out:
5514 mutex_unlock(&kvm->arch.mmu_setup_lock);
5515 return ret;
5516}
5517
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305518static struct kvmppc_ops kvm_ops_hv = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305519 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_hv,
5520 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_hv,
5521 .get_one_reg = kvmppc_get_one_reg_hv,
5522 .set_one_reg = kvmppc_set_one_reg_hv,
5523 .vcpu_load = kvmppc_core_vcpu_load_hv,
5524 .vcpu_put = kvmppc_core_vcpu_put_hv,
Nicholas Piggin87a45e02019-10-02 16:00:22 +10005525 .inject_interrupt = kvmppc_inject_interrupt_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305526 .set_msr = kvmppc_set_msr_hv,
5527 .vcpu_run = kvmppc_vcpu_run_hv,
5528 .vcpu_create = kvmppc_core_vcpu_create_hv,
5529 .vcpu_free = kvmppc_core_vcpu_free_hv,
5530 .check_requests = kvmppc_core_check_requests_hv,
5531 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_hv,
5532 .flush_memslot = kvmppc_core_flush_memslot_hv,
5533 .prepare_memory_region = kvmppc_core_prepare_memory_region_hv,
5534 .commit_memory_region = kvmppc_core_commit_memory_region_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305535 .unmap_hva_range = kvm_unmap_hva_range_hv,
5536 .age_hva = kvm_age_hva_hv,
5537 .test_age_hva = kvm_test_age_hva_hv,
5538 .set_spte_hva = kvm_set_spte_hva_hv,
5539 .mmu_destroy = kvmppc_mmu_destroy_hv,
5540 .free_memslot = kvmppc_core_free_memslot_hv,
5541 .create_memslot = kvmppc_core_create_memslot_hv,
5542 .init_vm = kvmppc_core_init_vm_hv,
5543 .destroy_vm = kvmppc_core_destroy_vm_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305544 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_hv,
5545 .emulate_op = kvmppc_core_emulate_op_hv,
5546 .emulate_mtspr = kvmppc_core_emulate_mtspr_hv,
5547 .emulate_mfspr = kvmppc_core_emulate_mfspr_hv,
5548 .fast_vcpu_kick = kvmppc_fast_vcpu_kick_hv,
5549 .arch_vm_ioctl = kvm_arch_vm_ioctl_hv,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005550 .hcall_implemented = kvmppc_hcall_impl_hv,
Suresh Warrierc57875f2016-08-19 15:35:50 +10005551#ifdef CONFIG_KVM_XICS
5552 .irq_bypass_add_producer = kvmppc_irq_bypass_add_producer_hv,
5553 .irq_bypass_del_producer = kvmppc_irq_bypass_del_producer_hv,
5554#endif
Paul Mackerrasc9270132017-01-30 21:21:41 +11005555 .configure_mmu = kvmhv_configure_mmu,
5556 .get_rmmu_info = kvmhv_get_rmmu_info,
Paul Mackerras3c313522017-02-06 13:24:41 +11005557 .set_smt_mode = kvmhv_set_smt_mode,
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005558 .enable_nested = kvmhv_enable_nested,
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11005559 .load_from_eaddr = kvmhv_load_from_eaddr,
5560 .store_to_eaddr = kvmhv_store_to_eaddr,
Bharata B Rao22945682019-11-25 08:36:30 +05305561 .svm_off = kvmhv_svm_off,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305562};
5563
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305564static int kvm_init_subcore_bitmap(void)
5565{
5566 int i, j;
5567 int nr_cores = cpu_nr_cores();
5568 struct sibling_subcore_state *sibling_subcore_state;
5569
5570 for (i = 0; i < nr_cores; i++) {
5571 int first_cpu = i * threads_per_core;
5572 int node = cpu_to_node(first_cpu);
5573
5574 /* Ignore if it is already allocated. */
Nicholas Piggind2e60072018-02-14 01:08:12 +10005575 if (paca_ptrs[first_cpu]->sibling_subcore_state)
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305576 continue;
5577
5578 sibling_subcore_state =
wangbo08434ab2019-01-07 20:15:52 +08005579 kzalloc_node(sizeof(struct sibling_subcore_state),
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305580 GFP_KERNEL, node);
5581 if (!sibling_subcore_state)
5582 return -ENOMEM;
5583
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305584
5585 for (j = 0; j < threads_per_core; j++) {
5586 int cpu = first_cpu + j;
5587
Nicholas Piggind2e60072018-02-14 01:08:12 +10005588 paca_ptrs[cpu]->sibling_subcore_state =
5589 sibling_subcore_state;
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305590 }
5591 }
5592 return 0;
5593}
5594
Paul Mackerras5a319352017-01-30 21:21:46 +11005595static int kvmppc_radix_possible(void)
5596{
5597 return cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled();
5598}
5599
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305600static int kvmppc_book3s_init_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005601{
5602 int r;
Nicholas Piggin2275d7b2019-09-03 01:29:31 +10005603
5604 if (!tlbie_capable) {
5605 pr_err("KVM-HV: Host does not support TLBIE\n");
5606 return -ENODEV;
5607 }
5608
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305609 /*
5610 * FIXME!! Do we need to check on all cpus ?
5611 */
5612 r = kvmppc_core_check_processor_compat_hv();
5613 if (r < 0)
Paul Mackerras739e2422014-03-25 10:47:05 +11005614 return -ENODEV;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005615
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005616 r = kvmhv_nested_init();
5617 if (r)
5618 return r;
5619
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305620 r = kvm_init_subcore_bitmap();
5621 if (r)
5622 return r;
5623
Paul Mackerrasf7257582016-11-18 09:02:08 +11005624 /*
5625 * We need a way of accessing the XICS interrupt controller,
Nicholas Piggind2e60072018-02-14 01:08:12 +10005626 * either directly, via paca_ptrs[cpu]->kvm_hstate.xics_phys, or
Paul Mackerrasf7257582016-11-18 09:02:08 +11005627 * indirectly, via OPAL.
5628 */
5629#ifdef CONFIG_SMP
Paul Mackerras03f95332019-02-04 22:07:20 +11005630 if (!xics_on_xive() && !kvmhv_on_pseries() &&
Paul Mackerrasf3c18e92018-10-08 16:31:05 +11005631 !local_paca->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +11005632 struct device_node *np;
5633
5634 np = of_find_compatible_node(NULL, NULL, "ibm,opal-intc");
5635 if (!np) {
5636 pr_err("KVM-HV: Cannot determine method for accessing XICS\n");
5637 return -ENODEV;
5638 }
Nicholas Mc Guire51eaa082018-07-07 08:53:07 +02005639 /* presence of intc confirmed - node can be dropped again */
5640 of_node_put(np);
Paul Mackerrasf7257582016-11-18 09:02:08 +11005641 }
5642#endif
5643
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305644 kvm_ops_hv.owner = THIS_MODULE;
5645 kvmppc_hv_ops = &kvm_ops_hv;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005646
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005647 init_default_hcalls();
5648
Paul Mackerrasec257162015-06-24 21:18:03 +10005649 init_vcore_lists();
5650
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305651 r = kvmppc_mmu_hv_init();
Paul Mackerras5a319352017-01-30 21:21:46 +11005652 if (r)
5653 return r;
5654
5655 if (kvmppc_radix_possible())
5656 r = kvmppc_radix_init();
Paul Mackerras00608e12018-01-11 16:54:26 +11005657
5658 /*
5659 * POWER9 chips before version 2.02 can't have some threads in
5660 * HPT mode and some in radix mode on the same core.
5661 */
5662 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
5663 unsigned int pvr = mfspr(SPRN_PVR);
5664 if ((pvr >> 16) == PVR_POWER9 &&
5665 (((pvr & 0xe000) == 0 && (pvr & 0xfff) < 0x202) ||
5666 ((pvr & 0xe000) == 0x2000 && (pvr & 0xfff) < 0x101)))
5667 no_mixing_hpt_and_radix = true;
5668 }
5669
Bharata B Raoca9f4942019-11-25 08:36:26 +05305670 r = kvmppc_uvmem_init();
5671 if (r < 0)
5672 pr_err("KVM-HV: kvmppc_uvmem_init failed %d\n", r);
5673
Paul Mackerrasde56a942011-06-29 00:21:34 +00005674 return r;
5675}
5676
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305677static void kvmppc_book3s_exit_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005678{
Bharata B Raoca9f4942019-11-25 08:36:26 +05305679 kvmppc_uvmem_free();
Suresh Warrier79b6c242015-12-17 14:59:06 -06005680 kvmppc_free_host_rm_ops();
Paul Mackerras5a319352017-01-30 21:21:46 +11005681 if (kvmppc_radix_possible())
5682 kvmppc_radix_exit();
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305683 kvmppc_hv_ops = NULL;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005684 kvmhv_nested_exit();
Paul Mackerrasde56a942011-06-29 00:21:34 +00005685}
5686
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305687module_init(kvmppc_book3s_init_hv);
5688module_exit(kvmppc_book3s_exit_hv);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05305689MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01005690MODULE_ALIAS_MISCDEV(KVM_MINOR);
5691MODULE_ALIAS("devname:kvm");