blob: f8c14e86a4ab22640959547b84d2c5b0bee45ea3 [file] [log] [blame]
Paul Mackerrasde56a942011-06-29 00:21:34 +00001/*
2 * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
3 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
4 *
5 * Authors:
6 * Paul Mackerras <paulus@au1.ibm.com>
7 * Alexander Graf <agraf@suse.de>
8 * Kevin Wolf <mail@kevin-wolf.de>
9 *
10 * Description: KVM functions specific to running on Book 3S
11 * processors in hypervisor mode (specifically POWER7 and later).
12 *
13 * This file is derived from arch/powerpc/kvm/book3s.c,
14 * by Alexander Graf <agraf@suse.de>.
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License, version 2, as
18 * published by the Free Software Foundation.
19 */
20
21#include <linux/kvm_host.h>
Thomas Meyer4bb817ed2017-09-03 14:19:31 +020022#include <linux/kernel.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000023#include <linux/err.h>
24#include <linux/slab.h>
25#include <linux/preempt.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010026#include <linux/sched/signal.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010027#include <linux/sched/stat.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000028#include <linux/delay.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040029#include <linux/export.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000030#include <linux/fs.h>
31#include <linux/anon_inodes.h>
Gavin Shan07f8ab252016-05-11 11:15:55 +100032#include <linux/cpu.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000033#include <linux/cpumask.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000034#include <linux/spinlock.h>
35#include <linux/page-flags.h>
Paul Mackerras2c9097e2012-09-11 13:27:01 +000036#include <linux/srcu.h>
Alexander Graf398a76c2013-12-09 13:53:42 +010037#include <linux/miscdevice.h>
Paul Mackerrase23a8082015-03-28 14:21:01 +110038#include <linux/debugfs.h>
Benjamin Herrenschmidtd3989142017-04-05 17:54:51 +100039#include <linux/gfp.h>
40#include <linux/vmalloc.h>
41#include <linux/highmem.h>
42#include <linux/hugetlb.h>
43#include <linux/kvm_irqfd.h>
44#include <linux/irqbypass.h>
45#include <linux/module.h>
46#include <linux/compiler.h>
47#include <linux/of.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000048
Luke Dashjrd6ee76d2018-08-16 21:36:26 +000049#include <asm/ftrace.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000050#include <asm/reg.h>
Paul Mackerras57900692017-05-16 16:41:20 +100051#include <asm/ppc-opcode.h>
Nicholas Piggin6de66382017-11-05 23:33:55 +110052#include <asm/asm-prototypes.h>
Paul Mackerras4bad7772018-10-08 16:31:06 +110053#include <asm/archrandom.h>
Nicholas Piggine303c082018-04-01 15:50:35 +100054#include <asm/debug.h>
Paul Mackerras57900692017-05-16 16:41:20 +100055#include <asm/disassemble.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000056#include <asm/cputable.h>
57#include <asm/cacheflush.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080058#include <linux/uaccess.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000059#include <asm/io.h>
60#include <asm/kvm_ppc.h>
61#include <asm/kvm_book3s.h>
62#include <asm/mmu_context.h>
63#include <asm/lppaca.h>
64#include <asm/processor.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000065#include <asm/cputhreads.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000066#include <asm/page.h>
Michael Neulingde1d9242011-11-09 20:39:49 +000067#include <asm/hvcall.h>
David Howellsae3a1972012-03-28 18:30:02 +010068#include <asm/switch_to.h>
Paul Mackerras512691d2012-10-15 01:15:41 +000069#include <asm/smp.h>
Paul Mackerras66feed62015-03-28 14:21:12 +110070#include <asm/dbell.h>
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +053071#include <asm/hmi.h>
Suresh Warrierc57875f2016-08-19 15:35:50 +100072#include <asm/pnv-pci.h>
Paul Mackerras7a840842016-11-16 22:25:20 +110073#include <asm/mmu.h>
Paul Mackerrasf7257582016-11-18 09:02:08 +110074#include <asm/opal.h>
75#include <asm/xics.h>
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +100076#include <asm/xive.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000077
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053078#include "book3s.h"
79
Suresh E. Warrier3c78f782014-12-03 18:48:10 -060080#define CREATE_TRACE_POINTS
81#include "trace_hv.h"
82
Paul Mackerrasde56a942011-06-29 00:21:34 +000083/* #define EXIT_DEBUG */
84/* #define EXIT_DEBUG_SIMPLE */
85/* #define EXIT_DEBUG_INT */
86
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000087/* Used to indicate that a guest page fault needs to be handled */
88#define RESUME_PAGE_FAULT (RESUME_GUEST | RESUME_FLAG_ARCH1)
Suresh Warrierf7af5202016-08-19 15:35:52 +100089/* Used to indicate that a guest passthrough interrupt needs to be handled */
90#define RESUME_PASSTHROUGH (RESUME_GUEST | RESUME_FLAG_ARCH2)
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000091
Paul Mackerrasc7b67672012-10-15 01:18:07 +000092/* Used as a "null" value for timebase values */
93#define TB_NIL (~(u64)0)
94
Paul Mackerras699a0ea2014-06-02 11:02:59 +100095static DECLARE_BITMAP(default_enabled_hcalls, MAX_HCALL_OPCODE/4 + 1);
96
Paul Mackerrasb4deba52015-07-02 20:38:16 +100097static int dynamic_mt_modes = 6;
Russell Currey57ad583f2017-01-12 14:54:13 +110098module_param(dynamic_mt_modes, int, 0644);
Paul Mackerrasb4deba52015-07-02 20:38:16 +100099MODULE_PARM_DESC(dynamic_mt_modes, "Set of allowed dynamic micro-threading modes: 0 (= none), 2, 4, or 6 (= 2 or 4)");
Paul Mackerrasec257162015-06-24 21:18:03 +1000100static int target_smt_mode;
Russell Currey57ad583f2017-01-12 14:54:13 +1100101module_param(target_smt_mode, int, 0644);
Paul Mackerrasec257162015-06-24 21:18:03 +1000102MODULE_PARM_DESC(target_smt_mode, "Target threads per core (0 = max)");
Stewart Smith9678cda2014-07-18 14:18:43 +1000103
Paul Mackerras516f7892017-10-16 16:11:57 +1100104static bool indep_threads_mode = true;
105module_param(indep_threads_mode, bool, S_IRUGO | S_IWUSR);
106MODULE_PARM_DESC(indep_threads_mode, "Independent-threads mode (only on POWER9)");
107
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600108#ifdef CONFIG_KVM_XICS
109static struct kernel_param_ops module_param_ops = {
110 .set = param_set_int,
111 .get = param_get_int,
112};
113
Russell Currey57ad583f2017-01-12 14:54:13 +1100114module_param_cb(kvm_irq_bypass, &module_param_ops, &kvm_irq_bypass, 0644);
Suresh Warrier644abbb2016-08-19 15:35:54 +1000115MODULE_PARM_DESC(kvm_irq_bypass, "Bypass passthrough interrupt optimization");
116
Russell Currey57ad583f2017-01-12 14:54:13 +1100117module_param_cb(h_ipi_redirect, &module_param_ops, &h_ipi_redirect, 0644);
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600118MODULE_PARM_DESC(h_ipi_redirect, "Redirect H_IPI wakeup to a free host core");
119#endif
120
Paul Mackerras00608e12018-01-11 16:54:26 +1100121/* If set, the threads on each CPU core have to be in the same MMU mode */
122static bool no_mixing_hpt_and_radix;
123
Paul Mackerras19ccb762011-07-23 17:42:46 +1000124static void kvmppc_end_cede(struct kvm_vcpu *vcpu);
Paul Mackerras32fad282012-05-04 02:32:53 +0000125static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000126
Paul Mackerras7aa15842018-04-20 19:53:22 +1000127/*
128 * RWMR values for POWER8. These control the rate at which PURR
129 * and SPURR count and should be set according to the number of
130 * online threads in the vcore being run.
131 */
Nicholas Mc Guire0abb75b2018-07-07 11:07:25 +0200132#define RWMR_RPA_P8_1THREAD 0x164520C62609AECAUL
133#define RWMR_RPA_P8_2THREAD 0x7FFF2908450D8DA9UL
134#define RWMR_RPA_P8_3THREAD 0x164520C62609AECAUL
135#define RWMR_RPA_P8_4THREAD 0x199A421245058DA9UL
136#define RWMR_RPA_P8_5THREAD 0x164520C62609AECAUL
137#define RWMR_RPA_P8_6THREAD 0x164520C62609AECAUL
138#define RWMR_RPA_P8_7THREAD 0x164520C62609AECAUL
139#define RWMR_RPA_P8_8THREAD 0x164520C62609AECAUL
Paul Mackerras7aa15842018-04-20 19:53:22 +1000140
141static unsigned long p8_rwmr_values[MAX_SMT_THREADS + 1] = {
142 RWMR_RPA_P8_1THREAD,
143 RWMR_RPA_P8_1THREAD,
144 RWMR_RPA_P8_2THREAD,
145 RWMR_RPA_P8_3THREAD,
146 RWMR_RPA_P8_4THREAD,
147 RWMR_RPA_P8_5THREAD,
148 RWMR_RPA_P8_6THREAD,
149 RWMR_RPA_P8_7THREAD,
150 RWMR_RPA_P8_8THREAD,
151};
152
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +1000153static inline struct kvm_vcpu *next_runnable_thread(struct kvmppc_vcore *vc,
154 int *ip)
155{
156 int i = *ip;
157 struct kvm_vcpu *vcpu;
158
159 while (++i < MAX_SMT_THREADS) {
160 vcpu = READ_ONCE(vc->runnable_threads[i]);
161 if (vcpu) {
162 *ip = i;
163 return vcpu;
164 }
165 }
166 return NULL;
167}
168
169/* Used to traverse the list of runnable threads for a given vcore */
170#define for_each_runnable_thread(i, vcpu, vc) \
171 for (i = -1; (vcpu = next_runnable_thread(vc, &i)); )
172
Paul Mackerras66feed62015-03-28 14:21:12 +1100173static bool kvmppc_ipi_thread(int cpu)
174{
Paul Mackerras1704a812016-11-18 08:47:08 +1100175 unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER);
176
Paul Mackerrasf3c18e92018-10-08 16:31:05 +1100177 /* If we're a nested hypervisor, fall back to ordinary IPIs for now */
178 if (kvmhv_on_pseries())
179 return false;
180
Paul Mackerras1704a812016-11-18 08:47:08 +1100181 /* On POWER9 we can use msgsnd to IPI any cpu */
182 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
183 msg |= get_hard_smp_processor_id(cpu);
184 smp_mb();
185 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
186 return true;
187 }
188
Paul Mackerras66feed62015-03-28 14:21:12 +1100189 /* On POWER8 for IPIs to threads in the same core, use msgsnd */
190 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
191 preempt_disable();
192 if (cpu_first_thread_sibling(cpu) ==
193 cpu_first_thread_sibling(smp_processor_id())) {
Paul Mackerras66feed62015-03-28 14:21:12 +1100194 msg |= cpu_thread_in_core(cpu);
195 smp_mb();
196 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
197 preempt_enable();
198 return true;
199 }
200 preempt_enable();
201 }
202
203#if defined(CONFIG_PPC_ICP_NATIVE) && defined(CONFIG_SMP)
Paul Mackerrasf7257582016-11-18 09:02:08 +1100204 if (cpu >= 0 && cpu < nr_cpu_ids) {
Nicholas Piggind2e60072018-02-14 01:08:12 +1000205 if (paca_ptrs[cpu]->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +1100206 xics_wake_cpu(cpu);
207 return true;
208 }
209 opal_int_set_mfrr(get_hard_smp_processor_id(cpu), IPI_PRIORITY);
Paul Mackerras66feed62015-03-28 14:21:12 +1100210 return true;
211 }
212#endif
213
214 return false;
215}
216
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530217static void kvmppc_fast_vcpu_kick_hv(struct kvm_vcpu *vcpu)
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000218{
Paul Mackerrasec257162015-06-24 21:18:03 +1000219 int cpu;
Marcelo Tosatti85773702016-02-19 09:46:39 +0100220 struct swait_queue_head *wqp;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000221
222 wqp = kvm_arch_vcpu_wq(vcpu);
Davidlohr Bueso267ad7b2017-09-13 13:08:23 -0700223 if (swq_has_sleeper(wqp)) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +0200224 swake_up_one(wqp);
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000225 ++vcpu->stat.halt_wakeup;
226 }
227
Paul Mackerras3deda5e2016-12-20 14:02:29 +1100228 cpu = READ_ONCE(vcpu->arch.thread_cpu);
229 if (cpu >= 0 && kvmppc_ipi_thread(cpu))
Paul Mackerras66feed62015-03-28 14:21:12 +1100230 return;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000231
232 /* CPU points to the first thread of the core */
Paul Mackerrasec257162015-06-24 21:18:03 +1000233 cpu = vcpu->cpu;
Paul Mackerras66feed62015-03-28 14:21:12 +1100234 if (cpu >= 0 && cpu < nr_cpu_ids && cpu_online(cpu))
235 smp_send_reschedule(cpu);
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000236}
237
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000238/*
239 * We use the vcpu_load/put functions to measure stolen time.
240 * Stolen time is counted as time when either the vcpu is able to
241 * run as part of a virtual core, but the task running the vcore
242 * is preempted or sleeping, or when the vcpu needs something done
243 * in the kernel by the task running the vcpu, but that task is
244 * preempted or sleeping. Those two things have to be counted
245 * separately, since one of the vcpu tasks will take on the job
246 * of running the core, and the other vcpu tasks in the vcore will
247 * sleep waiting for it to do that, but that sleep shouldn't count
248 * as stolen time.
249 *
250 * Hence we accumulate stolen time when the vcpu can run as part of
251 * a vcore using vc->stolen_tb, and the stolen time when the vcpu
252 * needs its task to do other things in the kernel (for example,
253 * service a page fault) in busy_stolen. We don't accumulate
254 * stolen time for a vcore when it is inactive, or for a vcpu
255 * when it is in state RUNNING or NOTREADY. NOTREADY is a bit of
256 * a misnomer; it means that the vcpu task is not executing in
257 * the KVM_VCPU_RUN ioctl, i.e. it is in userspace or elsewhere in
258 * the kernel. We don't have any way of dividing up that time
259 * between time that the vcpu is genuinely stopped, time that
260 * the task is actively working on behalf of the vcpu, and time
261 * that the task is preempted, so we don't count any of it as
262 * stolen.
263 *
264 * Updates to busy_stolen are protected by arch.tbacct_lock;
Paul Mackerras2711e242014-12-04 16:43:28 +1100265 * updates to vc->stolen_tb are protected by the vcore->stoltb_lock
266 * lock. The stolen times are measured in units of timebase ticks.
267 * (Note that the != TB_NIL checks below are purely defensive;
268 * they should never fail.)
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000269 */
270
Paul Mackerrasec257162015-06-24 21:18:03 +1000271static void kvmppc_core_start_stolen(struct kvmppc_vcore *vc)
272{
273 unsigned long flags;
274
275 spin_lock_irqsave(&vc->stoltb_lock, flags);
276 vc->preempt_tb = mftb();
277 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
278}
279
280static void kvmppc_core_end_stolen(struct kvmppc_vcore *vc)
281{
282 unsigned long flags;
283
284 spin_lock_irqsave(&vc->stoltb_lock, flags);
285 if (vc->preempt_tb != TB_NIL) {
286 vc->stolen_tb += mftb() - vc->preempt_tb;
287 vc->preempt_tb = TB_NIL;
288 }
289 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
290}
291
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530292static void kvmppc_core_vcpu_load_hv(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000293{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000294 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100295 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000296
Paul Mackerras2711e242014-12-04 16:43:28 +1100297 /*
298 * We can test vc->runner without taking the vcore lock,
299 * because only this task ever sets vc->runner to this
300 * vcpu, and once it is set to this vcpu, only this task
301 * ever sets it to NULL.
302 */
Paul Mackerrasec257162015-06-24 21:18:03 +1000303 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
304 kvmppc_core_end_stolen(vc);
305
Paul Mackerras2711e242014-12-04 16:43:28 +1100306 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000307 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST &&
308 vcpu->arch.busy_preempt != TB_NIL) {
309 vcpu->arch.busy_stolen += mftb() - vcpu->arch.busy_preempt;
310 vcpu->arch.busy_preempt = TB_NIL;
311 }
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100312 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000313}
314
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530315static void kvmppc_core_vcpu_put_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000316{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000317 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100318 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000319
Paul Mackerrasec257162015-06-24 21:18:03 +1000320 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
321 kvmppc_core_start_stolen(vc);
322
Paul Mackerras2711e242014-12-04 16:43:28 +1100323 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000324 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST)
325 vcpu->arch.busy_preempt = mftb();
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_set_msr_hv(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000330{
Paul Mackerrasc20875a2015-11-12 16:43:02 +1100331 /*
332 * Check for illegal transactional state bit combination
333 * and if we find it, force the TS field to a safe state.
334 */
335 if ((msr & MSR_TS_MASK) == MSR_TS_MASK)
336 msr &= ~MSR_TS_MASK;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000337 vcpu->arch.shregs.msr = msr;
Paul Mackerras19ccb762011-07-23 17:42:46 +1000338 kvmppc_end_cede(vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000339}
340
Thomas Huth5358a962015-05-22 09:25:02 +0200341static void kvmppc_set_pvr_hv(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000342{
343 vcpu->arch.pvr = pvr;
344}
345
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100346/* Dummy value used in computing PCR value below */
347#define PCR_ARCH_300 (PCR_ARCH_207 << 1)
348
Thomas Huth5358a962015-05-22 09:25:02 +0200349static int kvmppc_set_arch_compat(struct kvm_vcpu *vcpu, u32 arch_compat)
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000350{
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100351 unsigned long host_pcr_bit = 0, guest_pcr_bit = 0;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000352 struct kvmppc_vcore *vc = vcpu->arch.vcore;
353
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100354 /* We can (emulate) our own architecture version and anything older */
355 if (cpu_has_feature(CPU_FTR_ARCH_300))
356 host_pcr_bit = PCR_ARCH_300;
357 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
358 host_pcr_bit = PCR_ARCH_207;
359 else if (cpu_has_feature(CPU_FTR_ARCH_206))
360 host_pcr_bit = PCR_ARCH_206;
361 else
362 host_pcr_bit = PCR_ARCH_205;
363
364 /* Determine lowest PCR bit needed to run guest in given PVR level */
365 guest_pcr_bit = host_pcr_bit;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000366 if (arch_compat) {
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000367 switch (arch_compat) {
368 case PVR_ARCH_205:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100369 guest_pcr_bit = PCR_ARCH_205;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000370 break;
371 case PVR_ARCH_206:
372 case PVR_ARCH_206p:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100373 guest_pcr_bit = PCR_ARCH_206;
Paul Mackerras5557ae02014-01-08 21:25:24 +1100374 break;
375 case PVR_ARCH_207:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100376 guest_pcr_bit = PCR_ARCH_207;
377 break;
378 case PVR_ARCH_300:
379 guest_pcr_bit = PCR_ARCH_300;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000380 break;
381 default:
382 return -EINVAL;
383 }
384 }
385
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100386 /* Check requested PCR bits don't exceed our capabilities */
387 if (guest_pcr_bit > host_pcr_bit)
388 return -EINVAL;
389
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000390 spin_lock(&vc->lock);
391 vc->arch_compat = arch_compat;
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100392 /* Set all PCR bits for which guest_pcr_bit <= bit < host_pcr_bit */
393 vc->pcr = host_pcr_bit - guest_pcr_bit;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000394 spin_unlock(&vc->lock);
395
396 return 0;
397}
398
Thomas Huth5358a962015-05-22 09:25:02 +0200399static void kvmppc_dump_regs(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000400{
401 int r;
402
403 pr_err("vcpu %p (%d):\n", vcpu, vcpu->vcpu_id);
404 pr_err("pc = %.16lx msr = %.16llx trap = %x\n",
Simon Guo173c5202018-05-07 14:20:08 +0800405 vcpu->arch.regs.nip, vcpu->arch.shregs.msr, vcpu->arch.trap);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000406 for (r = 0; r < 16; ++r)
407 pr_err("r%2d = %.16lx r%d = %.16lx\n",
408 r, kvmppc_get_gpr(vcpu, r),
409 r+16, kvmppc_get_gpr(vcpu, r+16));
410 pr_err("ctr = %.16lx lr = %.16lx\n",
Simon Guo173c5202018-05-07 14:20:08 +0800411 vcpu->arch.regs.ctr, vcpu->arch.regs.link);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000412 pr_err("srr0 = %.16llx srr1 = %.16llx\n",
413 vcpu->arch.shregs.srr0, vcpu->arch.shregs.srr1);
414 pr_err("sprg0 = %.16llx sprg1 = %.16llx\n",
415 vcpu->arch.shregs.sprg0, vcpu->arch.shregs.sprg1);
416 pr_err("sprg2 = %.16llx sprg3 = %.16llx\n",
417 vcpu->arch.shregs.sprg2, vcpu->arch.shregs.sprg3);
Paul Mackerrasfd0944b2018-10-08 16:30:58 +1100418 pr_err("cr = %.8lx xer = %.16lx dsisr = %.8x\n",
419 vcpu->arch.regs.ccr, vcpu->arch.regs.xer, vcpu->arch.shregs.dsisr);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000420 pr_err("dar = %.16llx\n", vcpu->arch.shregs.dar);
421 pr_err("fault dar = %.16lx dsisr = %.8x\n",
422 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
423 pr_err("SLB (%d entries):\n", vcpu->arch.slb_max);
424 for (r = 0; r < vcpu->arch.slb_max; ++r)
425 pr_err(" ESID = %.16llx VSID = %.16llx\n",
426 vcpu->arch.slb[r].orige, vcpu->arch.slb[r].origv);
427 pr_err("lpcr = %.16lx sdr1 = %.16lx last_inst = %.8x\n",
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000428 vcpu->arch.vcore->lpcr, vcpu->kvm->arch.sdr1,
Paul Mackerrasde56a942011-06-29 00:21:34 +0000429 vcpu->arch.last_inst);
430}
431
Thomas Huth5358a962015-05-22 09:25:02 +0200432static struct kvm_vcpu *kvmppc_find_vcpu(struct kvm *kvm, int id)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000433{
David Hildenbrande09fefd2015-11-05 09:03:50 +0100434 struct kvm_vcpu *ret;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000435
436 mutex_lock(&kvm->lock);
David Hildenbrande09fefd2015-11-05 09:03:50 +0100437 ret = kvm_get_vcpu_by_id(kvm, id);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000438 mutex_unlock(&kvm->lock);
439 return ret;
440}
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
Paul Mackerrasf7035ce2018-10-08 16:30:50 +1100738 * smb_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;
785 default:
786 return H_TOO_HARD;
787 }
788}
789
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100790static int kvm_arch_vcpu_yield_to(struct kvm_vcpu *target)
791{
792 struct kvmppc_vcore *vcore = target->arch.vcore;
793
794 /*
795 * We expect to have been called by the real mode handler
796 * (kvmppc_rm_h_confer()) which would have directly returned
797 * H_SUCCESS if the source vcore wasn't idle (e.g. if it may
798 * have useful work to do and should not confer) so we don't
799 * recheck that here.
800 */
801
802 spin_lock(&vcore->lock);
803 if (target->arch.state == KVMPPC_VCPU_RUNNABLE &&
Paul Mackerrasec257162015-06-24 21:18:03 +1000804 vcore->vcore_state != VCORE_INACTIVE &&
805 vcore->runner)
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100806 target = vcore->runner;
807 spin_unlock(&vcore->lock);
808
809 return kvm_vcpu_yield_to(target);
810}
811
812static int kvmppc_get_yield_count(struct kvm_vcpu *vcpu)
813{
814 int yield_count = 0;
815 struct lppaca *lppaca;
816
817 spin_lock(&vcpu->arch.vpa_update_lock);
818 lppaca = (struct lppaca *)vcpu->arch.vpa.pinned_addr;
819 if (lppaca)
Paul Mackerrasecb6d612015-03-20 20:39:39 +1100820 yield_count = be32_to_cpu(lppaca->yield_count);
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100821 spin_unlock(&vcpu->arch.vpa_update_lock);
822 return yield_count;
823}
824
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000825int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
826{
827 unsigned long req = kvmppc_get_gpr(vcpu, 3);
828 unsigned long target, ret = H_SUCCESS;
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100829 int yield_count;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000830 struct kvm_vcpu *tvcpu;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000831 int idx, rc;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000832
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000833 if (req <= MAX_HCALL_OPCODE &&
834 !test_bit(req/4, vcpu->kvm->arch.enabled_hcalls))
835 return RESUME_HOST;
836
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000837 switch (req) {
838 case H_CEDE:
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000839 break;
840 case H_PROD:
841 target = kvmppc_get_gpr(vcpu, 4);
842 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
843 if (!tvcpu) {
844 ret = H_PARAMETER;
845 break;
846 }
847 tvcpu->arch.prodded = 1;
848 smp_mb();
Paul Mackerras8464c882016-12-06 20:42:05 +1100849 if (tvcpu->arch.ceded)
850 kvmppc_fast_vcpu_kick_hv(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000851 break;
852 case H_CONFER:
Paul Mackerras42d76042013-09-06 13:23:21 +1000853 target = kvmppc_get_gpr(vcpu, 4);
854 if (target == -1)
855 break;
856 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
857 if (!tvcpu) {
858 ret = H_PARAMETER;
859 break;
860 }
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100861 yield_count = kvmppc_get_gpr(vcpu, 5);
862 if (kvmppc_get_yield_count(tvcpu) != yield_count)
863 break;
864 kvm_arch_vcpu_yield_to(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000865 break;
866 case H_REGISTER_VPA:
867 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
868 kvmppc_get_gpr(vcpu, 5),
869 kvmppc_get_gpr(vcpu, 6));
870 break;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000871 case H_RTAS:
872 if (list_empty(&vcpu->kvm->arch.rtas_tokens))
873 return RESUME_HOST;
874
Paul Mackerrasc9438092013-11-16 17:46:05 +1100875 idx = srcu_read_lock(&vcpu->kvm->srcu);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000876 rc = kvmppc_rtas_hcall(vcpu);
Paul Mackerrasc9438092013-11-16 17:46:05 +1100877 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000878
879 if (rc == -ENOENT)
880 return RESUME_HOST;
881 else if (rc == 0)
882 break;
883
884 /* Send the error out to userspace via KVM_RUN */
885 return rc;
David Gibson99342cf82015-02-05 11:53:25 +1100886 case H_LOGICAL_CI_LOAD:
887 ret = kvmppc_h_logical_ci_load(vcpu);
888 if (ret == H_TOO_HARD)
889 return RESUME_HOST;
890 break;
891 case H_LOGICAL_CI_STORE:
892 ret = kvmppc_h_logical_ci_store(vcpu);
893 if (ret == H_TOO_HARD)
894 return RESUME_HOST;
895 break;
Michael Neuling96423822014-06-02 11:03:01 +1000896 case H_SET_MODE:
897 ret = kvmppc_h_set_mode(vcpu, kvmppc_get_gpr(vcpu, 4),
898 kvmppc_get_gpr(vcpu, 5),
899 kvmppc_get_gpr(vcpu, 6),
900 kvmppc_get_gpr(vcpu, 7));
901 if (ret == H_TOO_HARD)
902 return RESUME_HOST;
903 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000904 case H_XIRR:
905 case H_CPPR:
906 case H_EOI:
907 case H_IPI:
Paul Mackerras8e44ddc2013-05-23 15:42:21 +0000908 case H_IPOLL:
909 case H_XIRR_X:
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000910 if (kvmppc_xics_enabled(vcpu)) {
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000911 if (xive_enabled()) {
912 ret = H_NOT_AVAILABLE;
913 return RESUME_GUEST;
914 }
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000915 ret = kvmppc_xics_hcall(vcpu, req);
916 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +1100917 }
918 return RESUME_HOST;
Paul Mackerras4bad7772018-10-08 16:31:06 +1100919 case H_SET_DABR:
920 ret = kvmppc_h_set_dabr(vcpu, kvmppc_get_gpr(vcpu, 4));
921 break;
922 case H_SET_XDABR:
923 ret = kvmppc_h_set_xdabr(vcpu, kvmppc_get_gpr(vcpu, 4),
924 kvmppc_get_gpr(vcpu, 5));
925 break;
926 case H_GET_TCE:
927 ret = kvmppc_h_get_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
928 kvmppc_get_gpr(vcpu, 5));
929 if (ret == H_TOO_HARD)
930 return RESUME_HOST;
931 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +1100932 case H_PUT_TCE:
933 ret = kvmppc_h_put_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
934 kvmppc_get_gpr(vcpu, 5),
935 kvmppc_get_gpr(vcpu, 6));
936 if (ret == H_TOO_HARD)
937 return RESUME_HOST;
938 break;
939 case H_PUT_TCE_INDIRECT:
940 ret = kvmppc_h_put_tce_indirect(vcpu, kvmppc_get_gpr(vcpu, 4),
941 kvmppc_get_gpr(vcpu, 5),
942 kvmppc_get_gpr(vcpu, 6),
943 kvmppc_get_gpr(vcpu, 7));
944 if (ret == H_TOO_HARD)
945 return RESUME_HOST;
946 break;
947 case H_STUFF_TCE:
948 ret = kvmppc_h_stuff_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
949 kvmppc_get_gpr(vcpu, 5),
950 kvmppc_get_gpr(vcpu, 6),
951 kvmppc_get_gpr(vcpu, 7));
952 if (ret == H_TOO_HARD)
953 return RESUME_HOST;
954 break;
Paul Mackerras4bad7772018-10-08 16:31:06 +1100955 case H_RANDOM:
956 if (!powernv_get_random_long(&vcpu->arch.regs.gpr[4]))
957 ret = H_HARDWARE;
958 break;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +1100959
960 case H_SET_PARTITION_TABLE:
961 ret = H_FUNCTION;
962 if (vcpu->kvm->arch.nested_enable)
963 ret = kvmhv_set_partition_table(vcpu);
964 break;
965 case H_ENTER_NESTED:
966 ret = H_FUNCTION;
Paul Mackerras360cae32018-10-08 16:31:04 +1100967 if (!vcpu->kvm->arch.nested_enable)
968 break;
969 ret = kvmhv_enter_nested_guest(vcpu);
970 if (ret == H_INTERRUPT) {
971 kvmppc_set_gpr(vcpu, 3, 0);
972 return -EINTR;
973 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +1100974 break;
975 case H_TLB_INVALIDATE:
976 ret = H_FUNCTION;
Suraj Jitindar Singhe3b6b462018-10-08 16:31:09 +1100977 if (!vcpu->kvm->arch.nested_enable)
978 break;
979 ret = kvmhv_do_nested_tlbie(vcpu);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +1100980 break;
981
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000982 default:
983 return RESUME_HOST;
984 }
985 kvmppc_set_gpr(vcpu, 3, ret);
986 vcpu->arch.hcall_needed = 0;
987 return RESUME_GUEST;
988}
989
Paul Mackerras4bad7772018-10-08 16:31:06 +1100990/*
991 * Handle H_CEDE in the nested virtualization case where we haven't
992 * called the real-mode hcall handlers in book3s_hv_rmhandlers.S.
993 * This has to be done early, not in kvmppc_pseries_do_hcall(), so
994 * that the cede logic in kvmppc_run_single_vcpu() works properly.
995 */
996static void kvmppc_nested_cede(struct kvm_vcpu *vcpu)
997{
998 vcpu->arch.shregs.msr |= MSR_EE;
999 vcpu->arch.ceded = 1;
1000 smp_mb();
1001 if (vcpu->arch.prodded) {
1002 vcpu->arch.prodded = 0;
1003 smp_mb();
1004 vcpu->arch.ceded = 0;
1005 }
1006}
1007
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001008static int kvmppc_hcall_impl_hv(unsigned long cmd)
1009{
1010 switch (cmd) {
1011 case H_CEDE:
1012 case H_PROD:
1013 case H_CONFER:
1014 case H_REGISTER_VPA:
Michael Neuling96423822014-06-02 11:03:01 +10001015 case H_SET_MODE:
David Gibson99342cf82015-02-05 11:53:25 +11001016 case H_LOGICAL_CI_LOAD:
1017 case H_LOGICAL_CI_STORE:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001018#ifdef CONFIG_KVM_XICS
1019 case H_XIRR:
1020 case H_CPPR:
1021 case H_EOI:
1022 case H_IPI:
1023 case H_IPOLL:
1024 case H_XIRR_X:
1025#endif
1026 return 1;
1027 }
1028
1029 /* See if it's in the real-mode table */
1030 return kvmppc_hcall_impl_hv_realmode(cmd);
1031}
1032
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301033static int kvmppc_emulate_debug_inst(struct kvm_run *run,
1034 struct kvm_vcpu *vcpu)
1035{
1036 u32 last_inst;
1037
1038 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst) !=
1039 EMULATE_DONE) {
1040 /*
1041 * Fetch failed, so return to guest and
1042 * try executing it again.
1043 */
1044 return RESUME_GUEST;
1045 }
1046
1047 if (last_inst == KVMPPC_INST_SW_BREAKPOINT) {
1048 run->exit_reason = KVM_EXIT_DEBUG;
1049 run->debug.arch.address = kvmppc_get_pc(vcpu);
1050 return RESUME_HOST;
1051 } else {
1052 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1053 return RESUME_GUEST;
1054 }
1055}
1056
Paul Mackerras57900692017-05-16 16:41:20 +10001057static void do_nothing(void *x)
1058{
1059}
1060
1061static unsigned long kvmppc_read_dpdes(struct kvm_vcpu *vcpu)
1062{
1063 int thr, cpu, pcpu, nthreads;
1064 struct kvm_vcpu *v;
1065 unsigned long dpdes;
1066
1067 nthreads = vcpu->kvm->arch.emul_smt_mode;
1068 dpdes = 0;
1069 cpu = vcpu->vcpu_id & ~(nthreads - 1);
1070 for (thr = 0; thr < nthreads; ++thr, ++cpu) {
1071 v = kvmppc_find_vcpu(vcpu->kvm, cpu);
1072 if (!v)
1073 continue;
1074 /*
1075 * If the vcpu is currently running on a physical cpu thread,
1076 * interrupt it in order to pull it out of the guest briefly,
1077 * which will update its vcore->dpdes value.
1078 */
1079 pcpu = READ_ONCE(v->cpu);
1080 if (pcpu >= 0)
1081 smp_call_function_single(pcpu, do_nothing, NULL, 1);
1082 if (kvmppc_doorbell_pending(v))
1083 dpdes |= 1 << thr;
1084 }
1085 return dpdes;
1086}
1087
1088/*
1089 * On POWER9, emulate doorbell-related instructions in order to
1090 * give the guest the illusion of running on a multi-threaded core.
1091 * The instructions emulated are msgsndp, msgclrp, mfspr TIR,
1092 * and mfspr DPDES.
1093 */
1094static int kvmppc_emulate_doorbell_instr(struct kvm_vcpu *vcpu)
1095{
1096 u32 inst, rb, thr;
1097 unsigned long arg;
1098 struct kvm *kvm = vcpu->kvm;
1099 struct kvm_vcpu *tvcpu;
1100
Paul Mackerras57900692017-05-16 16:41:20 +10001101 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &inst) != EMULATE_DONE)
1102 return RESUME_GUEST;
1103 if (get_op(inst) != 31)
1104 return EMULATE_FAIL;
1105 rb = get_rb(inst);
1106 thr = vcpu->vcpu_id & (kvm->arch.emul_smt_mode - 1);
1107 switch (get_xop(inst)) {
1108 case OP_31_XOP_MSGSNDP:
1109 arg = kvmppc_get_gpr(vcpu, rb);
1110 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1111 break;
1112 arg &= 0x3f;
1113 if (arg >= kvm->arch.emul_smt_mode)
1114 break;
1115 tvcpu = kvmppc_find_vcpu(kvm, vcpu->vcpu_id - thr + arg);
1116 if (!tvcpu)
1117 break;
1118 if (!tvcpu->arch.doorbell_request) {
1119 tvcpu->arch.doorbell_request = 1;
1120 kvmppc_fast_vcpu_kick_hv(tvcpu);
1121 }
1122 break;
1123 case OP_31_XOP_MSGCLRP:
1124 arg = kvmppc_get_gpr(vcpu, rb);
1125 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1126 break;
1127 vcpu->arch.vcore->dpdes = 0;
1128 vcpu->arch.doorbell_request = 0;
1129 break;
1130 case OP_31_XOP_MFSPR:
1131 switch (get_sprn(inst)) {
1132 case SPRN_TIR:
1133 arg = thr;
1134 break;
1135 case SPRN_DPDES:
1136 arg = kvmppc_read_dpdes(vcpu);
1137 break;
1138 default:
1139 return EMULATE_FAIL;
1140 }
1141 kvmppc_set_gpr(vcpu, get_rt(inst), arg);
1142 break;
1143 default:
1144 return EMULATE_FAIL;
1145 }
1146 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
1147 return RESUME_GUEST;
1148}
1149
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301150static int kvmppc_handle_exit_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
1151 struct task_struct *tsk)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001152{
1153 int r = RESUME_HOST;
1154
1155 vcpu->stat.sum_exits++;
1156
Paul Mackerras1c9e3d52015-11-12 16:43:48 +11001157 /*
1158 * This can happen if an interrupt occurs in the last stages
1159 * of guest entry or the first stages of guest exit (i.e. after
1160 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1161 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1162 * That can happen due to a bug, or due to a machine check
1163 * occurring at just the wrong time.
1164 */
1165 if (vcpu->arch.shregs.msr & MSR_HV) {
1166 printk(KERN_EMERG "KVM trap in HV mode!\n");
1167 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1168 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1169 vcpu->arch.shregs.msr);
1170 kvmppc_dump_regs(vcpu);
1171 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1172 run->hw.hardware_exit_reason = vcpu->arch.trap;
1173 return RESUME_HOST;
1174 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001175 run->exit_reason = KVM_EXIT_UNKNOWN;
1176 run->ready_for_interrupt_injection = 1;
1177 switch (vcpu->arch.trap) {
1178 /* We're good on these - the host merely wanted to get our attention */
1179 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1180 vcpu->stat.dec_exits++;
1181 r = RESUME_GUEST;
1182 break;
1183 case BOOK3S_INTERRUPT_EXTERNAL:
Paul Mackerras5d00f662014-01-08 21:25:28 +11001184 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerras84f71392016-11-22 14:30:14 +11001185 case BOOK3S_INTERRUPT_H_VIRT:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001186 vcpu->stat.ext_intr_exits++;
1187 r = RESUME_GUEST;
1188 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11001189 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
Mahesh Salgaonkardee6f242014-11-03 15:51:57 +11001190 case BOOK3S_INTERRUPT_HMI:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001191 case BOOK3S_INTERRUPT_PERFMON:
Nicholas Piggin6de66382017-11-05 23:33:55 +11001192 case BOOK3S_INTERRUPT_SYSTEM_RESET:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001193 r = RESUME_GUEST;
1194 break;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001195 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Aravinda Prasade20bbd32017-05-11 16:33:37 +05301196 /* Exit to guest with KVM_EXIT_NMI as exit reason */
1197 run->exit_reason = KVM_EXIT_NMI;
1198 run->hw.hardware_exit_reason = vcpu->arch.trap;
1199 /* Clear out the old NMI status from run->flags */
1200 run->flags &= ~KVM_RUN_PPC_NMI_DISP_MASK;
1201 /* Now set the NMI status */
1202 if (vcpu->arch.mce_evt.disposition == MCE_DISPOSITION_RECOVERED)
1203 run->flags |= KVM_RUN_PPC_NMI_DISP_FULLY_RECOV;
1204 else
1205 run->flags |= KVM_RUN_PPC_NMI_DISP_NOT_RECOV;
1206
1207 r = RESUME_HOST;
1208 /* Print the MCE event to host console. */
1209 machine_check_print_event_info(&vcpu->arch.mce_evt, false);
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001210 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001211 case BOOK3S_INTERRUPT_PROGRAM:
1212 {
1213 ulong flags;
1214 /*
1215 * Normally program interrupts are delivered directly
1216 * to the guest by the hardware, but we can get here
1217 * as a result of a hypervisor emulation interrupt
1218 * (e40) getting turned into a 700 by BML RTAS.
1219 */
1220 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
1221 kvmppc_core_queue_program(vcpu, flags);
1222 r = RESUME_GUEST;
1223 break;
1224 }
1225 case BOOK3S_INTERRUPT_SYSCALL:
1226 {
1227 /* hcall - punt to userspace */
1228 int i;
1229
Liu Ping Fan27025a62013-11-19 14:12:48 +08001230 /* hypercall with MSR_PR has already been handled in rmode,
1231 * and never reaches here.
1232 */
1233
Paul Mackerrasde56a942011-06-29 00:21:34 +00001234 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
1235 for (i = 0; i < 9; ++i)
1236 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
1237 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1238 vcpu->arch.hcall_needed = 1;
1239 r = RESUME_HOST;
1240 break;
1241 }
1242 /*
Paul Mackerras342d3db2011-12-12 12:38:05 +00001243 * We get these next two if the guest accesses a page which it thinks
1244 * it has mapped but which is not actually present, either because
1245 * it is for an emulated I/O device or because the corresonding
1246 * host page has been paged out. Any other HDSI/HISI interrupts
1247 * have been handled already.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001248 */
1249 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001250 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001251 break;
1252 case BOOK3S_INTERRUPT_H_INST_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001253 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
Paul Mackerras32eb1502018-10-08 16:30:56 +11001254 vcpu->arch.fault_dsisr = vcpu->arch.shregs.msr &
1255 DSISR_SRR1_MATCH_64S;
1256 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1257 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001258 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001259 break;
1260 /*
1261 * This occurs if the guest executes an illegal instruction.
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301262 * If the guest debug is disabled, generate a program interrupt
1263 * to the guest. If guest debug is enabled, we need to check
1264 * whether the instruction is a software breakpoint instruction.
1265 * Accordingly return to Guest or Host.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001266 */
1267 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerras4a157d62014-12-03 13:30:39 +11001268 if (vcpu->arch.emul_inst != KVM_INST_FETCH_FAILED)
1269 vcpu->arch.last_inst = kvmppc_need_byteswap(vcpu) ?
1270 swab32(vcpu->arch.emul_inst) :
1271 vcpu->arch.emul_inst;
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301272 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) {
1273 r = kvmppc_emulate_debug_inst(run, vcpu);
1274 } else {
1275 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1276 r = RESUME_GUEST;
1277 }
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001278 break;
1279 /*
1280 * This occurs if the guest (kernel or userspace), does something that
Paul Mackerras57900692017-05-16 16:41:20 +10001281 * is prohibited by HFSCR.
1282 * On POWER9, this could be a doorbell instruction that we need
1283 * to emulate.
1284 * Otherwise, we just generate a program interrupt to the guest.
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001285 */
1286 case BOOK3S_INTERRUPT_H_FAC_UNAVAIL:
Paul Mackerras57900692017-05-16 16:41:20 +10001287 r = EMULATE_FAIL;
Paul Mackerras36ee41d2018-01-30 10:51:32 +11001288 if (((vcpu->arch.hfscr >> 56) == FSCR_MSGP_LG) &&
Paul Mackerras53655dd2018-10-08 16:30:54 +11001289 cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras57900692017-05-16 16:41:20 +10001290 r = kvmppc_emulate_doorbell_instr(vcpu);
1291 if (r == EMULATE_FAIL) {
1292 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1293 r = RESUME_GUEST;
1294 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001295 break;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11001296
1297#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1298 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1299 /*
1300 * This occurs for various TM-related instructions that
1301 * we need to emulate on POWER9 DD2.2. We have already
1302 * handled the cases where the guest was in real-suspend
1303 * mode and was transitioning to transactional state.
1304 */
1305 r = kvmhv_p9_tm_emulation(vcpu);
1306 break;
1307#endif
1308
Suresh Warrierf7af5202016-08-19 15:35:52 +10001309 case BOOK3S_INTERRUPT_HV_RM_HARD:
1310 r = RESUME_PASSTHROUGH;
1311 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001312 default:
1313 kvmppc_dump_regs(vcpu);
1314 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1315 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1316 vcpu->arch.shregs.msr);
Paul Mackerrasf3271d42013-09-20 14:52:41 +10001317 run->hw.hardware_exit_reason = vcpu->arch.trap;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001318 r = RESUME_HOST;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001319 break;
1320 }
1321
Paul Mackerrasde56a942011-06-29 00:21:34 +00001322 return r;
1323}
1324
Paul Mackerras360cae32018-10-08 16:31:04 +11001325static int kvmppc_handle_nested_exit(struct kvm_vcpu *vcpu)
1326{
1327 int r;
1328 int srcu_idx;
1329
1330 vcpu->stat.sum_exits++;
1331
1332 /*
1333 * This can happen if an interrupt occurs in the last stages
1334 * of guest entry or the first stages of guest exit (i.e. after
1335 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1336 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1337 * That can happen due to a bug, or due to a machine check
1338 * occurring at just the wrong time.
1339 */
1340 if (vcpu->arch.shregs.msr & MSR_HV) {
1341 pr_emerg("KVM trap in HV mode while nested!\n");
1342 pr_emerg("trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1343 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1344 vcpu->arch.shregs.msr);
1345 kvmppc_dump_regs(vcpu);
1346 return RESUME_HOST;
1347 }
1348 switch (vcpu->arch.trap) {
1349 /* We're good on these - the host merely wanted to get our attention */
1350 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1351 vcpu->stat.dec_exits++;
1352 r = RESUME_GUEST;
1353 break;
1354 case BOOK3S_INTERRUPT_EXTERNAL:
1355 vcpu->stat.ext_intr_exits++;
1356 r = RESUME_HOST;
1357 break;
1358 case BOOK3S_INTERRUPT_H_DOORBELL:
1359 case BOOK3S_INTERRUPT_H_VIRT:
1360 vcpu->stat.ext_intr_exits++;
1361 r = RESUME_GUEST;
1362 break;
1363 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
1364 case BOOK3S_INTERRUPT_HMI:
1365 case BOOK3S_INTERRUPT_PERFMON:
1366 case BOOK3S_INTERRUPT_SYSTEM_RESET:
1367 r = RESUME_GUEST;
1368 break;
1369 case BOOK3S_INTERRUPT_MACHINE_CHECK:
1370 /* Pass the machine check to the L1 guest */
1371 r = RESUME_HOST;
1372 /* Print the MCE event to host console. */
1373 machine_check_print_event_info(&vcpu->arch.mce_evt, false);
1374 break;
1375 /*
1376 * We get these next two if the guest accesses a page which it thinks
1377 * it has mapped but which is not actually present, either because
1378 * it is for an emulated I/O device or because the corresonding
1379 * host page has been paged out.
1380 */
1381 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
1382 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
1383 r = kvmhv_nested_page_fault(vcpu);
1384 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1385 break;
1386 case BOOK3S_INTERRUPT_H_INST_STORAGE:
1387 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
1388 vcpu->arch.fault_dsisr = kvmppc_get_msr(vcpu) &
1389 DSISR_SRR1_MATCH_64S;
1390 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1391 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
1392 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
1393 r = kvmhv_nested_page_fault(vcpu);
1394 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1395 break;
1396
1397#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1398 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1399 /*
1400 * This occurs for various TM-related instructions that
1401 * we need to emulate on POWER9 DD2.2. We have already
1402 * handled the cases where the guest was in real-suspend
1403 * mode and was transitioning to transactional state.
1404 */
1405 r = kvmhv_p9_tm_emulation(vcpu);
1406 break;
1407#endif
1408
1409 case BOOK3S_INTERRUPT_HV_RM_HARD:
1410 vcpu->arch.trap = 0;
1411 r = RESUME_GUEST;
1412 if (!xive_enabled())
1413 kvmppc_xics_rm_complete(vcpu, 0);
1414 break;
1415 default:
1416 r = RESUME_HOST;
1417 break;
1418 }
1419
1420 return r;
1421}
1422
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301423static int kvm_arch_vcpu_ioctl_get_sregs_hv(struct kvm_vcpu *vcpu,
1424 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001425{
1426 int i;
1427
Paul Mackerrasde56a942011-06-29 00:21:34 +00001428 memset(sregs, 0, sizeof(struct kvm_sregs));
Aneesh Kumar K.V87916442013-08-22 17:08:39 +05301429 sregs->pvr = vcpu->arch.pvr;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001430 for (i = 0; i < vcpu->arch.slb_max; i++) {
1431 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
1432 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1433 }
1434
1435 return 0;
1436}
1437
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301438static int kvm_arch_vcpu_ioctl_set_sregs_hv(struct kvm_vcpu *vcpu,
1439 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001440{
1441 int i, j;
1442
Paul Mackerras9333e6c2014-09-02 16:14:43 +10001443 /* Only accept the same PVR as the host's, since we can't spoof it */
1444 if (sregs->pvr != vcpu->arch.pvr)
1445 return -EINVAL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001446
1447 j = 0;
1448 for (i = 0; i < vcpu->arch.slb_nr; i++) {
1449 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
1450 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
1451 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
1452 ++j;
1453 }
1454 }
1455 vcpu->arch.slb_max = j;
1456
1457 return 0;
1458}
1459
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001460static void kvmppc_set_lpcr(struct kvm_vcpu *vcpu, u64 new_lpcr,
1461 bool preserve_top32)
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001462{
Paul Mackerras8f902b02015-03-20 20:39:38 +11001463 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001464 struct kvmppc_vcore *vc = vcpu->arch.vcore;
1465 u64 mask;
1466
Paul Mackerras8f902b02015-03-20 20:39:38 +11001467 mutex_lock(&kvm->lock);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001468 spin_lock(&vc->lock);
1469 /*
Anton Blanchardd6829162014-01-08 21:25:30 +11001470 * If ILE (interrupt little-endian) has changed, update the
1471 * MSR_LE bit in the intr_msr for each vcpu in this vcore.
1472 */
1473 if ((new_lpcr & LPCR_ILE) != (vc->lpcr & LPCR_ILE)) {
Anton Blanchardd6829162014-01-08 21:25:30 +11001474 struct kvm_vcpu *vcpu;
1475 int i;
1476
Anton Blanchardd6829162014-01-08 21:25:30 +11001477 kvm_for_each_vcpu(i, vcpu, kvm) {
1478 if (vcpu->arch.vcore != vc)
1479 continue;
1480 if (new_lpcr & LPCR_ILE)
1481 vcpu->arch.intr_msr |= MSR_LE;
1482 else
1483 vcpu->arch.intr_msr &= ~MSR_LE;
1484 }
Anton Blanchardd6829162014-01-08 21:25:30 +11001485 }
1486
1487 /*
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001488 * Userspace can only modify DPFD (default prefetch depth),
1489 * ILE (interrupt little-endian) and TC (translation control).
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11001490 * On POWER8 and POWER9 userspace can also modify AIL (alt. interrupt loc.).
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001491 */
1492 mask = LPCR_DPFD | LPCR_ILE | LPCR_TC;
Paul Mackerrase0622bd2014-01-08 21:25:27 +11001493 if (cpu_has_feature(CPU_FTR_ARCH_207S))
1494 mask |= LPCR_AIL;
Paul Mackerras1bc3fe82017-05-22 16:55:16 +10001495 /*
1496 * On POWER9, allow userspace to enable large decrementer for the
1497 * guest, whether or not the host has it enabled.
1498 */
1499 if (cpu_has_feature(CPU_FTR_ARCH_300))
1500 mask |= LPCR_LD;
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001501
1502 /* Broken 32-bit version of LPCR must not clear top bits */
1503 if (preserve_top32)
1504 mask &= 0xFFFFFFFF;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001505 vc->lpcr = (vc->lpcr & ~mask) | (new_lpcr & mask);
1506 spin_unlock(&vc->lock);
Paul Mackerras8f902b02015-03-20 20:39:38 +11001507 mutex_unlock(&kvm->lock);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001508}
1509
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301510static int kvmppc_get_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1511 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001512{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001513 int r = 0;
1514 long int i;
Paul Mackerras31f34382011-12-12 12:26:50 +00001515
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001516 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301517 case KVM_REG_PPC_DEBUG_INST:
1518 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1519 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001520 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001521 *val = get_reg_val(id, 0);
1522 break;
1523 case KVM_REG_PPC_DABR:
1524 *val = get_reg_val(id, vcpu->arch.dabr);
1525 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001526 case KVM_REG_PPC_DABRX:
1527 *val = get_reg_val(id, vcpu->arch.dabrx);
1528 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001529 case KVM_REG_PPC_DSCR:
1530 *val = get_reg_val(id, vcpu->arch.dscr);
1531 break;
1532 case KVM_REG_PPC_PURR:
1533 *val = get_reg_val(id, vcpu->arch.purr);
1534 break;
1535 case KVM_REG_PPC_SPURR:
1536 *val = get_reg_val(id, vcpu->arch.spurr);
1537 break;
1538 case KVM_REG_PPC_AMR:
1539 *val = get_reg_val(id, vcpu->arch.amr);
1540 break;
1541 case KVM_REG_PPC_UAMOR:
1542 *val = get_reg_val(id, vcpu->arch.uamor);
1543 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001544 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRS:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001545 i = id - KVM_REG_PPC_MMCR0;
1546 *val = get_reg_val(id, vcpu->arch.mmcr[i]);
1547 break;
1548 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1549 i = id - KVM_REG_PPC_PMC1;
1550 *val = get_reg_val(id, vcpu->arch.pmc[i]);
Paul Mackerras31f34382011-12-12 12:26:50 +00001551 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001552 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1553 i = id - KVM_REG_PPC_SPMC1;
1554 *val = get_reg_val(id, vcpu->arch.spmc[i]);
1555 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001556 case KVM_REG_PPC_SIAR:
1557 *val = get_reg_val(id, vcpu->arch.siar);
1558 break;
1559 case KVM_REG_PPC_SDAR:
1560 *val = get_reg_val(id, vcpu->arch.sdar);
1561 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001562 case KVM_REG_PPC_SIER:
1563 *val = get_reg_val(id, vcpu->arch.sier);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001564 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001565 case KVM_REG_PPC_IAMR:
1566 *val = get_reg_val(id, vcpu->arch.iamr);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001567 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001568 case KVM_REG_PPC_PSPB:
1569 *val = get_reg_val(id, vcpu->arch.pspb);
1570 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001571 case KVM_REG_PPC_DPDES:
1572 *val = get_reg_val(id, vcpu->arch.vcore->dpdes);
1573 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001574 case KVM_REG_PPC_VTB:
1575 *val = get_reg_val(id, vcpu->arch.vcore->vtb);
1576 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001577 case KVM_REG_PPC_DAWR:
1578 *val = get_reg_val(id, vcpu->arch.dawr);
1579 break;
1580 case KVM_REG_PPC_DAWRX:
1581 *val = get_reg_val(id, vcpu->arch.dawrx);
1582 break;
1583 case KVM_REG_PPC_CIABR:
1584 *val = get_reg_val(id, vcpu->arch.ciabr);
1585 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001586 case KVM_REG_PPC_CSIGR:
1587 *val = get_reg_val(id, vcpu->arch.csigr);
1588 break;
1589 case KVM_REG_PPC_TACR:
1590 *val = get_reg_val(id, vcpu->arch.tacr);
1591 break;
1592 case KVM_REG_PPC_TCSCR:
1593 *val = get_reg_val(id, vcpu->arch.tcscr);
1594 break;
1595 case KVM_REG_PPC_PID:
1596 *val = get_reg_val(id, vcpu->arch.pid);
1597 break;
1598 case KVM_REG_PPC_ACOP:
1599 *val = get_reg_val(id, vcpu->arch.acop);
1600 break;
1601 case KVM_REG_PPC_WORT:
1602 *val = get_reg_val(id, vcpu->arch.wort);
1603 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001604 case KVM_REG_PPC_TIDR:
1605 *val = get_reg_val(id, vcpu->arch.tid);
1606 break;
1607 case KVM_REG_PPC_PSSCR:
1608 *val = get_reg_val(id, vcpu->arch.psscr);
1609 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001610 case KVM_REG_PPC_VPA_ADDR:
1611 spin_lock(&vcpu->arch.vpa_update_lock);
1612 *val = get_reg_val(id, vcpu->arch.vpa.next_gpa);
1613 spin_unlock(&vcpu->arch.vpa_update_lock);
1614 break;
1615 case KVM_REG_PPC_VPA_SLB:
1616 spin_lock(&vcpu->arch.vpa_update_lock);
1617 val->vpaval.addr = vcpu->arch.slb_shadow.next_gpa;
1618 val->vpaval.length = vcpu->arch.slb_shadow.len;
1619 spin_unlock(&vcpu->arch.vpa_update_lock);
1620 break;
1621 case KVM_REG_PPC_VPA_DTL:
1622 spin_lock(&vcpu->arch.vpa_update_lock);
1623 val->vpaval.addr = vcpu->arch.dtl.next_gpa;
1624 val->vpaval.length = vcpu->arch.dtl.len;
1625 spin_unlock(&vcpu->arch.vpa_update_lock);
1626 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001627 case KVM_REG_PPC_TB_OFFSET:
1628 *val = get_reg_val(id, vcpu->arch.vcore->tb_offset);
1629 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001630 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001631 case KVM_REG_PPC_LPCR_64:
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001632 *val = get_reg_val(id, vcpu->arch.vcore->lpcr);
1633 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001634 case KVM_REG_PPC_PPR:
1635 *val = get_reg_val(id, vcpu->arch.ppr);
1636 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001637#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1638 case KVM_REG_PPC_TFHAR:
1639 *val = get_reg_val(id, vcpu->arch.tfhar);
1640 break;
1641 case KVM_REG_PPC_TFIAR:
1642 *val = get_reg_val(id, vcpu->arch.tfiar);
1643 break;
1644 case KVM_REG_PPC_TEXASR:
1645 *val = get_reg_val(id, vcpu->arch.texasr);
1646 break;
1647 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
1648 i = id - KVM_REG_PPC_TM_GPR0;
1649 *val = get_reg_val(id, vcpu->arch.gpr_tm[i]);
1650 break;
1651 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
1652 {
1653 int j;
1654 i = id - KVM_REG_PPC_TM_VSR0;
1655 if (i < 32)
1656 for (j = 0; j < TS_FPRWIDTH; j++)
1657 val->vsxval[j] = vcpu->arch.fp_tm.fpr[i][j];
1658 else {
1659 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1660 val->vval = vcpu->arch.vr_tm.vr[i-32];
1661 else
1662 r = -ENXIO;
1663 }
1664 break;
1665 }
1666 case KVM_REG_PPC_TM_CR:
1667 *val = get_reg_val(id, vcpu->arch.cr_tm);
1668 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11001669 case KVM_REG_PPC_TM_XER:
1670 *val = get_reg_val(id, vcpu->arch.xer_tm);
1671 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001672 case KVM_REG_PPC_TM_LR:
1673 *val = get_reg_val(id, vcpu->arch.lr_tm);
1674 break;
1675 case KVM_REG_PPC_TM_CTR:
1676 *val = get_reg_val(id, vcpu->arch.ctr_tm);
1677 break;
1678 case KVM_REG_PPC_TM_FPSCR:
1679 *val = get_reg_val(id, vcpu->arch.fp_tm.fpscr);
1680 break;
1681 case KVM_REG_PPC_TM_AMR:
1682 *val = get_reg_val(id, vcpu->arch.amr_tm);
1683 break;
1684 case KVM_REG_PPC_TM_PPR:
1685 *val = get_reg_val(id, vcpu->arch.ppr_tm);
1686 break;
1687 case KVM_REG_PPC_TM_VRSAVE:
1688 *val = get_reg_val(id, vcpu->arch.vrsave_tm);
1689 break;
1690 case KVM_REG_PPC_TM_VSCR:
1691 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1692 *val = get_reg_val(id, vcpu->arch.vr_tm.vscr.u[3]);
1693 else
1694 r = -ENXIO;
1695 break;
1696 case KVM_REG_PPC_TM_DSCR:
1697 *val = get_reg_val(id, vcpu->arch.dscr_tm);
1698 break;
1699 case KVM_REG_PPC_TM_TAR:
1700 *val = get_reg_val(id, vcpu->arch.tar_tm);
1701 break;
1702#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10001703 case KVM_REG_PPC_ARCH_COMPAT:
1704 *val = get_reg_val(id, vcpu->arch.vcore->arch_compat);
1705 break;
Paul Mackerras58555642018-01-12 20:55:20 +11001706 case KVM_REG_PPC_DEC_EXPIRY:
1707 *val = get_reg_val(id, vcpu->arch.dec_expires +
1708 vcpu->arch.vcore->tb_offset);
1709 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10001710 case KVM_REG_PPC_ONLINE:
1711 *val = get_reg_val(id, vcpu->arch.online);
1712 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001713 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001714 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001715 break;
1716 }
1717
1718 return r;
1719}
1720
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301721static int kvmppc_set_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1722 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001723{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001724 int r = 0;
1725 long int i;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001726 unsigned long addr, len;
Paul Mackerras31f34382011-12-12 12:26:50 +00001727
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001728 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001729 case KVM_REG_PPC_HIOR:
Paul Mackerras31f34382011-12-12 12:26:50 +00001730 /* Only allow this to be set to zero */
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001731 if (set_reg_val(id, *val))
Paul Mackerras31f34382011-12-12 12:26:50 +00001732 r = -EINVAL;
1733 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001734 case KVM_REG_PPC_DABR:
1735 vcpu->arch.dabr = set_reg_val(id, *val);
1736 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001737 case KVM_REG_PPC_DABRX:
1738 vcpu->arch.dabrx = set_reg_val(id, *val) & ~DABRX_HYP;
1739 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001740 case KVM_REG_PPC_DSCR:
1741 vcpu->arch.dscr = set_reg_val(id, *val);
1742 break;
1743 case KVM_REG_PPC_PURR:
1744 vcpu->arch.purr = set_reg_val(id, *val);
1745 break;
1746 case KVM_REG_PPC_SPURR:
1747 vcpu->arch.spurr = set_reg_val(id, *val);
1748 break;
1749 case KVM_REG_PPC_AMR:
1750 vcpu->arch.amr = set_reg_val(id, *val);
1751 break;
1752 case KVM_REG_PPC_UAMOR:
1753 vcpu->arch.uamor = set_reg_val(id, *val);
1754 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001755 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRS:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001756 i = id - KVM_REG_PPC_MMCR0;
1757 vcpu->arch.mmcr[i] = set_reg_val(id, *val);
1758 break;
1759 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1760 i = id - KVM_REG_PPC_PMC1;
1761 vcpu->arch.pmc[i] = set_reg_val(id, *val);
1762 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001763 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1764 i = id - KVM_REG_PPC_SPMC1;
1765 vcpu->arch.spmc[i] = set_reg_val(id, *val);
1766 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001767 case KVM_REG_PPC_SIAR:
1768 vcpu->arch.siar = set_reg_val(id, *val);
1769 break;
1770 case KVM_REG_PPC_SDAR:
1771 vcpu->arch.sdar = set_reg_val(id, *val);
1772 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001773 case KVM_REG_PPC_SIER:
1774 vcpu->arch.sier = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001775 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001776 case KVM_REG_PPC_IAMR:
1777 vcpu->arch.iamr = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001778 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001779 case KVM_REG_PPC_PSPB:
1780 vcpu->arch.pspb = set_reg_val(id, *val);
1781 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001782 case KVM_REG_PPC_DPDES:
1783 vcpu->arch.vcore->dpdes = set_reg_val(id, *val);
1784 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001785 case KVM_REG_PPC_VTB:
1786 vcpu->arch.vcore->vtb = set_reg_val(id, *val);
1787 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001788 case KVM_REG_PPC_DAWR:
1789 vcpu->arch.dawr = set_reg_val(id, *val);
1790 break;
1791 case KVM_REG_PPC_DAWRX:
1792 vcpu->arch.dawrx = set_reg_val(id, *val) & ~DAWRX_HYP;
1793 break;
1794 case KVM_REG_PPC_CIABR:
1795 vcpu->arch.ciabr = set_reg_val(id, *val);
1796 /* Don't allow setting breakpoints in hypervisor code */
1797 if ((vcpu->arch.ciabr & CIABR_PRIV) == CIABR_PRIV_HYPER)
1798 vcpu->arch.ciabr &= ~CIABR_PRIV; /* disable */
1799 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001800 case KVM_REG_PPC_CSIGR:
1801 vcpu->arch.csigr = set_reg_val(id, *val);
1802 break;
1803 case KVM_REG_PPC_TACR:
1804 vcpu->arch.tacr = set_reg_val(id, *val);
1805 break;
1806 case KVM_REG_PPC_TCSCR:
1807 vcpu->arch.tcscr = set_reg_val(id, *val);
1808 break;
1809 case KVM_REG_PPC_PID:
1810 vcpu->arch.pid = set_reg_val(id, *val);
1811 break;
1812 case KVM_REG_PPC_ACOP:
1813 vcpu->arch.acop = set_reg_val(id, *val);
1814 break;
1815 case KVM_REG_PPC_WORT:
1816 vcpu->arch.wort = set_reg_val(id, *val);
1817 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001818 case KVM_REG_PPC_TIDR:
1819 vcpu->arch.tid = set_reg_val(id, *val);
1820 break;
1821 case KVM_REG_PPC_PSSCR:
1822 vcpu->arch.psscr = set_reg_val(id, *val) & PSSCR_GUEST_VIS;
1823 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001824 case KVM_REG_PPC_VPA_ADDR:
1825 addr = set_reg_val(id, *val);
1826 r = -EINVAL;
1827 if (!addr && (vcpu->arch.slb_shadow.next_gpa ||
1828 vcpu->arch.dtl.next_gpa))
1829 break;
1830 r = set_vpa(vcpu, &vcpu->arch.vpa, addr, sizeof(struct lppaca));
1831 break;
1832 case KVM_REG_PPC_VPA_SLB:
1833 addr = val->vpaval.addr;
1834 len = val->vpaval.length;
1835 r = -EINVAL;
1836 if (addr && !vcpu->arch.vpa.next_gpa)
1837 break;
1838 r = set_vpa(vcpu, &vcpu->arch.slb_shadow, addr, len);
1839 break;
1840 case KVM_REG_PPC_VPA_DTL:
1841 addr = val->vpaval.addr;
1842 len = val->vpaval.length;
1843 r = -EINVAL;
Paul Mackerras9f8c8c72012-10-15 01:18:37 +00001844 if (addr && (len < sizeof(struct dtl_entry) ||
1845 !vcpu->arch.vpa.next_gpa))
Paul Mackerras55b665b2012-09-25 20:33:06 +00001846 break;
1847 len -= len % sizeof(struct dtl_entry);
1848 r = set_vpa(vcpu, &vcpu->arch.dtl, addr, len);
1849 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001850 case KVM_REG_PPC_TB_OFFSET:
1851 /* round up to multiple of 2^24 */
1852 vcpu->arch.vcore->tb_offset =
1853 ALIGN(set_reg_val(id, *val), 1UL << 24);
1854 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001855 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001856 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), true);
1857 break;
1858 case KVM_REG_PPC_LPCR_64:
1859 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), false);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001860 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001861 case KVM_REG_PPC_PPR:
1862 vcpu->arch.ppr = set_reg_val(id, *val);
1863 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001864#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1865 case KVM_REG_PPC_TFHAR:
1866 vcpu->arch.tfhar = set_reg_val(id, *val);
1867 break;
1868 case KVM_REG_PPC_TFIAR:
1869 vcpu->arch.tfiar = set_reg_val(id, *val);
1870 break;
1871 case KVM_REG_PPC_TEXASR:
1872 vcpu->arch.texasr = set_reg_val(id, *val);
1873 break;
1874 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
1875 i = id - KVM_REG_PPC_TM_GPR0;
1876 vcpu->arch.gpr_tm[i] = set_reg_val(id, *val);
1877 break;
1878 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
1879 {
1880 int j;
1881 i = id - KVM_REG_PPC_TM_VSR0;
1882 if (i < 32)
1883 for (j = 0; j < TS_FPRWIDTH; j++)
1884 vcpu->arch.fp_tm.fpr[i][j] = val->vsxval[j];
1885 else
1886 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1887 vcpu->arch.vr_tm.vr[i-32] = val->vval;
1888 else
1889 r = -ENXIO;
1890 break;
1891 }
1892 case KVM_REG_PPC_TM_CR:
1893 vcpu->arch.cr_tm = set_reg_val(id, *val);
1894 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11001895 case KVM_REG_PPC_TM_XER:
1896 vcpu->arch.xer_tm = set_reg_val(id, *val);
1897 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001898 case KVM_REG_PPC_TM_LR:
1899 vcpu->arch.lr_tm = set_reg_val(id, *val);
1900 break;
1901 case KVM_REG_PPC_TM_CTR:
1902 vcpu->arch.ctr_tm = set_reg_val(id, *val);
1903 break;
1904 case KVM_REG_PPC_TM_FPSCR:
1905 vcpu->arch.fp_tm.fpscr = set_reg_val(id, *val);
1906 break;
1907 case KVM_REG_PPC_TM_AMR:
1908 vcpu->arch.amr_tm = set_reg_val(id, *val);
1909 break;
1910 case KVM_REG_PPC_TM_PPR:
1911 vcpu->arch.ppr_tm = set_reg_val(id, *val);
1912 break;
1913 case KVM_REG_PPC_TM_VRSAVE:
1914 vcpu->arch.vrsave_tm = set_reg_val(id, *val);
1915 break;
1916 case KVM_REG_PPC_TM_VSCR:
1917 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1918 vcpu->arch.vr.vscr.u[3] = set_reg_val(id, *val);
1919 else
1920 r = - ENXIO;
1921 break;
1922 case KVM_REG_PPC_TM_DSCR:
1923 vcpu->arch.dscr_tm = set_reg_val(id, *val);
1924 break;
1925 case KVM_REG_PPC_TM_TAR:
1926 vcpu->arch.tar_tm = set_reg_val(id, *val);
1927 break;
1928#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10001929 case KVM_REG_PPC_ARCH_COMPAT:
1930 r = kvmppc_set_arch_compat(vcpu, set_reg_val(id, *val));
1931 break;
Paul Mackerras58555642018-01-12 20:55:20 +11001932 case KVM_REG_PPC_DEC_EXPIRY:
1933 vcpu->arch.dec_expires = set_reg_val(id, *val) -
1934 vcpu->arch.vcore->tb_offset;
1935 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10001936 case KVM_REG_PPC_ONLINE:
Paul Mackerras7aa15842018-04-20 19:53:22 +10001937 i = set_reg_val(id, *val);
1938 if (i && !vcpu->arch.online)
1939 atomic_inc(&vcpu->arch.vcore->online_count);
1940 else if (!i && vcpu->arch.online)
1941 atomic_dec(&vcpu->arch.vcore->online_count);
1942 vcpu->arch.online = i;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10001943 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001944 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001945 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001946 break;
1947 }
1948
1949 return r;
1950}
1951
Paul Mackerras45c940b2016-11-18 17:43:30 +11001952/*
1953 * On POWER9, threads are independent and can be in different partitions.
1954 * Therefore we consider each thread to be a subcore.
1955 * There is a restriction that all threads have to be in the same
1956 * MMU mode (radix or HPT), unfortunately, but since we only support
1957 * HPT guests on a HPT host so far, that isn't an impediment yet.
1958 */
Paul Mackerras516f7892017-10-16 16:11:57 +11001959static int threads_per_vcore(struct kvm *kvm)
Paul Mackerras45c940b2016-11-18 17:43:30 +11001960{
Paul Mackerras516f7892017-10-16 16:11:57 +11001961 if (kvm->arch.threads_indep)
Paul Mackerras45c940b2016-11-18 17:43:30 +11001962 return 1;
1963 return threads_per_subcore;
1964}
1965
Sam Bobroff1e175d22018-07-25 16:12:02 +10001966static struct kvmppc_vcore *kvmppc_vcore_create(struct kvm *kvm, int id)
Stewart Smithde9bdd12014-07-18 14:18:42 +10001967{
1968 struct kvmppc_vcore *vcore;
1969
1970 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
1971
1972 if (vcore == NULL)
1973 return NULL;
1974
Stewart Smithde9bdd12014-07-18 14:18:42 +10001975 spin_lock_init(&vcore->lock);
Paul Mackerras2711e242014-12-04 16:43:28 +11001976 spin_lock_init(&vcore->stoltb_lock);
Marcelo Tosatti85773702016-02-19 09:46:39 +01001977 init_swait_queue_head(&vcore->wq);
Stewart Smithde9bdd12014-07-18 14:18:42 +10001978 vcore->preempt_tb = TB_NIL;
1979 vcore->lpcr = kvm->arch.lpcr;
Sam Bobroff1e175d22018-07-25 16:12:02 +10001980 vcore->first_vcpuid = id;
Stewart Smithde9bdd12014-07-18 14:18:42 +10001981 vcore->kvm = kvm;
Paul Mackerrasec257162015-06-24 21:18:03 +10001982 INIT_LIST_HEAD(&vcore->preempt_list);
Stewart Smithde9bdd12014-07-18 14:18:42 +10001983
1984 return vcore;
1985}
1986
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11001987#ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
1988static struct debugfs_timings_element {
1989 const char *name;
1990 size_t offset;
1991} timings[] = {
1992 {"rm_entry", offsetof(struct kvm_vcpu, arch.rm_entry)},
1993 {"rm_intr", offsetof(struct kvm_vcpu, arch.rm_intr)},
1994 {"rm_exit", offsetof(struct kvm_vcpu, arch.rm_exit)},
1995 {"guest", offsetof(struct kvm_vcpu, arch.guest_time)},
1996 {"cede", offsetof(struct kvm_vcpu, arch.cede_time)},
1997};
1998
Thomas Meyer4bb817ed2017-09-03 14:19:31 +02001999#define N_TIMINGS (ARRAY_SIZE(timings))
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002000
2001struct debugfs_timings_state {
2002 struct kvm_vcpu *vcpu;
2003 unsigned int buflen;
2004 char buf[N_TIMINGS * 100];
2005};
2006
2007static int debugfs_timings_open(struct inode *inode, struct file *file)
2008{
2009 struct kvm_vcpu *vcpu = inode->i_private;
2010 struct debugfs_timings_state *p;
2011
2012 p = kzalloc(sizeof(*p), GFP_KERNEL);
2013 if (!p)
2014 return -ENOMEM;
2015
2016 kvm_get_kvm(vcpu->kvm);
2017 p->vcpu = vcpu;
2018 file->private_data = p;
2019
2020 return nonseekable_open(inode, file);
2021}
2022
2023static int debugfs_timings_release(struct inode *inode, struct file *file)
2024{
2025 struct debugfs_timings_state *p = file->private_data;
2026
2027 kvm_put_kvm(p->vcpu->kvm);
2028 kfree(p);
2029 return 0;
2030}
2031
2032static ssize_t debugfs_timings_read(struct file *file, char __user *buf,
2033 size_t len, loff_t *ppos)
2034{
2035 struct debugfs_timings_state *p = file->private_data;
2036 struct kvm_vcpu *vcpu = p->vcpu;
2037 char *s, *buf_end;
2038 struct kvmhv_tb_accumulator tb;
2039 u64 count;
2040 loff_t pos;
2041 ssize_t n;
2042 int i, loops;
2043 bool ok;
2044
2045 if (!p->buflen) {
2046 s = p->buf;
2047 buf_end = s + sizeof(p->buf);
2048 for (i = 0; i < N_TIMINGS; ++i) {
2049 struct kvmhv_tb_accumulator *acc;
2050
2051 acc = (struct kvmhv_tb_accumulator *)
2052 ((unsigned long)vcpu + timings[i].offset);
2053 ok = false;
2054 for (loops = 0; loops < 1000; ++loops) {
2055 count = acc->seqcount;
2056 if (!(count & 1)) {
2057 smp_rmb();
2058 tb = *acc;
2059 smp_rmb();
2060 if (count == acc->seqcount) {
2061 ok = true;
2062 break;
2063 }
2064 }
2065 udelay(1);
2066 }
2067 if (!ok)
2068 snprintf(s, buf_end - s, "%s: stuck\n",
2069 timings[i].name);
2070 else
2071 snprintf(s, buf_end - s,
2072 "%s: %llu %llu %llu %llu\n",
2073 timings[i].name, count / 2,
2074 tb_to_ns(tb.tb_total),
2075 tb_to_ns(tb.tb_min),
2076 tb_to_ns(tb.tb_max));
2077 s += strlen(s);
2078 }
2079 p->buflen = s - p->buf;
2080 }
2081
2082 pos = *ppos;
2083 if (pos >= p->buflen)
2084 return 0;
2085 if (len > p->buflen - pos)
2086 len = p->buflen - pos;
2087 n = copy_to_user(buf, p->buf + pos, len);
2088 if (n) {
2089 if (n == len)
2090 return -EFAULT;
2091 len -= n;
2092 }
2093 *ppos = pos + len;
2094 return len;
2095}
2096
2097static ssize_t debugfs_timings_write(struct file *file, const char __user *buf,
2098 size_t len, loff_t *ppos)
2099{
2100 return -EACCES;
2101}
2102
2103static const struct file_operations debugfs_timings_ops = {
2104 .owner = THIS_MODULE,
2105 .open = debugfs_timings_open,
2106 .release = debugfs_timings_release,
2107 .read = debugfs_timings_read,
2108 .write = debugfs_timings_write,
2109 .llseek = generic_file_llseek,
2110};
2111
2112/* Create a debugfs directory for the vcpu */
2113static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2114{
2115 char buf[16];
2116 struct kvm *kvm = vcpu->kvm;
2117
2118 snprintf(buf, sizeof(buf), "vcpu%u", id);
2119 if (IS_ERR_OR_NULL(kvm->arch.debugfs_dir))
2120 return;
2121 vcpu->arch.debugfs_dir = debugfs_create_dir(buf, kvm->arch.debugfs_dir);
2122 if (IS_ERR_OR_NULL(vcpu->arch.debugfs_dir))
2123 return;
2124 vcpu->arch.debugfs_timings =
2125 debugfs_create_file("timings", 0444, vcpu->arch.debugfs_dir,
2126 vcpu, &debugfs_timings_ops);
2127}
2128
2129#else /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2130static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2131{
2132}
2133#endif /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2134
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302135static struct kvm_vcpu *kvmppc_core_vcpu_create_hv(struct kvm *kvm,
2136 unsigned int id)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002137{
2138 struct kvm_vcpu *vcpu;
Paul Mackerras3c313522017-02-06 13:24:41 +11002139 int err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002140 int core;
2141 struct kvmppc_vcore *vcore;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002142
Paul Mackerras371fefd2011-06-29 00:23:08 +00002143 err = -ENOMEM;
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002144 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002145 if (!vcpu)
2146 goto out;
2147
2148 err = kvm_vcpu_init(vcpu, kvm, id);
2149 if (err)
2150 goto free_vcpu;
2151
2152 vcpu->arch.shared = &vcpu->arch.shregs;
Alexander Graf5deb8e72014-04-24 13:46:24 +02002153#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2154 /*
2155 * The shared struct is never shared on HV,
2156 * so we can always use host endianness
2157 */
2158#ifdef __BIG_ENDIAN__
2159 vcpu->arch.shared_big_endian = true;
2160#else
2161 vcpu->arch.shared_big_endian = false;
2162#endif
2163#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +00002164 vcpu->arch.mmcr[0] = MMCR0_FC;
2165 vcpu->arch.ctrl = CTRL_RUNLATCH;
2166 /* default to host PVR, since we can't spoof it */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302167 kvmppc_set_pvr_hv(vcpu, mfspr(SPRN_PVR));
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002168 spin_lock_init(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002169 spin_lock_init(&vcpu->arch.tbacct_lock);
2170 vcpu->arch.busy_preempt = TB_NIL;
Anton Blanchardd6829162014-01-08 21:25:30 +11002171 vcpu->arch.intr_msr = MSR_SF | MSR_ME;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002172
Paul Mackerras769377f2017-02-15 14:30:17 +11002173 /*
2174 * Set the default HFSCR for the guest from the host value.
2175 * This value is only used on POWER9.
Paul Mackerras57900692017-05-16 16:41:20 +10002176 * On POWER9, we want to virtualize the doorbell facility, so we
2177 * turn off the HFSCR bit, which causes those instructions to trap.
Paul Mackerras769377f2017-02-15 14:30:17 +11002178 */
2179 vcpu->arch.hfscr = mfspr(SPRN_HFSCR);
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002180 if (cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
2181 vcpu->arch.hfscr |= HFSCR_TM;
2182 else if (!cpu_has_feature(CPU_FTR_TM_COMP))
Paul Mackerras769377f2017-02-15 14:30:17 +11002183 vcpu->arch.hfscr &= ~HFSCR_TM;
Paul Mackerras57900692017-05-16 16:41:20 +10002184 if (cpu_has_feature(CPU_FTR_ARCH_300))
2185 vcpu->arch.hfscr &= ~HFSCR_MSGP;
Paul Mackerras769377f2017-02-15 14:30:17 +11002186
Paul Mackerrasde56a942011-06-29 00:21:34 +00002187 kvmppc_mmu_book3s_hv_init(vcpu);
2188
Paul Mackerras8455d792012-10-15 01:17:42 +00002189 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002190
2191 init_waitqueue_head(&vcpu->arch.cpu_run);
2192
2193 mutex_lock(&kvm->lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002194 vcore = NULL;
2195 err = -EINVAL;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002196 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasb5c6f762018-07-26 15:38:41 +10002197 if (id >= (KVM_MAX_VCPUS * kvm->arch.emul_smt_mode)) {
2198 pr_devel("KVM: VCPU ID too high\n");
2199 core = KVM_MAX_VCORES;
2200 } else {
2201 BUG_ON(kvm->arch.smt_mode != 1);
2202 core = kvmppc_pack_vcpu_id(kvm, id);
2203 }
Sam Bobroff1e175d22018-07-25 16:12:02 +10002204 } else {
2205 core = id / kvm->arch.smt_mode;
2206 }
Paul Mackerras3c313522017-02-06 13:24:41 +11002207 if (core < KVM_MAX_VCORES) {
2208 vcore = kvm->arch.vcores[core];
Sam Bobroff1e175d22018-07-25 16:12:02 +10002209 if (vcore && cpu_has_feature(CPU_FTR_ARCH_300)) {
2210 pr_devel("KVM: collision on id %u", id);
2211 vcore = NULL;
2212 } else if (!vcore) {
Paul Mackerras3c313522017-02-06 13:24:41 +11002213 err = -ENOMEM;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002214 vcore = kvmppc_vcore_create(kvm,
2215 id & ~(kvm->arch.smt_mode - 1));
Paul Mackerras3c313522017-02-06 13:24:41 +11002216 kvm->arch.vcores[core] = vcore;
2217 kvm->arch.online_vcores++;
2218 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002219 }
2220 mutex_unlock(&kvm->lock);
2221
2222 if (!vcore)
2223 goto free_vcpu;
2224
2225 spin_lock(&vcore->lock);
2226 ++vcore->num_threads;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002227 spin_unlock(&vcore->lock);
2228 vcpu->arch.vcore = vcore;
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11002229 vcpu->arch.ptid = vcpu->vcpu_id - vcore->first_vcpuid;
Paul Mackerrasec257162015-06-24 21:18:03 +10002230 vcpu->arch.thread_cpu = -1;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002231 vcpu->arch.prev_cpu = -1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002232
Alexander Grafaf8f38b2011-08-10 13:57:08 +02002233 vcpu->arch.cpu_type = KVM_CPU_3S_64;
2234 kvmppc_sanity_check(vcpu);
2235
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002236 debugfs_vcpu_init(vcpu, id);
2237
Paul Mackerrasde56a942011-06-29 00:21:34 +00002238 return vcpu;
2239
2240free_vcpu:
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002241 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002242out:
2243 return ERR_PTR(err);
2244}
2245
Paul Mackerras3c313522017-02-06 13:24:41 +11002246static int kvmhv_set_smt_mode(struct kvm *kvm, unsigned long smt_mode,
2247 unsigned long flags)
2248{
2249 int err;
Paul Mackerras57900692017-05-16 16:41:20 +10002250 int esmt = 0;
Paul Mackerras3c313522017-02-06 13:24:41 +11002251
2252 if (flags)
2253 return -EINVAL;
2254 if (smt_mode > MAX_SMT_THREADS || !is_power_of_2(smt_mode))
2255 return -EINVAL;
2256 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
2257 /*
2258 * On POWER8 (or POWER7), the threading mode is "strict",
2259 * so we pack smt_mode vcpus per vcore.
2260 */
2261 if (smt_mode > threads_per_subcore)
2262 return -EINVAL;
2263 } else {
2264 /*
2265 * On POWER9, the threading mode is "loose",
2266 * so each vcpu gets its own vcore.
2267 */
Paul Mackerras57900692017-05-16 16:41:20 +10002268 esmt = smt_mode;
Paul Mackerras3c313522017-02-06 13:24:41 +11002269 smt_mode = 1;
2270 }
2271 mutex_lock(&kvm->lock);
2272 err = -EBUSY;
2273 if (!kvm->arch.online_vcores) {
2274 kvm->arch.smt_mode = smt_mode;
Paul Mackerras57900692017-05-16 16:41:20 +10002275 kvm->arch.emul_smt_mode = esmt;
Paul Mackerras3c313522017-02-06 13:24:41 +11002276 err = 0;
2277 }
2278 mutex_unlock(&kvm->lock);
2279
2280 return err;
2281}
2282
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002283static void unpin_vpa(struct kvm *kvm, struct kvmppc_vpa *vpa)
2284{
2285 if (vpa->pinned_addr)
2286 kvmppc_unpin_guest_page(kvm, vpa->pinned_addr, vpa->gpa,
2287 vpa->dirty);
2288}
2289
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302290static void kvmppc_core_vcpu_free_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002291{
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002292 spin_lock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002293 unpin_vpa(vcpu->kvm, &vcpu->arch.dtl);
2294 unpin_vpa(vcpu->kvm, &vcpu->arch.slb_shadow);
2295 unpin_vpa(vcpu->kvm, &vcpu->arch.vpa);
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002296 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002297 kvm_vcpu_uninit(vcpu);
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002298 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002299}
2300
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302301static int kvmppc_core_check_requests_hv(struct kvm_vcpu *vcpu)
2302{
2303 /* Indicate we want to get back into the guest */
2304 return 1;
2305}
2306
Paul Mackerras19ccb762011-07-23 17:42:46 +10002307static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002308{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002309 unsigned long dec_nsec, now;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002310
Paul Mackerras19ccb762011-07-23 17:42:46 +10002311 now = get_tb();
2312 if (now > vcpu->arch.dec_expires) {
2313 /* decrementer has already gone negative */
2314 kvmppc_core_queue_dec(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -06002315 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002316 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002317 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10002318 dec_nsec = (vcpu->arch.dec_expires - now) * NSEC_PER_SEC
2319 / tb_ticks_per_sec;
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002320 hrtimer_start(&vcpu->arch.dec_timer, dec_nsec, HRTIMER_MODE_REL);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002321 vcpu->arch.timer_running = 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002322}
2323
Paul Mackerras19ccb762011-07-23 17:42:46 +10002324static void kvmppc_end_cede(struct kvm_vcpu *vcpu)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002325{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002326 vcpu->arch.ceded = 0;
2327 if (vcpu->arch.timer_running) {
2328 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2329 vcpu->arch.timer_running = 0;
2330 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002331}
2332
Paul Mackerras8b24e692017-06-26 15:45:51 +10002333extern int __kvmppc_vcore_entry(void);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002334
2335static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
2336 struct kvm_vcpu *vcpu)
2337{
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002338 u64 now;
2339
Paul Mackerras371fefd2011-06-29 00:23:08 +00002340 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
2341 return;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002342 spin_lock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002343 now = mftb();
2344 vcpu->arch.busy_stolen += vcore_stolen_time(vc, now) -
2345 vcpu->arch.stolen_logged;
2346 vcpu->arch.busy_preempt = now;
2347 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002348 spin_unlock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002349 --vc->n_runnable;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002350 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], NULL);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002351}
2352
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002353static int kvmppc_grab_hwthread(int cpu)
2354{
2355 struct paca_struct *tpaca;
Paul Mackerrasb754c732014-09-02 16:14:42 +10002356 long timeout = 10000;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002357
Nicholas Piggind2e60072018-02-14 01:08:12 +10002358 tpaca = paca_ptrs[cpu];
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002359
2360 /* Ensure the thread won't go into the kernel if it wakes */
Paul Mackerras7b444c62012-10-15 01:16:14 +00002361 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002362 tpaca->kvm_hstate.kvm_vcore = NULL;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002363 tpaca->kvm_hstate.napping = 0;
2364 smp_wmb();
2365 tpaca->kvm_hstate.hwthread_req = 1;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002366
2367 /*
2368 * If the thread is already executing in the kernel (e.g. handling
2369 * a stray interrupt), wait for it to get back to nap mode.
2370 * The smp_mb() is to ensure that our setting of hwthread_req
2371 * is visible before we look at hwthread_state, so if this
2372 * races with the code at system_reset_pSeries and the thread
2373 * misses our setting of hwthread_req, we are sure to see its
2374 * setting of hwthread_state, and vice versa.
2375 */
2376 smp_mb();
2377 while (tpaca->kvm_hstate.hwthread_state == KVM_HWTHREAD_IN_KERNEL) {
2378 if (--timeout <= 0) {
2379 pr_err("KVM: couldn't grab cpu %d\n", cpu);
2380 return -EBUSY;
2381 }
2382 udelay(1);
2383 }
2384 return 0;
2385}
2386
2387static void kvmppc_release_hwthread(int cpu)
2388{
2389 struct paca_struct *tpaca;
2390
Nicholas Piggind2e60072018-02-14 01:08:12 +10002391 tpaca = paca_ptrs[cpu];
Paul Mackerras31a4d442017-10-19 15:14:20 +11002392 tpaca->kvm_hstate.hwthread_req = 0;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002393 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002394 tpaca->kvm_hstate.kvm_vcore = NULL;
2395 tpaca->kvm_hstate.kvm_split_mode = NULL;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002396}
2397
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002398static void radix_flush_cpu(struct kvm *kvm, int cpu, struct kvm_vcpu *vcpu)
2399{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002400 struct kvm_nested_guest *nested = vcpu->arch.nested;
2401 cpumask_t *cpu_in_guest;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002402 int i;
2403
2404 cpu = cpu_first_thread_sibling(cpu);
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002405 if (nested) {
2406 cpumask_set_cpu(cpu, &nested->need_tlb_flush);
2407 cpu_in_guest = &nested->cpu_in_guest;
2408 } else {
2409 cpumask_set_cpu(cpu, &kvm->arch.need_tlb_flush);
2410 cpu_in_guest = &kvm->arch.cpu_in_guest;
2411 }
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002412 /*
2413 * Make sure setting of bit in need_tlb_flush precedes
2414 * testing of cpu_in_guest bits. The matching barrier on
2415 * the other side is the first smp_mb() in kvmppc_run_core().
2416 */
2417 smp_mb();
2418 for (i = 0; i < threads_per_core; ++i)
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002419 if (cpumask_test_cpu(cpu + i, cpu_in_guest))
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002420 smp_call_function_single(cpu + i, do_nothing, NULL, 1);
2421}
2422
Paul Mackerras8b24e692017-06-26 15:45:51 +10002423static void kvmppc_prepare_radix_vcpu(struct kvm_vcpu *vcpu, int pcpu)
2424{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002425 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002426 struct kvm *kvm = vcpu->kvm;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002427 int prev_cpu;
2428
2429 if (!cpu_has_feature(CPU_FTR_HVMODE))
2430 return;
2431
2432 if (nested)
2433 prev_cpu = nested->prev_cpu[vcpu->arch.nested_vcpu_id];
2434 else
2435 prev_cpu = vcpu->arch.prev_cpu;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002436
2437 /*
2438 * With radix, the guest can do TLB invalidations itself,
2439 * and it could choose to use the local form (tlbiel) if
2440 * it is invalidating a translation that has only ever been
2441 * used on one vcpu. However, that doesn't mean it has
2442 * only ever been used on one physical cpu, since vcpus
2443 * can move around between pcpus. To cope with this, when
2444 * a vcpu moves from one pcpu to another, we need to tell
2445 * any vcpus running on the same core as this vcpu previously
2446 * ran to flush the TLB. The TLB is shared between threads,
2447 * so we use a single bit in .need_tlb_flush for all 4 threads.
2448 */
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002449 if (prev_cpu != pcpu) {
2450 if (prev_cpu >= 0 &&
2451 cpu_first_thread_sibling(prev_cpu) !=
Paul Mackerras8b24e692017-06-26 15:45:51 +10002452 cpu_first_thread_sibling(pcpu))
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002453 radix_flush_cpu(kvm, prev_cpu, vcpu);
2454 if (nested)
2455 nested->prev_cpu[vcpu->arch.nested_vcpu_id] = pcpu;
2456 else
2457 vcpu->arch.prev_cpu = pcpu;
2458 }
2459}
2460
2461static void kvmppc_radix_check_need_tlb_flush(struct kvm *kvm, int pcpu,
2462 struct kvm_nested_guest *nested)
2463{
2464 cpumask_t *need_tlb_flush;
2465 int lpid;
2466
2467 if (!cpu_has_feature(CPU_FTR_HVMODE))
2468 return;
2469
2470 if (cpu_has_feature(CPU_FTR_ARCH_300))
2471 pcpu &= ~0x3UL;
2472
2473 if (nested) {
2474 lpid = nested->shadow_lpid;
2475 need_tlb_flush = &nested->need_tlb_flush;
2476 } else {
2477 lpid = kvm->arch.lpid;
2478 need_tlb_flush = &kvm->arch.need_tlb_flush;
2479 }
2480
2481 mtspr(SPRN_LPID, lpid);
2482 isync();
2483 smp_mb();
2484
2485 if (cpumask_test_cpu(pcpu, need_tlb_flush)) {
2486 radix__local_flush_tlb_lpid_guest(lpid);
2487 /* Clear the bit after the TLB flush */
2488 cpumask_clear_cpu(pcpu, need_tlb_flush);
Paul Mackerras8b24e692017-06-26 15:45:51 +10002489 }
2490}
2491
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002492static void kvmppc_start_thread(struct kvm_vcpu *vcpu, struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002493{
2494 int cpu;
2495 struct paca_struct *tpaca;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002496 struct kvm *kvm = vc->kvm;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002497
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002498 cpu = vc->pcpu;
2499 if (vcpu) {
2500 if (vcpu->arch.timer_running) {
2501 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2502 vcpu->arch.timer_running = 0;
2503 }
2504 cpu += vcpu->arch.ptid;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002505 vcpu->cpu = vc->pcpu;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002506 vcpu->arch.thread_cpu = cpu;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002507 cpumask_set_cpu(cpu, &kvm->arch.cpu_in_guest);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002508 }
Nicholas Piggind2e60072018-02-14 01:08:12 +10002509 tpaca = paca_ptrs[cpu];
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002510 tpaca->kvm_hstate.kvm_vcpu = vcpu;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002511 tpaca->kvm_hstate.ptid = cpu - vc->pcpu;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002512 tpaca->kvm_hstate.fake_suspend = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002513 /* Order stores to hstate.kvm_vcpu etc. before store to kvm_vcore */
Paul Mackerras19ccb762011-07-23 17:42:46 +10002514 smp_wmb();
Paul Mackerras898b25b2017-06-22 15:08:42 +10002515 tpaca->kvm_hstate.kvm_vcore = vc;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002516 if (cpu != smp_processor_id())
Paul Mackerras66feed62015-03-28 14:21:12 +11002517 kvmppc_ipi_thread(cpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002518}
2519
Paul Mackerras516f7892017-10-16 16:11:57 +11002520static void kvmppc_wait_for_nap(int n_threads)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002521{
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002522 int cpu = smp_processor_id();
2523 int i, loops;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002524
Paul Mackerras45c940b2016-11-18 17:43:30 +11002525 if (n_threads <= 1)
2526 return;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002527 for (loops = 0; loops < 1000000; ++loops) {
2528 /*
2529 * Check if all threads are finished.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002530 * We set the vcore pointer when starting a thread
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002531 * and the thread clears it when finished, so we look
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002532 * for any threads that still have a non-NULL vcore ptr.
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002533 */
Paul Mackerras45c940b2016-11-18 17:43:30 +11002534 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002535 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002536 break;
Paul Mackerras45c940b2016-11-18 17:43:30 +11002537 if (i == n_threads) {
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002538 HMT_medium();
2539 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002540 }
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002541 HMT_low();
Paul Mackerras371fefd2011-06-29 00:23:08 +00002542 }
2543 HMT_medium();
Paul Mackerras45c940b2016-11-18 17:43:30 +11002544 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002545 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002546 pr_err("KVM: CPU %d seems to be stuck\n", cpu + i);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002547}
2548
2549/*
2550 * Check that we are on thread 0 and that any other threads in
Paul Mackerras7b444c62012-10-15 01:16:14 +00002551 * this core are off-line. Then grab the threads so they can't
2552 * enter the kernel.
Paul Mackerras371fefd2011-06-29 00:23:08 +00002553 */
2554static int on_primary_thread(void)
2555{
2556 int cpu = smp_processor_id();
Michael Ellerman3102f782014-05-23 18:15:29 +10002557 int thr;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002558
Michael Ellerman3102f782014-05-23 18:15:29 +10002559 /* Are we on a primary subcore? */
2560 if (cpu_thread_in_subcore(cpu))
Paul Mackerras371fefd2011-06-29 00:23:08 +00002561 return 0;
Michael Ellerman3102f782014-05-23 18:15:29 +10002562
2563 thr = 0;
2564 while (++thr < threads_per_subcore)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002565 if (cpu_online(cpu + thr))
2566 return 0;
Paul Mackerras7b444c62012-10-15 01:16:14 +00002567
2568 /* Grab all hw threads so they can't go into the kernel */
Michael Ellerman3102f782014-05-23 18:15:29 +10002569 for (thr = 1; thr < threads_per_subcore; ++thr) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00002570 if (kvmppc_grab_hwthread(cpu + thr)) {
2571 /* Couldn't grab one; let the others go */
2572 do {
2573 kvmppc_release_hwthread(cpu + thr);
2574 } while (--thr > 0);
2575 return 0;
2576 }
2577 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002578 return 1;
2579}
2580
Paul Mackerrasec257162015-06-24 21:18:03 +10002581/*
2582 * A list of virtual cores for each physical CPU.
2583 * These are vcores that could run but their runner VCPU tasks are
2584 * (or may be) preempted.
2585 */
2586struct preempted_vcore_list {
2587 struct list_head list;
2588 spinlock_t lock;
2589};
2590
2591static DEFINE_PER_CPU(struct preempted_vcore_list, preempted_vcores);
2592
2593static void init_vcore_lists(void)
2594{
2595 int cpu;
2596
2597 for_each_possible_cpu(cpu) {
2598 struct preempted_vcore_list *lp = &per_cpu(preempted_vcores, cpu);
2599 spin_lock_init(&lp->lock);
2600 INIT_LIST_HEAD(&lp->list);
2601 }
2602}
2603
2604static void kvmppc_vcore_preempt(struct kvmppc_vcore *vc)
2605{
2606 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2607
2608 vc->vcore_state = VCORE_PREEMPT;
2609 vc->pcpu = smp_processor_id();
Paul Mackerras516f7892017-10-16 16:11:57 +11002610 if (vc->num_threads < threads_per_vcore(vc->kvm)) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002611 spin_lock(&lp->lock);
2612 list_add_tail(&vc->preempt_list, &lp->list);
2613 spin_unlock(&lp->lock);
2614 }
2615
2616 /* Start accumulating stolen time */
2617 kvmppc_core_start_stolen(vc);
2618}
2619
2620static void kvmppc_vcore_end_preempt(struct kvmppc_vcore *vc)
2621{
Paul Mackerras402813f2015-07-16 17:11:13 +10002622 struct preempted_vcore_list *lp;
Paul Mackerrasec257162015-06-24 21:18:03 +10002623
2624 kvmppc_core_end_stolen(vc);
2625 if (!list_empty(&vc->preempt_list)) {
Paul Mackerras402813f2015-07-16 17:11:13 +10002626 lp = &per_cpu(preempted_vcores, vc->pcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002627 spin_lock(&lp->lock);
2628 list_del_init(&vc->preempt_list);
2629 spin_unlock(&lp->lock);
2630 }
2631 vc->vcore_state = VCORE_INACTIVE;
2632}
2633
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002634/*
2635 * This stores information about the virtual cores currently
2636 * assigned to a physical core.
2637 */
Paul Mackerrasec257162015-06-24 21:18:03 +10002638struct core_info {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002639 int n_subcores;
2640 int max_subcore_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002641 int total_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002642 int subcore_threads[MAX_SUBCORES];
Paul Mackerras898b25b2017-06-22 15:08:42 +10002643 struct kvmppc_vcore *vc[MAX_SUBCORES];
Paul Mackerrasec257162015-06-24 21:18:03 +10002644};
2645
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002646/*
2647 * This mapping means subcores 0 and 1 can use threads 0-3 and 4-7
Paul Mackerras516f7892017-10-16 16:11:57 +11002648 * respectively in 2-way micro-threading (split-core) mode on POWER8.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002649 */
2650static int subcore_thread_map[MAX_SUBCORES] = { 0, 4, 2, 6 };
2651
Paul Mackerrasec257162015-06-24 21:18:03 +10002652static void init_core_info(struct core_info *cip, struct kvmppc_vcore *vc)
2653{
2654 memset(cip, 0, sizeof(*cip));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002655 cip->n_subcores = 1;
2656 cip->max_subcore_threads = vc->num_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002657 cip->total_threads = vc->num_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002658 cip->subcore_threads[0] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002659 cip->vc[0] = vc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002660}
2661
2662static bool subcore_config_ok(int n_subcores, int n_threads)
2663{
Paul Mackerras516f7892017-10-16 16:11:57 +11002664 /*
Paul Mackerras00608e12018-01-11 16:54:26 +11002665 * POWER9 "SMT4" cores are permanently in what is effectively a 4-way
2666 * split-core mode, with one thread per subcore.
Paul Mackerras516f7892017-10-16 16:11:57 +11002667 */
2668 if (cpu_has_feature(CPU_FTR_ARCH_300))
2669 return n_subcores <= 4 && n_threads == 1;
2670
2671 /* On POWER8, can only dynamically split if unsplit to begin with */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002672 if (n_subcores > 1 && threads_per_subcore < MAX_SMT_THREADS)
2673 return false;
2674 if (n_subcores > MAX_SUBCORES)
2675 return false;
2676 if (n_subcores > 1) {
2677 if (!(dynamic_mt_modes & 2))
2678 n_subcores = 4;
2679 if (n_subcores > 2 && !(dynamic_mt_modes & 4))
2680 return false;
2681 }
2682
2683 return n_subcores * roundup_pow_of_two(n_threads) <= MAX_SMT_THREADS;
Paul Mackerrasec257162015-06-24 21:18:03 +10002684}
2685
Paul Mackerras898b25b2017-06-22 15:08:42 +10002686static void init_vcore_to_run(struct kvmppc_vcore *vc)
Paul Mackerrasec257162015-06-24 21:18:03 +10002687{
Paul Mackerrasec257162015-06-24 21:18:03 +10002688 vc->entry_exit_map = 0;
2689 vc->in_guest = 0;
2690 vc->napping_threads = 0;
2691 vc->conferring_threads = 0;
Paul Mackerras57b8daa2018-04-20 22:51:11 +10002692 vc->tb_offset_applied = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002693}
2694
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002695static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip)
2696{
2697 int n_threads = vc->num_threads;
2698 int sub;
2699
2700 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
2701 return false;
2702
Paul Mackerras00608e12018-01-11 16:54:26 +11002703 /* Some POWER9 chips require all threads to be in the same MMU mode */
2704 if (no_mixing_hpt_and_radix &&
Paul Mackerrasc0101502017-10-19 14:11:23 +11002705 kvm_is_radix(vc->kvm) != kvm_is_radix(cip->vc[0]->kvm))
2706 return false;
2707
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002708 if (n_threads < cip->max_subcore_threads)
2709 n_threads = cip->max_subcore_threads;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002710 if (!subcore_config_ok(cip->n_subcores + 1, n_threads))
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002711 return false;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002712 cip->max_subcore_threads = n_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002713
2714 sub = cip->n_subcores;
2715 ++cip->n_subcores;
2716 cip->total_threads += vc->num_threads;
2717 cip->subcore_threads[sub] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002718 cip->vc[sub] = vc;
2719 init_vcore_to_run(vc);
2720 list_del_init(&vc->preempt_list);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002721
2722 return true;
2723}
2724
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002725/*
2726 * Work out whether it is possible to piggyback the execution of
2727 * vcore *pvc onto the execution of the other vcores described in *cip.
2728 */
2729static bool can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip,
2730 int target_threads)
2731{
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002732 if (cip->total_threads + pvc->num_threads > target_threads)
2733 return false;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002734
Paul Mackerrasb0090312016-09-15 16:27:41 +10002735 return can_dynamic_split(pvc, cip);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002736}
2737
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002738static void prepare_threads(struct kvmppc_vcore *vc)
2739{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002740 int i;
2741 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002742
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002743 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002744 if (signal_pending(vcpu->arch.run_task))
2745 vcpu->arch.ret = -EINTR;
2746 else if (vcpu->arch.vpa.update_pending ||
2747 vcpu->arch.slb_shadow.update_pending ||
2748 vcpu->arch.dtl.update_pending)
2749 vcpu->arch.ret = RESUME_GUEST;
2750 else
2751 continue;
2752 kvmppc_remove_runnable(vc, vcpu);
2753 wake_up(&vcpu->arch.cpu_run);
2754 }
2755}
2756
Paul Mackerrasec257162015-06-24 21:18:03 +10002757static void collect_piggybacks(struct core_info *cip, int target_threads)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002758{
Paul Mackerrasec257162015-06-24 21:18:03 +10002759 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2760 struct kvmppc_vcore *pvc, *vcnext;
2761
2762 spin_lock(&lp->lock);
2763 list_for_each_entry_safe(pvc, vcnext, &lp->list, preempt_list) {
2764 if (!spin_trylock(&pvc->lock))
2765 continue;
2766 prepare_threads(pvc);
2767 if (!pvc->n_runnable) {
2768 list_del_init(&pvc->preempt_list);
2769 if (pvc->runner == NULL) {
2770 pvc->vcore_state = VCORE_INACTIVE;
2771 kvmppc_core_end_stolen(pvc);
2772 }
2773 spin_unlock(&pvc->lock);
2774 continue;
2775 }
2776 if (!can_piggyback(pvc, cip, target_threads)) {
2777 spin_unlock(&pvc->lock);
2778 continue;
2779 }
2780 kvmppc_core_end_stolen(pvc);
2781 pvc->vcore_state = VCORE_PIGGYBACK;
2782 if (cip->total_threads >= target_threads)
2783 break;
2784 }
2785 spin_unlock(&lp->lock);
2786}
2787
Paul Mackerras8b24e692017-06-26 15:45:51 +10002788static bool recheck_signals(struct core_info *cip)
2789{
2790 int sub, i;
2791 struct kvm_vcpu *vcpu;
2792
2793 for (sub = 0; sub < cip->n_subcores; ++sub)
2794 for_each_runnable_thread(i, vcpu, cip->vc[sub])
2795 if (signal_pending(vcpu->arch.run_task))
2796 return true;
2797 return false;
2798}
2799
Paul Mackerrasec257162015-06-24 21:18:03 +10002800static void post_guest_process(struct kvmppc_vcore *vc, bool is_master)
2801{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002802 int still_running = 0, i;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002803 u64 now;
2804 long ret;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002805 struct kvm_vcpu *vcpu;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002806
Paul Mackerrasec257162015-06-24 21:18:03 +10002807 spin_lock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002808 now = get_tb();
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002809 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras53655dd2018-10-08 16:30:54 +11002810 /*
2811 * It's safe to unlock the vcore in the loop here, because
2812 * for_each_runnable_thread() is safe against removal of
2813 * the vcpu, and the vcore state is VCORE_EXITING here,
2814 * so any vcpus becoming runnable will have their arch.trap
2815 * set to zero and can't actually run in the guest.
2816 */
2817 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002818 /* cancel pending dec exception if dec is positive */
2819 if (now < vcpu->arch.dec_expires &&
2820 kvmppc_core_pending_dec(vcpu))
2821 kvmppc_core_dequeue_dec(vcpu);
2822
2823 trace_kvm_guest_exit(vcpu);
2824
2825 ret = RESUME_GUEST;
2826 if (vcpu->arch.trap)
2827 ret = kvmppc_handle_exit_hv(vcpu->arch.kvm_run, vcpu,
2828 vcpu->arch.run_task);
2829
2830 vcpu->arch.ret = ret;
2831 vcpu->arch.trap = 0;
2832
Paul Mackerras53655dd2018-10-08 16:30:54 +11002833 spin_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10002834 if (is_kvmppc_resume_guest(vcpu->arch.ret)) {
2835 if (vcpu->arch.pending_exceptions)
2836 kvmppc_core_prepare_to_enter(vcpu);
2837 if (vcpu->arch.ceded)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002838 kvmppc_set_timer(vcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002839 else
2840 ++still_running;
2841 } else {
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002842 kvmppc_remove_runnable(vc, vcpu);
2843 wake_up(&vcpu->arch.cpu_run);
2844 }
2845 }
Paul Mackerrasec257162015-06-24 21:18:03 +10002846 if (!is_master) {
Paul Mackerras563a1e92015-07-16 17:11:14 +10002847 if (still_running > 0) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002848 kvmppc_vcore_preempt(vc);
Paul Mackerras563a1e92015-07-16 17:11:14 +10002849 } else if (vc->runner) {
2850 vc->vcore_state = VCORE_PREEMPT;
2851 kvmppc_core_start_stolen(vc);
2852 } else {
2853 vc->vcore_state = VCORE_INACTIVE;
2854 }
Paul Mackerrasec257162015-06-24 21:18:03 +10002855 if (vc->n_runnable > 0 && vc->runner == NULL) {
2856 /* make sure there's a candidate runner awake */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002857 i = -1;
2858 vcpu = next_runnable_thread(vc, &i);
Paul Mackerrasec257162015-06-24 21:18:03 +10002859 wake_up(&vcpu->arch.cpu_run);
2860 }
2861 }
2862 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002863}
2864
Paul Mackerras371fefd2011-06-29 00:23:08 +00002865/*
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002866 * Clear core from the list of active host cores as we are about to
2867 * enter the guest. Only do this if it is the primary thread of the
2868 * core (not if a subcore) that is entering the guest.
2869 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002870static inline int kvmppc_clear_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002871{
2872 int core;
2873
2874 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002875 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002876 /*
2877 * Memory barrier can be omitted here as we will do a smp_wmb()
2878 * later in kvmppc_start_thread and we need ensure that state is
2879 * visible to other CPUs only after we enter guest.
2880 */
2881 core = cpu >> threads_shift;
2882 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 0;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002883 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002884}
2885
2886/*
2887 * Advertise this core as an active host core since we exited the guest
2888 * Only need to do this if it is the primary thread of the core that is
2889 * exiting.
2890 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002891static inline int kvmppc_set_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002892{
2893 int core;
2894
2895 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002896 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002897
2898 /*
2899 * Memory barrier can be omitted here because we do a spin_unlock
2900 * immediately after this which provides the memory barrier.
2901 */
2902 core = cpu >> threads_shift;
2903 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 1;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002904 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002905}
2906
Paul Mackerras8b24e692017-06-26 15:45:51 +10002907static void set_irq_happened(int trap)
2908{
2909 switch (trap) {
2910 case BOOK3S_INTERRUPT_EXTERNAL:
2911 local_paca->irq_happened |= PACA_IRQ_EE;
2912 break;
2913 case BOOK3S_INTERRUPT_H_DOORBELL:
2914 local_paca->irq_happened |= PACA_IRQ_DBELL;
2915 break;
2916 case BOOK3S_INTERRUPT_HMI:
2917 local_paca->irq_happened |= PACA_IRQ_HMI;
2918 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11002919 case BOOK3S_INTERRUPT_SYSTEM_RESET:
2920 replay_system_reset();
2921 break;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002922 }
2923}
2924
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002925/*
Paul Mackerras371fefd2011-06-29 00:23:08 +00002926 * Run a set of guest threads on a physical core.
2927 * Called with vc->lock held.
2928 */
Paul Mackerras66feed62015-03-28 14:21:12 +11002929static noinline void kvmppc_run_core(struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002930{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002931 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002932 int i;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00002933 int srcu_idx;
Paul Mackerrasec257162015-06-24 21:18:03 +10002934 struct core_info core_info;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002935 struct kvmppc_vcore *pvc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002936 struct kvm_split_mode split_info, *sip;
2937 int split, subcore_size, active;
2938 int sub;
2939 bool thr0_done;
2940 unsigned long cmd_bit, stat_bit;
Paul Mackerrasec257162015-06-24 21:18:03 +10002941 int pcpu, thr;
2942 int target_threads;
Paul Mackerras45c940b2016-11-18 17:43:30 +11002943 int controlled_threads;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002944 int trap;
Paul Mackerras516f7892017-10-16 16:11:57 +11002945 bool is_power8;
Paul Mackerrasc0101502017-10-19 14:11:23 +11002946 bool hpt_on_radix;
Paul Mackerras081f3232012-06-01 20:20:24 +10002947
2948 /*
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002949 * Remove from the list any threads that have a signal pending
2950 * or need a VPA update done
2951 */
2952 prepare_threads(vc);
2953
2954 /* if the runner is no longer runnable, let the caller pick a new one */
2955 if (vc->runner->arch.state != KVMPPC_VCPU_RUNNABLE)
2956 return;
2957
2958 /*
2959 * Initialize *vc.
Paul Mackerras081f3232012-06-01 20:20:24 +10002960 */
Paul Mackerras898b25b2017-06-22 15:08:42 +10002961 init_vcore_to_run(vc);
Paul Mackerras2711e242014-12-04 16:43:28 +11002962 vc->preempt_tb = TB_NIL;
Paul Mackerras081f3232012-06-01 20:20:24 +10002963
2964 /*
Paul Mackerras45c940b2016-11-18 17:43:30 +11002965 * Number of threads that we will be controlling: the same as
2966 * the number of threads per subcore, except on POWER9,
2967 * where it's 1 because the threads are (mostly) independent.
2968 */
Paul Mackerras516f7892017-10-16 16:11:57 +11002969 controlled_threads = threads_per_vcore(vc->kvm);
Paul Mackerras45c940b2016-11-18 17:43:30 +11002970
2971 /*
Michael Ellerman3102f782014-05-23 18:15:29 +10002972 * Make sure we are running on primary threads, and that secondary
2973 * threads are offline. Also check if the number of threads in this
2974 * guest are greater than the current system threads per guest.
Paul Mackerrasc0101502017-10-19 14:11:23 +11002975 * On POWER9, we need to be not in independent-threads mode if
Paul Mackerras00608e12018-01-11 16:54:26 +11002976 * this is a HPT guest on a radix host machine where the
2977 * CPU threads may not be in different MMU modes.
Paul Mackerras7b444c62012-10-15 01:16:14 +00002978 */
Paul Mackerras00608e12018-01-11 16:54:26 +11002979 hpt_on_radix = no_mixing_hpt_and_radix && radix_enabled() &&
2980 !kvm_is_radix(vc->kvm);
Paul Mackerrasc0101502017-10-19 14:11:23 +11002981 if (((controlled_threads > 1) &&
2982 ((vc->num_threads > threads_per_subcore) || !on_primary_thread())) ||
2983 (hpt_on_radix && vc->kvm->arch.threads_indep)) {
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002984 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00002985 vcpu->arch.ret = -EBUSY;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002986 kvmppc_remove_runnable(vc, vcpu);
2987 wake_up(&vcpu->arch.cpu_run);
2988 }
Paul Mackerras7b444c62012-10-15 01:16:14 +00002989 goto out;
2990 }
2991
Paul Mackerrasec257162015-06-24 21:18:03 +10002992 /*
2993 * See if we could run any other vcores on the physical core
2994 * along with this one.
2995 */
2996 init_core_info(&core_info, vc);
2997 pcpu = smp_processor_id();
Paul Mackerras45c940b2016-11-18 17:43:30 +11002998 target_threads = controlled_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002999 if (target_smt_mode && target_smt_mode < target_threads)
3000 target_threads = target_smt_mode;
3001 if (vc->num_threads < target_threads)
3002 collect_piggybacks(&core_info, target_threads);
Michael Ellerman3102f782014-05-23 18:15:29 +10003003
Paul Mackerras8b24e692017-06-26 15:45:51 +10003004 /*
3005 * On radix, arrange for TLB flushing if necessary.
3006 * This has to be done before disabling interrupts since
3007 * it uses smp_call_function().
3008 */
3009 pcpu = smp_processor_id();
3010 if (kvm_is_radix(vc->kvm)) {
3011 for (sub = 0; sub < core_info.n_subcores; ++sub)
3012 for_each_runnable_thread(i, vcpu, core_info.vc[sub])
3013 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
3014 }
3015
3016 /*
3017 * Hard-disable interrupts, and check resched flag and signals.
3018 * If we need to reschedule or deliver a signal, clean up
3019 * and return without going into the guest(s).
Paul Mackerras072df812017-11-09 14:30:24 +11003020 * If the mmu_ready flag has been cleared, don't go into the
Paul Mackerras38c53af2017-11-08 14:44:04 +11003021 * guest because that means a HPT resize operation is in progress.
Paul Mackerras8b24e692017-06-26 15:45:51 +10003022 */
3023 local_irq_disable();
3024 hard_irq_disable();
3025 if (lazy_irq_pending() || need_resched() ||
Paul Mackerras072df812017-11-09 14:30:24 +11003026 recheck_signals(&core_info) || !vc->kvm->arch.mmu_ready) {
Paul Mackerras8b24e692017-06-26 15:45:51 +10003027 local_irq_enable();
3028 vc->vcore_state = VCORE_INACTIVE;
3029 /* Unlock all except the primary vcore */
3030 for (sub = 1; sub < core_info.n_subcores; ++sub) {
3031 pvc = core_info.vc[sub];
3032 /* Put back on to the preempted vcores list */
3033 kvmppc_vcore_preempt(pvc);
3034 spin_unlock(&pvc->lock);
3035 }
3036 for (i = 0; i < controlled_threads; ++i)
3037 kvmppc_release_hwthread(pcpu + i);
3038 return;
3039 }
3040
3041 kvmppc_clear_host_core(pcpu);
3042
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003043 /* Decide on micro-threading (split-core) mode */
3044 subcore_size = threads_per_subcore;
3045 cmd_bit = stat_bit = 0;
3046 split = core_info.n_subcores;
3047 sip = NULL;
Paul Mackerras516f7892017-10-16 16:11:57 +11003048 is_power8 = cpu_has_feature(CPU_FTR_ARCH_207S)
3049 && !cpu_has_feature(CPU_FTR_ARCH_300);
3050
Paul Mackerrasc0101502017-10-19 14:11:23 +11003051 if (split > 1 || hpt_on_radix) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003052 sip = &split_info;
3053 memset(&split_info, 0, sizeof(split_info));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003054 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003055 split_info.vc[sub] = core_info.vc[sub];
Paul Mackerras516f7892017-10-16 16:11:57 +11003056
3057 if (is_power8) {
3058 if (split == 2 && (dynamic_mt_modes & 2)) {
3059 cmd_bit = HID0_POWER8_1TO2LPAR;
3060 stat_bit = HID0_POWER8_2LPARMODE;
3061 } else {
3062 split = 4;
3063 cmd_bit = HID0_POWER8_1TO4LPAR;
3064 stat_bit = HID0_POWER8_4LPARMODE;
3065 }
3066 subcore_size = MAX_SMT_THREADS / split;
3067 split_info.rpr = mfspr(SPRN_RPR);
3068 split_info.pmmar = mfspr(SPRN_PMMAR);
3069 split_info.ldbar = mfspr(SPRN_LDBAR);
3070 split_info.subcore_size = subcore_size;
3071 } else {
3072 split_info.subcore_size = 1;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003073 if (hpt_on_radix) {
3074 /* Use the split_info for LPCR/LPIDR changes */
3075 split_info.lpcr_req = vc->lpcr;
3076 split_info.lpidr_req = vc->kvm->arch.lpid;
3077 split_info.host_lpcr = vc->kvm->arch.host_lpcr;
3078 split_info.do_set = 1;
3079 }
Paul Mackerras516f7892017-10-16 16:11:57 +11003080 }
3081
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003082 /* order writes to split_info before kvm_split_mode pointer */
3083 smp_wmb();
3084 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003085
Paul Mackerrasc0101502017-10-19 14:11:23 +11003086 for (thr = 0; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003087 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3088
3089 paca->kvm_hstate.tid = thr;
3090 paca->kvm_hstate.napping = 0;
3091 paca->kvm_hstate.kvm_split_mode = sip;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003092 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003093
Paul Mackerras516f7892017-10-16 16:11:57 +11003094 /* Initiate micro-threading (split-core) on POWER8 if required */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003095 if (cmd_bit) {
3096 unsigned long hid0 = mfspr(SPRN_HID0);
3097
3098 hid0 |= cmd_bit | HID0_POWER8_DYNLPARDIS;
3099 mb();
3100 mtspr(SPRN_HID0, hid0);
3101 isync();
3102 for (;;) {
3103 hid0 = mfspr(SPRN_HID0);
3104 if (hid0 & stat_bit)
3105 break;
3106 cpu_relax();
3107 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +00003108 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003109
Paul Mackerras7aa15842018-04-20 19:53:22 +10003110 /*
3111 * On POWER8, set RWMR register.
3112 * Since it only affects PURR and SPURR, it doesn't affect
3113 * the host, so we don't save/restore the host value.
3114 */
3115 if (is_power8) {
3116 unsigned long rwmr_val = RWMR_RPA_P8_8THREAD;
3117 int n_online = atomic_read(&vc->online_count);
3118
3119 /*
3120 * Use the 8-thread value if we're doing split-core
3121 * or if the vcore's online count looks bogus.
3122 */
3123 if (split == 1 && threads_per_subcore == MAX_SMT_THREADS &&
3124 n_online >= 1 && n_online <= MAX_SMT_THREADS)
3125 rwmr_val = p8_rwmr_values[n_online];
3126 mtspr(SPRN_RWMR, rwmr_val);
3127 }
3128
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003129 /* Start all the threads */
3130 active = 0;
3131 for (sub = 0; sub < core_info.n_subcores; ++sub) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003132 thr = is_power8 ? subcore_thread_map[sub] : sub;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003133 thr0_done = false;
3134 active |= 1 << thr;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003135 pvc = core_info.vc[sub];
3136 pvc->pcpu = pcpu + thr;
3137 for_each_runnable_thread(i, vcpu, pvc) {
3138 kvmppc_start_thread(vcpu, pvc);
3139 kvmppc_create_dtl_entry(vcpu, pvc);
3140 trace_kvm_guest_enter(vcpu);
3141 if (!vcpu->arch.ptid)
3142 thr0_done = true;
3143 active |= 1 << (thr + vcpu->arch.ptid);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003144 }
Paul Mackerras898b25b2017-06-22 15:08:42 +10003145 /*
3146 * We need to start the first thread of each subcore
3147 * even if it doesn't have a vcpu.
3148 */
3149 if (!thr0_done)
3150 kvmppc_start_thread(NULL, pvc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003151 }
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303152
3153 /*
3154 * Ensure that split_info.do_nap is set after setting
3155 * the vcore pointer in the PACA of the secondaries.
3156 */
3157 smp_mb();
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303158
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003159 /*
3160 * When doing micro-threading, poke the inactive threads as well.
3161 * This gets them to the nap instruction after kvm_do_nap,
3162 * which reduces the time taken to unsplit later.
Paul Mackerrasc0101502017-10-19 14:11:23 +11003163 * For POWER9 HPT guest on radix host, we need all the secondary
3164 * threads woken up so they can do the LPCR/LPIDR change.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003165 */
Paul Mackerrasc0101502017-10-19 14:11:23 +11003166 if (cmd_bit || hpt_on_radix) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003167 split_info.do_nap = 1; /* ask secondaries to nap when done */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003168 for (thr = 1; thr < threads_per_subcore; ++thr)
3169 if (!(active & (1 << thr)))
3170 kvmppc_ipi_thread(pcpu + thr);
Paul Mackerras516f7892017-10-16 16:11:57 +11003171 }
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003172
Paul Mackerras2f12f032012-10-15 01:17:17 +00003173 vc->vcore_state = VCORE_RUNNING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003174 preempt_disable();
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003175
3176 trace_kvmppc_run_core(vc, 0);
3177
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003178 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003179 spin_unlock(&core_info.vc[sub]->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003180
Nicholas Piggin9a4506e2018-05-17 17:06:29 +10003181 if (kvm_is_radix(vc->kvm)) {
Nicholas Piggin9a4506e2018-05-17 17:06:29 +10003182 /*
3183 * Do we need to flush the process scoped TLB for the LPAR?
3184 *
3185 * On POWER9, individual threads can come in here, but the
3186 * TLB is shared between the 4 threads in a core, hence
3187 * invalidating on one thread invalidates for all.
3188 * Thus we make all 4 threads use the same bit here.
3189 *
3190 * Hash must be flushed in realmode in order to use tlbiel.
3191 */
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11003192 kvmppc_radix_check_need_tlb_flush(vc->kvm, pcpu, NULL);
Nicholas Piggin9a4506e2018-05-17 17:06:29 +10003193 }
3194
Paul Mackerras8b24e692017-06-26 15:45:51 +10003195 /*
3196 * Interrupts will be enabled once we get into the guest,
3197 * so tell lockdep that we're about to enable interrupts.
3198 */
3199 trace_hardirqs_on();
Paul Mackerrasde56a942011-06-29 00:21:34 +00003200
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003201 guest_enter_irqoff();
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003202
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003203 srcu_idx = srcu_read_lock(&vc->kvm->srcu);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003204
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303205 this_cpu_disable_ftrace();
3206
Paul Mackerras8b24e692017-06-26 15:45:51 +10003207 trap = __kvmppc_vcore_entry();
Paul Mackerras19ccb762011-07-23 17:42:46 +10003208
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303209 this_cpu_enable_ftrace();
3210
Paul Mackerrasec257162015-06-24 21:18:03 +10003211 srcu_read_unlock(&vc->kvm->srcu, srcu_idx);
3212
Paul Mackerras8b24e692017-06-26 15:45:51 +10003213 trace_hardirqs_off();
3214 set_irq_happened(trap);
3215
Paul Mackerrasec257162015-06-24 21:18:03 +10003216 spin_lock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003217 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
Paul Mackerras19ccb762011-07-23 17:42:46 +10003218 vc->vcore_state = VCORE_EXITING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003219
Paul Mackerras371fefd2011-06-29 00:23:08 +00003220 /* wait for secondary threads to finish writing their state to memory */
Paul Mackerras516f7892017-10-16 16:11:57 +11003221 kvmppc_wait_for_nap(controlled_threads);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003222
3223 /* Return to whole-core mode if we split the core earlier */
Paul Mackerras516f7892017-10-16 16:11:57 +11003224 if (cmd_bit) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003225 unsigned long hid0 = mfspr(SPRN_HID0);
3226 unsigned long loops = 0;
3227
3228 hid0 &= ~HID0_POWER8_DYNLPARDIS;
3229 stat_bit = HID0_POWER8_2LPARMODE | HID0_POWER8_4LPARMODE;
3230 mb();
3231 mtspr(SPRN_HID0, hid0);
3232 isync();
3233 for (;;) {
3234 hid0 = mfspr(SPRN_HID0);
3235 if (!(hid0 & stat_bit))
3236 break;
3237 cpu_relax();
3238 ++loops;
3239 }
Paul Mackerrasc0101502017-10-19 14:11:23 +11003240 } else if (hpt_on_radix) {
3241 /* Wait for all threads to have seen final sync */
3242 for (thr = 1; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003243 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3244
3245 while (paca->kvm_hstate.kvm_split_mode) {
Paul Mackerrasc0101502017-10-19 14:11:23 +11003246 HMT_low();
3247 barrier();
3248 }
3249 HMT_medium();
3250 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003251 }
Paul Mackerrasc0101502017-10-19 14:11:23 +11003252 split_info.do_nap = 0;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003253
Paul Mackerras8b24e692017-06-26 15:45:51 +10003254 kvmppc_set_host_core(pcpu);
3255
3256 local_irq_enable();
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003257 guest_exit();
Paul Mackerras8b24e692017-06-26 15:45:51 +10003258
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003259 /* Let secondaries go back to the offline loop */
Paul Mackerras45c940b2016-11-18 17:43:30 +11003260 for (i = 0; i < controlled_threads; ++i) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003261 kvmppc_release_hwthread(pcpu + i);
3262 if (sip && sip->napped[i])
3263 kvmppc_ipi_thread(pcpu + i);
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003264 cpumask_clear_cpu(pcpu + i, &vc->kvm->arch.cpu_in_guest);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003265 }
3266
Paul Mackerras371fefd2011-06-29 00:23:08 +00003267 spin_unlock(&vc->lock);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003268
Paul Mackerras371fefd2011-06-29 00:23:08 +00003269 /* make sure updates to secondary vcpu structs are visible now */
3270 smp_mb();
Paul Mackerrasde56a942011-06-29 00:21:34 +00003271
Paul Mackerras36ee41d2018-01-30 10:51:32 +11003272 preempt_enable();
3273
Paul Mackerras898b25b2017-06-22 15:08:42 +10003274 for (sub = 0; sub < core_info.n_subcores; ++sub) {
3275 pvc = core_info.vc[sub];
3276 post_guest_process(pvc, pvc == vc);
3277 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00003278
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003279 spin_lock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003280
Paul Mackerrasde56a942011-06-29 00:21:34 +00003281 out:
Paul Mackerras19ccb762011-07-23 17:42:46 +10003282 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003283 trace_kvmppc_run_core(vc, 1);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003284}
3285
Paul Mackerras19ccb762011-07-23 17:42:46 +10003286/*
Paul Mackerras95a64322018-10-08 16:30:55 +11003287 * Load up hypervisor-mode registers on P9.
3288 */
Paul Mackerras360cae32018-10-08 16:31:04 +11003289static int kvmhv_load_hv_regs_and_go(struct kvm_vcpu *vcpu, u64 time_limit,
3290 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003291{
3292 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3293 s64 hdec;
3294 u64 tb, purr, spurr;
3295 int trap;
3296 unsigned long host_hfscr = mfspr(SPRN_HFSCR);
3297 unsigned long host_ciabr = mfspr(SPRN_CIABR);
3298 unsigned long host_dawr = mfspr(SPRN_DAWR);
3299 unsigned long host_dawrx = mfspr(SPRN_DAWRX);
3300 unsigned long host_psscr = mfspr(SPRN_PSSCR);
3301 unsigned long host_pidr = mfspr(SPRN_PID);
3302
3303 hdec = time_limit - mftb();
3304 if (hdec < 0)
3305 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3306 mtspr(SPRN_HDEC, hdec);
3307
3308 if (vc->tb_offset) {
3309 u64 new_tb = mftb() + vc->tb_offset;
3310 mtspr(SPRN_TBU40, new_tb);
3311 tb = mftb();
3312 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3313 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3314 vc->tb_offset_applied = vc->tb_offset;
3315 }
3316
3317 if (vc->pcr)
3318 mtspr(SPRN_PCR, vc->pcr);
3319 mtspr(SPRN_DPDES, vc->dpdes);
3320 mtspr(SPRN_VTB, vc->vtb);
3321
3322 local_paca->kvm_hstate.host_purr = mfspr(SPRN_PURR);
3323 local_paca->kvm_hstate.host_spurr = mfspr(SPRN_SPURR);
3324 mtspr(SPRN_PURR, vcpu->arch.purr);
3325 mtspr(SPRN_SPURR, vcpu->arch.spurr);
3326
3327 if (cpu_has_feature(CPU_FTR_DAWR)) {
3328 mtspr(SPRN_DAWR, vcpu->arch.dawr);
3329 mtspr(SPRN_DAWRX, vcpu->arch.dawrx);
3330 }
3331 mtspr(SPRN_CIABR, vcpu->arch.ciabr);
3332 mtspr(SPRN_IC, vcpu->arch.ic);
3333 mtspr(SPRN_PID, vcpu->arch.pid);
3334
3335 mtspr(SPRN_PSSCR, vcpu->arch.psscr | PSSCR_EC |
3336 (local_paca->kvm_hstate.fake_suspend << PSSCR_FAKE_SUSPEND_LG));
3337
3338 mtspr(SPRN_HFSCR, vcpu->arch.hfscr);
3339
3340 mtspr(SPRN_SPRG0, vcpu->arch.shregs.sprg0);
3341 mtspr(SPRN_SPRG1, vcpu->arch.shregs.sprg1);
3342 mtspr(SPRN_SPRG2, vcpu->arch.shregs.sprg2);
3343 mtspr(SPRN_SPRG3, vcpu->arch.shregs.sprg3);
3344
3345 mtspr(SPRN_AMOR, ~0UL);
3346
Paul Mackerras360cae32018-10-08 16:31:04 +11003347 mtspr(SPRN_LPCR, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11003348 isync();
3349
3350 kvmppc_xive_push_vcpu(vcpu);
3351
3352 mtspr(SPRN_SRR0, vcpu->arch.shregs.srr0);
3353 mtspr(SPRN_SRR1, vcpu->arch.shregs.srr1);
3354
3355 trap = __kvmhv_vcpu_entry_p9(vcpu);
3356
3357 /* Advance host PURR/SPURR by the amount used by guest */
3358 purr = mfspr(SPRN_PURR);
3359 spurr = mfspr(SPRN_SPURR);
3360 mtspr(SPRN_PURR, local_paca->kvm_hstate.host_purr +
3361 purr - vcpu->arch.purr);
3362 mtspr(SPRN_SPURR, local_paca->kvm_hstate.host_spurr +
3363 spurr - vcpu->arch.spurr);
3364 vcpu->arch.purr = purr;
3365 vcpu->arch.spurr = spurr;
3366
3367 vcpu->arch.ic = mfspr(SPRN_IC);
3368 vcpu->arch.pid = mfspr(SPRN_PID);
3369 vcpu->arch.psscr = mfspr(SPRN_PSSCR) & PSSCR_GUEST_VIS;
3370
3371 vcpu->arch.shregs.sprg0 = mfspr(SPRN_SPRG0);
3372 vcpu->arch.shregs.sprg1 = mfspr(SPRN_SPRG1);
3373 vcpu->arch.shregs.sprg2 = mfspr(SPRN_SPRG2);
3374 vcpu->arch.shregs.sprg3 = mfspr(SPRN_SPRG3);
3375
3376 mtspr(SPRN_PSSCR, host_psscr);
3377 mtspr(SPRN_HFSCR, host_hfscr);
3378 mtspr(SPRN_CIABR, host_ciabr);
3379 mtspr(SPRN_DAWR, host_dawr);
3380 mtspr(SPRN_DAWRX, host_dawrx);
3381 mtspr(SPRN_PID, host_pidr);
3382
3383 /*
3384 * Since this is radix, do a eieio; tlbsync; ptesync sequence in
3385 * case we interrupted the guest between a tlbie and a ptesync.
3386 */
3387 asm volatile("eieio; tlbsync; ptesync");
3388
3389 mtspr(SPRN_LPID, vcpu->kvm->arch.host_lpid); /* restore host LPID */
3390 isync();
3391
3392 vc->dpdes = mfspr(SPRN_DPDES);
3393 vc->vtb = mfspr(SPRN_VTB);
3394 mtspr(SPRN_DPDES, 0);
3395 if (vc->pcr)
3396 mtspr(SPRN_PCR, 0);
3397
3398 if (vc->tb_offset_applied) {
3399 u64 new_tb = mftb() - vc->tb_offset_applied;
3400 mtspr(SPRN_TBU40, new_tb);
3401 tb = mftb();
3402 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3403 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3404 vc->tb_offset_applied = 0;
3405 }
3406
3407 mtspr(SPRN_HDEC, 0x7fffffff);
3408 mtspr(SPRN_LPCR, vcpu->kvm->arch.host_lpcr);
3409
3410 return trap;
3411}
3412
3413/*
3414 * Virtual-mode guest entry for POWER9 and later when the host and
3415 * guest are both using the radix MMU. The LPIDR has already been set.
3416 */
Paul Mackerras360cae32018-10-08 16:31:04 +11003417int kvmhv_p9_guest_entry(struct kvm_vcpu *vcpu, u64 time_limit,
3418 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003419{
3420 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3421 unsigned long host_dscr = mfspr(SPRN_DSCR);
3422 unsigned long host_tidr = mfspr(SPRN_TIDR);
3423 unsigned long host_iamr = mfspr(SPRN_IAMR);
3424 s64 dec;
3425 u64 tb;
3426 int trap, save_pmu;
3427
3428 dec = mfspr(SPRN_DEC);
3429 tb = mftb();
3430 if (dec < 512)
3431 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3432 local_paca->kvm_hstate.dec_expires = dec + tb;
3433 if (local_paca->kvm_hstate.dec_expires < time_limit)
3434 time_limit = local_paca->kvm_hstate.dec_expires;
3435
3436 vcpu->arch.ceded = 0;
3437
3438 kvmhv_save_host_pmu(); /* saves it to PACA kvm_hstate */
3439
3440 kvmppc_subcore_enter_guest();
3441
3442 vc->entry_exit_map = 1;
3443 vc->in_guest = 1;
3444
3445 if (vcpu->arch.vpa.pinned_addr) {
3446 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3447 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3448 lp->yield_count = cpu_to_be32(yield_count);
3449 vcpu->arch.vpa.dirty = 1;
3450 }
3451
3452 if (cpu_has_feature(CPU_FTR_TM) ||
3453 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3454 kvmppc_restore_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3455
3456 kvmhv_load_guest_pmu(vcpu);
3457
3458 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3459 load_fp_state(&vcpu->arch.fp);
3460#ifdef CONFIG_ALTIVEC
3461 load_vr_state(&vcpu->arch.vr);
3462#endif
3463
3464 mtspr(SPRN_DSCR, vcpu->arch.dscr);
3465 mtspr(SPRN_IAMR, vcpu->arch.iamr);
3466 mtspr(SPRN_PSPB, vcpu->arch.pspb);
3467 mtspr(SPRN_FSCR, vcpu->arch.fscr);
3468 mtspr(SPRN_TAR, vcpu->arch.tar);
3469 mtspr(SPRN_EBBHR, vcpu->arch.ebbhr);
3470 mtspr(SPRN_EBBRR, vcpu->arch.ebbrr);
3471 mtspr(SPRN_BESCR, vcpu->arch.bescr);
3472 mtspr(SPRN_WORT, vcpu->arch.wort);
3473 mtspr(SPRN_TIDR, vcpu->arch.tid);
3474 mtspr(SPRN_DAR, vcpu->arch.shregs.dar);
3475 mtspr(SPRN_DSISR, vcpu->arch.shregs.dsisr);
3476 mtspr(SPRN_AMR, vcpu->arch.amr);
3477 mtspr(SPRN_UAMOR, vcpu->arch.uamor);
3478
3479 if (!(vcpu->arch.ctrl & 1))
3480 mtspr(SPRN_CTRLT, mfspr(SPRN_CTRLF) & ~1);
3481
3482 mtspr(SPRN_DEC, vcpu->arch.dec_expires - mftb());
3483
Paul Mackerras360cae32018-10-08 16:31:04 +11003484 if (kvmhv_on_pseries()) {
3485 /* call our hypervisor to load up HV regs and go */
3486 struct hv_guest_state hvregs;
Paul Mackerras95a64322018-10-08 16:30:55 +11003487
Paul Mackerras360cae32018-10-08 16:31:04 +11003488 kvmhv_save_hv_regs(vcpu, &hvregs);
3489 hvregs.lpcr = lpcr;
3490 vcpu->arch.regs.msr = vcpu->arch.shregs.msr;
3491 hvregs.version = HV_GUEST_STATE_VERSION;
3492 if (vcpu->arch.nested) {
3493 hvregs.lpid = vcpu->arch.nested->shadow_lpid;
3494 hvregs.vcpu_token = vcpu->arch.nested_vcpu_id;
3495 } else {
3496 hvregs.lpid = vcpu->kvm->arch.lpid;
3497 hvregs.vcpu_token = vcpu->vcpu_id;
3498 }
3499 hvregs.hdec_expiry = time_limit;
3500 trap = plpar_hcall_norets(H_ENTER_NESTED, __pa(&hvregs),
3501 __pa(&vcpu->arch.regs));
3502 kvmhv_restore_hv_return_state(vcpu, &hvregs);
3503 vcpu->arch.shregs.msr = vcpu->arch.regs.msr;
3504 vcpu->arch.shregs.dar = mfspr(SPRN_DAR);
3505 vcpu->arch.shregs.dsisr = mfspr(SPRN_DSISR);
Paul Mackerras4bad7772018-10-08 16:31:06 +11003506
3507 /* H_CEDE has to be handled now, not later */
3508 if (trap == BOOK3S_INTERRUPT_SYSCALL && !vcpu->arch.nested &&
3509 kvmppc_get_gpr(vcpu, 3) == H_CEDE) {
3510 kvmppc_nested_cede(vcpu);
3511 trap = 0;
3512 }
Paul Mackerras360cae32018-10-08 16:31:04 +11003513 } else {
3514 trap = kvmhv_load_hv_regs_and_go(vcpu, time_limit, lpcr);
3515 }
Paul Mackerras95a64322018-10-08 16:30:55 +11003516
3517 vcpu->arch.slb_max = 0;
3518 dec = mfspr(SPRN_DEC);
3519 tb = mftb();
3520 vcpu->arch.dec_expires = dec + tb;
3521 vcpu->cpu = -1;
3522 vcpu->arch.thread_cpu = -1;
3523 vcpu->arch.ctrl = mfspr(SPRN_CTRLF);
3524
3525 vcpu->arch.iamr = mfspr(SPRN_IAMR);
3526 vcpu->arch.pspb = mfspr(SPRN_PSPB);
3527 vcpu->arch.fscr = mfspr(SPRN_FSCR);
3528 vcpu->arch.tar = mfspr(SPRN_TAR);
3529 vcpu->arch.ebbhr = mfspr(SPRN_EBBHR);
3530 vcpu->arch.ebbrr = mfspr(SPRN_EBBRR);
3531 vcpu->arch.bescr = mfspr(SPRN_BESCR);
3532 vcpu->arch.wort = mfspr(SPRN_WORT);
3533 vcpu->arch.tid = mfspr(SPRN_TIDR);
3534 vcpu->arch.amr = mfspr(SPRN_AMR);
3535 vcpu->arch.uamor = mfspr(SPRN_UAMOR);
3536 vcpu->arch.dscr = mfspr(SPRN_DSCR);
3537
3538 mtspr(SPRN_PSPB, 0);
3539 mtspr(SPRN_WORT, 0);
3540 mtspr(SPRN_AMR, 0);
3541 mtspr(SPRN_UAMOR, 0);
3542 mtspr(SPRN_DSCR, host_dscr);
3543 mtspr(SPRN_TIDR, host_tidr);
3544 mtspr(SPRN_IAMR, host_iamr);
3545 mtspr(SPRN_PSPB, 0);
3546
3547 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3548 store_fp_state(&vcpu->arch.fp);
3549#ifdef CONFIG_ALTIVEC
3550 store_vr_state(&vcpu->arch.vr);
3551#endif
3552
3553 if (cpu_has_feature(CPU_FTR_TM) ||
3554 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3555 kvmppc_save_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3556
3557 save_pmu = 1;
3558 if (vcpu->arch.vpa.pinned_addr) {
3559 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3560 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3561 lp->yield_count = cpu_to_be32(yield_count);
3562 vcpu->arch.vpa.dirty = 1;
3563 save_pmu = lp->pmcregs_in_use;
3564 }
3565
3566 kvmhv_save_guest_pmu(vcpu, save_pmu);
3567
3568 vc->entry_exit_map = 0x101;
3569 vc->in_guest = 0;
3570
3571 mtspr(SPRN_DEC, local_paca->kvm_hstate.dec_expires - mftb());
3572
3573 kvmhv_load_host_pmu();
3574
3575 kvmppc_subcore_exit_guest();
3576
3577 return trap;
3578}
3579
3580/*
Paul Mackerras19ccb762011-07-23 17:42:46 +10003581 * Wait for some other vcpu thread to execute us, and
3582 * wake us up when we need to handle something in the host.
3583 */
Paul Mackerrasec257162015-06-24 21:18:03 +10003584static void kvmppc_wait_for_exec(struct kvmppc_vcore *vc,
3585 struct kvm_vcpu *vcpu, int wait_state)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003586{
Paul Mackerras371fefd2011-06-29 00:23:08 +00003587 DEFINE_WAIT(wait);
3588
Paul Mackerras19ccb762011-07-23 17:42:46 +10003589 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
Paul Mackerrasec257162015-06-24 21:18:03 +10003590 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
3591 spin_unlock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003592 schedule();
Paul Mackerrasec257162015-06-24 21:18:03 +10003593 spin_lock(&vc->lock);
3594 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003595 finish_wait(&vcpu->arch.cpu_run, &wait);
3596}
Paul Mackerras371fefd2011-06-29 00:23:08 +00003597
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003598static void grow_halt_poll_ns(struct kvmppc_vcore *vc)
3599{
3600 /* 10us base */
3601 if (vc->halt_poll_ns == 0 && halt_poll_ns_grow)
3602 vc->halt_poll_ns = 10000;
3603 else
3604 vc->halt_poll_ns *= halt_poll_ns_grow;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003605}
3606
3607static void shrink_halt_poll_ns(struct kvmppc_vcore *vc)
3608{
3609 if (halt_poll_ns_shrink == 0)
3610 vc->halt_poll_ns = 0;
3611 else
3612 vc->halt_poll_ns /= halt_poll_ns_shrink;
3613}
3614
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003615#ifdef CONFIG_KVM_XICS
3616static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3617{
3618 if (!xive_enabled())
3619 return false;
Benjamin Herrenschmidt2267ea72018-01-12 13:37:13 +11003620 return vcpu->arch.irq_pending || vcpu->arch.xive_saved_state.pipr <
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003621 vcpu->arch.xive_saved_state.cppr;
3622}
3623#else
3624static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3625{
3626 return false;
3627}
3628#endif /* CONFIG_KVM_XICS */
3629
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003630static bool kvmppc_vcpu_woken(struct kvm_vcpu *vcpu)
3631{
3632 if (vcpu->arch.pending_exceptions || vcpu->arch.prodded ||
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003633 kvmppc_doorbell_pending(vcpu) || xive_interrupt_pending(vcpu))
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003634 return true;
3635
3636 return false;
3637}
3638
Suraj Jitindar Singh908a0932016-10-14 11:53:23 +11003639/*
3640 * Check to see if any of the runnable vcpus on the vcore have pending
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003641 * exceptions or are no longer ceded
3642 */
3643static int kvmppc_vcore_check_block(struct kvmppc_vcore *vc)
3644{
3645 struct kvm_vcpu *vcpu;
3646 int i;
3647
3648 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003649 if (!vcpu->arch.ceded || kvmppc_vcpu_woken(vcpu))
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003650 return 1;
3651 }
3652
3653 return 0;
3654}
3655
Paul Mackerras19ccb762011-07-23 17:42:46 +10003656/*
3657 * All the vcpus in this vcore are idle, so wait for a decrementer
3658 * or external interrupt to one of the vcpus. vc->lock is held.
3659 */
3660static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
3661{
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003662 ktime_t cur, start_poll, start_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003663 int do_sleep = 1;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003664 u64 block_ns;
Marcelo Tosatti85773702016-02-19 09:46:39 +01003665 DECLARE_SWAITQUEUE(wait);
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003666
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003667 /* Poll for pending exceptions and ceded state */
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003668 cur = start_poll = ktime_get();
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003669 if (vc->halt_poll_ns) {
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003670 ktime_t stop = ktime_add_ns(start_poll, vc->halt_poll_ns);
3671 ++vc->runner->stat.halt_attempted_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003672
3673 vc->vcore_state = VCORE_POLLING;
3674 spin_unlock(&vc->lock);
3675
3676 do {
3677 if (kvmppc_vcore_check_block(vc)) {
3678 do_sleep = 0;
3679 break;
3680 }
3681 cur = ktime_get();
3682 } while (single_task_running() && ktime_before(cur, stop));
3683
3684 spin_lock(&vc->lock);
3685 vc->vcore_state = VCORE_INACTIVE;
3686
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003687 if (!do_sleep) {
3688 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003689 goto out;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003690 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003691 }
3692
Peter Zijlstrab3dae102018-06-12 10:34:52 +02003693 prepare_to_swait_exclusive(&vc->wq, &wait, TASK_INTERRUPTIBLE);
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003694
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003695 if (kvmppc_vcore_check_block(vc)) {
Marcelo Tosatti85773702016-02-19 09:46:39 +01003696 finish_swait(&vc->wq, &wait);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003697 do_sleep = 0;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003698 /* If we polled, count this as a successful poll */
3699 if (vc->halt_poll_ns)
3700 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003701 goto out;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003702 }
3703
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003704 start_wait = ktime_get();
3705
Paul Mackerras19ccb762011-07-23 17:42:46 +10003706 vc->vcore_state = VCORE_SLEEPING;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003707 trace_kvmppc_vcore_blocked(vc, 0);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003708 spin_unlock(&vc->lock);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003709 schedule();
Marcelo Tosatti85773702016-02-19 09:46:39 +01003710 finish_swait(&vc->wq, &wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003711 spin_lock(&vc->lock);
3712 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003713 trace_kvmppc_vcore_blocked(vc, 1);
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003714 ++vc->runner->stat.halt_successful_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003715
3716 cur = ktime_get();
3717
3718out:
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003719 block_ns = ktime_to_ns(cur) - ktime_to_ns(start_poll);
3720
3721 /* Attribute wait time */
3722 if (do_sleep) {
3723 vc->runner->stat.halt_wait_ns +=
3724 ktime_to_ns(cur) - ktime_to_ns(start_wait);
3725 /* Attribute failed poll time */
3726 if (vc->halt_poll_ns)
3727 vc->runner->stat.halt_poll_fail_ns +=
3728 ktime_to_ns(start_wait) -
3729 ktime_to_ns(start_poll);
3730 } else {
3731 /* Attribute successful poll time */
3732 if (vc->halt_poll_ns)
3733 vc->runner->stat.halt_poll_success_ns +=
3734 ktime_to_ns(cur) -
3735 ktime_to_ns(start_poll);
3736 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003737
3738 /* Adjust poll time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003739 if (halt_poll_ns) {
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003740 if (block_ns <= vc->halt_poll_ns)
3741 ;
3742 /* We slept and blocked for longer than the max halt time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003743 else if (vc->halt_poll_ns && block_ns > halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003744 shrink_halt_poll_ns(vc);
3745 /* We slept and our poll time is too small */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003746 else if (vc->halt_poll_ns < halt_poll_ns &&
3747 block_ns < halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003748 grow_halt_poll_ns(vc);
Suraj Jitindar Singhe03f3922016-10-14 11:53:21 +11003749 if (vc->halt_poll_ns > halt_poll_ns)
3750 vc->halt_poll_ns = halt_poll_ns;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003751 } else
3752 vc->halt_poll_ns = 0;
3753
3754 trace_kvmppc_vcore_wakeup(do_sleep, block_ns);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003755}
3756
Paul Mackerras360cae32018-10-08 16:31:04 +11003757/*
3758 * This never fails for a radix guest, as none of the operations it does
3759 * for a radix guest can fail or have a way to report failure.
3760 * kvmhv_run_single_vcpu() relies on this fact.
3761 */
Paul Mackerras432953b2017-11-09 15:37:10 +11003762static int kvmhv_setup_mmu(struct kvm_vcpu *vcpu)
3763{
3764 int r = 0;
3765 struct kvm *kvm = vcpu->kvm;
3766
3767 mutex_lock(&kvm->lock);
3768 if (!kvm->arch.mmu_ready) {
3769 if (!kvm_is_radix(kvm))
3770 r = kvmppc_hv_setup_htab_rma(vcpu);
3771 if (!r) {
3772 if (cpu_has_feature(CPU_FTR_ARCH_300))
3773 kvmppc_setup_partition_table(kvm);
3774 kvm->arch.mmu_ready = 1;
3775 }
3776 }
3777 mutex_unlock(&kvm->lock);
3778 return r;
3779}
3780
Paul Mackerras19ccb762011-07-23 17:42:46 +10003781static int kvmppc_run_vcpu(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
3782{
Paul Mackerras38c53af2017-11-08 14:44:04 +11003783 int n_ceded, i, r;
Paul Mackerras19ccb762011-07-23 17:42:46 +10003784 struct kvmppc_vcore *vc;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003785 struct kvm_vcpu *v;
Paul Mackerras9e368f22011-06-29 00:40:08 +00003786
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003787 trace_kvmppc_run_vcpu_enter(vcpu);
3788
Paul Mackerras371fefd2011-06-29 00:23:08 +00003789 kvm_run->exit_reason = 0;
3790 vcpu->arch.ret = RESUME_GUEST;
3791 vcpu->arch.trap = 0;
Paul Mackerras2f12f032012-10-15 01:17:17 +00003792 kvmppc_update_vpas(vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003793
Paul Mackerras371fefd2011-06-29 00:23:08 +00003794 /*
3795 * Synchronize with other threads in this virtual core
3796 */
3797 vc = vcpu->arch.vcore;
3798 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003799 vcpu->arch.ceded = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003800 vcpu->arch.run_task = current;
3801 vcpu->arch.kvm_run = kvm_run;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003802 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
Paul Mackerras19ccb762011-07-23 17:42:46 +10003803 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003804 vcpu->arch.busy_preempt = TB_NIL;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003805 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003806 ++vc->n_runnable;
3807
Paul Mackerras19ccb762011-07-23 17:42:46 +10003808 /*
3809 * This happens the first time this is called for a vcpu.
3810 * If the vcore is already running, we may be able to start
3811 * this thread straight away and have it join in.
3812 */
Paul Mackerras8455d792012-10-15 01:17:42 +00003813 if (!signal_pending(current)) {
Paul Mackerrasc0093f12017-11-20 16:12:25 +11003814 if ((vc->vcore_state == VCORE_PIGGYBACK ||
3815 vc->vcore_state == VCORE_RUNNING) &&
Paul Mackerrasec257162015-06-24 21:18:03 +10003816 !VCORE_IS_EXITING(vc)) {
Paul Mackerras2f12f032012-10-15 01:17:17 +00003817 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003818 kvmppc_start_thread(vcpu, vc);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003819 trace_kvm_guest_enter(vcpu);
Paul Mackerras8455d792012-10-15 01:17:42 +00003820 } else if (vc->vcore_state == VCORE_SLEEPING) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +02003821 swake_up_one(&vc->wq);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003822 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003823
Paul Mackerras8455d792012-10-15 01:17:42 +00003824 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003825
3826 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
3827 !signal_pending(current)) {
Paul Mackerras072df812017-11-09 14:30:24 +11003828 /* See if the MMU is ready to go */
3829 if (!vcpu->kvm->arch.mmu_ready) {
Paul Mackerras38c53af2017-11-08 14:44:04 +11003830 spin_unlock(&vc->lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11003831 r = kvmhv_setup_mmu(vcpu);
Paul Mackerras38c53af2017-11-08 14:44:04 +11003832 spin_lock(&vc->lock);
3833 if (r) {
3834 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
Paul Mackerras432953b2017-11-09 15:37:10 +11003835 kvm_run->fail_entry.
3836 hardware_entry_failure_reason = 0;
Paul Mackerras38c53af2017-11-08 14:44:04 +11003837 vcpu->arch.ret = r;
3838 break;
3839 }
3840 }
3841
Paul Mackerrasec257162015-06-24 21:18:03 +10003842 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
3843 kvmppc_vcore_end_preempt(vc);
3844
Paul Mackerras8455d792012-10-15 01:17:42 +00003845 if (vc->vcore_state != VCORE_INACTIVE) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003846 kvmppc_wait_for_exec(vc, vcpu, TASK_INTERRUPTIBLE);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003847 continue;
3848 }
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003849 for_each_runnable_thread(i, v, vc) {
Scott Wood7e28e60e2011-11-08 18:23:20 -06003850 kvmppc_core_prepare_to_enter(v);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003851 if (signal_pending(v->arch.run_task)) {
3852 kvmppc_remove_runnable(vc, v);
3853 v->stat.signal_exits++;
3854 v->arch.kvm_run->exit_reason = KVM_EXIT_INTR;
3855 v->arch.ret = -EINTR;
3856 wake_up(&v->arch.cpu_run);
3857 }
3858 }
Paul Mackerras8455d792012-10-15 01:17:42 +00003859 if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
3860 break;
Paul Mackerras8455d792012-10-15 01:17:42 +00003861 n_ceded = 0;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003862 for_each_runnable_thread(i, v, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003863 if (!kvmppc_vcpu_woken(v))
Paul Mackerras8455d792012-10-15 01:17:42 +00003864 n_ceded += v->arch.ceded;
Paul Mackerras4619ac82013-04-17 20:31:41 +00003865 else
3866 v->arch.ceded = 0;
3867 }
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003868 vc->runner = vcpu;
3869 if (n_ceded == vc->n_runnable) {
Paul Mackerras8455d792012-10-15 01:17:42 +00003870 kvmppc_vcore_blocked(vc);
Konstantin Khlebnikovc56dadf2015-07-15 12:52:03 +03003871 } else if (need_resched()) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003872 kvmppc_vcore_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003873 /* Let something else run */
3874 cond_resched_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10003875 if (vc->vcore_state == VCORE_PREEMPT)
3876 kvmppc_vcore_end_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003877 } else {
Paul Mackerras8455d792012-10-15 01:17:42 +00003878 kvmppc_run_core(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003879 }
Paul Mackerras0456ec42012-02-03 00:56:21 +00003880 vc->runner = NULL;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003881 }
3882
Paul Mackerras8455d792012-10-15 01:17:42 +00003883 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
3884 (vc->vcore_state == VCORE_RUNNING ||
Paul Mackerras5fc3e642015-09-18 13:13:44 +10003885 vc->vcore_state == VCORE_EXITING ||
3886 vc->vcore_state == VCORE_PIGGYBACK))
Paul Mackerrasec257162015-06-24 21:18:03 +10003887 kvmppc_wait_for_exec(vc, vcpu, TASK_UNINTERRUPTIBLE);
Paul Mackerras8455d792012-10-15 01:17:42 +00003888
Paul Mackerras5fc3e642015-09-18 13:13:44 +10003889 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
3890 kvmppc_vcore_end_preempt(vc);
3891
Paul Mackerras8455d792012-10-15 01:17:42 +00003892 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
3893 kvmppc_remove_runnable(vc, vcpu);
3894 vcpu->stat.signal_exits++;
3895 kvm_run->exit_reason = KVM_EXIT_INTR;
3896 vcpu->arch.ret = -EINTR;
3897 }
3898
3899 if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) {
3900 /* Wake up some vcpu to run the core */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003901 i = -1;
3902 v = next_runnable_thread(vc, &i);
Paul Mackerras8455d792012-10-15 01:17:42 +00003903 wake_up(&v->arch.cpu_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003904 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003905
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003906 trace_kvmppc_run_vcpu_exit(vcpu, kvm_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003907 spin_unlock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003908 return vcpu->arch.ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00003909}
3910
Paul Mackerras360cae32018-10-08 16:31:04 +11003911int kvmhv_run_single_vcpu(struct kvm_run *kvm_run,
3912 struct kvm_vcpu *vcpu, u64 time_limit,
3913 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003914{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11003915 int trap, r, pcpu;
Paul Mackerras95a64322018-10-08 16:30:55 +11003916 int srcu_idx;
3917 struct kvmppc_vcore *vc;
3918 struct kvm *kvm = vcpu->kvm;
Paul Mackerras360cae32018-10-08 16:31:04 +11003919 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras95a64322018-10-08 16:30:55 +11003920
3921 trace_kvmppc_run_vcpu_enter(vcpu);
3922
3923 kvm_run->exit_reason = 0;
3924 vcpu->arch.ret = RESUME_GUEST;
3925 vcpu->arch.trap = 0;
3926
3927 vc = vcpu->arch.vcore;
3928 vcpu->arch.ceded = 0;
3929 vcpu->arch.run_task = current;
3930 vcpu->arch.kvm_run = kvm_run;
3931 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
3932 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
3933 vcpu->arch.busy_preempt = TB_NIL;
3934 vcpu->arch.last_inst = KVM_INST_FETCH_FAILED;
3935 vc->runnable_threads[0] = vcpu;
3936 vc->n_runnable = 1;
3937 vc->runner = vcpu;
3938
3939 /* See if the MMU is ready to go */
Paul Mackerras360cae32018-10-08 16:31:04 +11003940 if (!kvm->arch.mmu_ready)
3941 kvmhv_setup_mmu(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11003942
3943 if (need_resched())
3944 cond_resched();
3945
3946 kvmppc_update_vpas(vcpu);
3947
3948 init_vcore_to_run(vc);
3949 vc->preempt_tb = TB_NIL;
3950
3951 preempt_disable();
3952 pcpu = smp_processor_id();
3953 vc->pcpu = pcpu;
3954 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
3955
3956 local_irq_disable();
3957 hard_irq_disable();
3958 if (signal_pending(current))
3959 goto sigpend;
3960 if (lazy_irq_pending() || need_resched() || !kvm->arch.mmu_ready)
3961 goto out;
3962
Paul Mackerras360cae32018-10-08 16:31:04 +11003963 if (!nested) {
3964 kvmppc_core_prepare_to_enter(vcpu);
3965 if (vcpu->arch.doorbell_request) {
3966 vc->dpdes = 1;
3967 smp_wmb();
3968 vcpu->arch.doorbell_request = 0;
3969 }
3970 if (test_bit(BOOK3S_IRQPRIO_EXTERNAL,
3971 &vcpu->arch.pending_exceptions))
3972 lpcr |= LPCR_MER;
3973 } else if (vcpu->arch.pending_exceptions ||
3974 vcpu->arch.doorbell_request ||
3975 xive_interrupt_pending(vcpu)) {
3976 vcpu->arch.ret = RESUME_HOST;
3977 goto out;
3978 }
Paul Mackerras95a64322018-10-08 16:30:55 +11003979
3980 kvmppc_clear_host_core(pcpu);
3981
3982 local_paca->kvm_hstate.tid = 0;
3983 local_paca->kvm_hstate.napping = 0;
3984 local_paca->kvm_hstate.kvm_split_mode = NULL;
3985 kvmppc_start_thread(vcpu, vc);
3986 kvmppc_create_dtl_entry(vcpu, vc);
3987 trace_kvm_guest_enter(vcpu);
3988
3989 vc->vcore_state = VCORE_RUNNING;
3990 trace_kvmppc_run_core(vc, 0);
3991
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11003992 if (cpu_has_feature(CPU_FTR_HVMODE))
3993 kvmppc_radix_check_need_tlb_flush(kvm, pcpu, nested);
Paul Mackerras95a64322018-10-08 16:30:55 +11003994
3995 trace_hardirqs_on();
3996 guest_enter_irqoff();
3997
3998 srcu_idx = srcu_read_lock(&kvm->srcu);
3999
4000 this_cpu_disable_ftrace();
4001
Paul Mackerras360cae32018-10-08 16:31:04 +11004002 trap = kvmhv_p9_guest_entry(vcpu, time_limit, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004003 vcpu->arch.trap = trap;
4004
4005 this_cpu_enable_ftrace();
4006
4007 srcu_read_unlock(&kvm->srcu, srcu_idx);
4008
4009 mtspr(SPRN_LPID, kvm->arch.host_lpid);
4010 isync();
4011
4012 trace_hardirqs_off();
4013 set_irq_happened(trap);
4014
4015 kvmppc_set_host_core(pcpu);
4016
4017 local_irq_enable();
4018 guest_exit();
4019
4020 cpumask_clear_cpu(pcpu, &kvm->arch.cpu_in_guest);
4021
4022 preempt_enable();
4023
4024 /* cancel pending decrementer exception if DEC is now positive */
4025 if (get_tb() < vcpu->arch.dec_expires && kvmppc_core_pending_dec(vcpu))
4026 kvmppc_core_dequeue_dec(vcpu);
4027
4028 trace_kvm_guest_exit(vcpu);
4029 r = RESUME_GUEST;
Paul Mackerras360cae32018-10-08 16:31:04 +11004030 if (trap) {
4031 if (!nested)
4032 r = kvmppc_handle_exit_hv(kvm_run, vcpu, current);
4033 else
4034 r = kvmppc_handle_nested_exit(vcpu);
4035 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004036 vcpu->arch.ret = r;
4037
4038 if (is_kvmppc_resume_guest(r) && vcpu->arch.ceded &&
4039 !kvmppc_vcpu_woken(vcpu)) {
4040 kvmppc_set_timer(vcpu);
4041 while (vcpu->arch.ceded && !kvmppc_vcpu_woken(vcpu)) {
4042 if (signal_pending(current)) {
4043 vcpu->stat.signal_exits++;
4044 kvm_run->exit_reason = KVM_EXIT_INTR;
4045 vcpu->arch.ret = -EINTR;
4046 break;
4047 }
4048 spin_lock(&vc->lock);
4049 kvmppc_vcore_blocked(vc);
4050 spin_unlock(&vc->lock);
4051 }
4052 }
4053 vcpu->arch.ceded = 0;
4054
4055 vc->vcore_state = VCORE_INACTIVE;
4056 trace_kvmppc_run_core(vc, 1);
4057
4058 done:
4059 kvmppc_remove_runnable(vc, vcpu);
4060 trace_kvmppc_run_vcpu_exit(vcpu, kvm_run);
4061
4062 return vcpu->arch.ret;
4063
4064 sigpend:
4065 vcpu->stat.signal_exits++;
4066 kvm_run->exit_reason = KVM_EXIT_INTR;
4067 vcpu->arch.ret = -EINTR;
4068 out:
4069 local_irq_enable();
4070 preempt_enable();
4071 goto done;
4072}
4073
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304074static int kvmppc_vcpu_run_hv(struct kvm_run *run, struct kvm_vcpu *vcpu)
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004075{
4076 int r;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004077 int srcu_idx;
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004078 unsigned long ebb_regs[3] = {}; /* shut up GCC */
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004079 unsigned long user_tar = 0;
4080 unsigned int user_vrsave;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004081 struct kvm *kvm;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004082
Alexander Grafaf8f38b2011-08-10 13:57:08 +02004083 if (!vcpu->arch.sane) {
4084 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4085 return -EINVAL;
4086 }
4087
Paul Mackerras46a704f2017-06-15 16:10:27 +10004088 /*
4089 * Don't allow entry with a suspended transaction, because
4090 * the guest entry/exit code will lose it.
4091 * If the guest has TM enabled, save away their TM-related SPRs
4092 * (they will get restored by the TM unavailable interrupt).
4093 */
4094#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
4095 if (cpu_has_feature(CPU_FTR_TM) && current->thread.regs &&
4096 (current->thread.regs->msr & MSR_TM)) {
4097 if (MSR_TM_ACTIVE(current->thread.regs->msr)) {
4098 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4099 run->fail_entry.hardware_entry_failure_reason = 0;
4100 return -EINVAL;
4101 }
Paul Mackerrase4705712017-07-21 13:57:14 +10004102 /* Enable TM so we can read the TM SPRs */
4103 mtmsr(mfmsr() | MSR_TM);
Paul Mackerras46a704f2017-06-15 16:10:27 +10004104 current->thread.tm_tfhar = mfspr(SPRN_TFHAR);
4105 current->thread.tm_tfiar = mfspr(SPRN_TFIAR);
4106 current->thread.tm_texasr = mfspr(SPRN_TEXASR);
4107 current->thread.regs->msr &= ~MSR_TM;
4108 }
4109#endif
4110
Paul Mackerras7aa15842018-04-20 19:53:22 +10004111 /*
4112 * Force online to 1 for the sake of old userspace which doesn't
4113 * set it.
4114 */
4115 if (!vcpu->arch.online) {
4116 atomic_inc(&vcpu->arch.vcore->online_count);
4117 vcpu->arch.online = 1;
4118 }
4119
Scott Wood25051b5a2011-11-08 18:23:23 -06004120 kvmppc_core_prepare_to_enter(vcpu);
4121
Paul Mackerras19ccb762011-07-23 17:42:46 +10004122 /* No need to go into the guest when all we'll do is come back out */
4123 if (signal_pending(current)) {
4124 run->exit_reason = KVM_EXIT_INTR;
4125 return -EINTR;
4126 }
4127
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004128 kvm = vcpu->kvm;
4129 atomic_inc(&kvm->arch.vcpus_running);
4130 /* Order vcpus_running vs. mmu_ready, see kvmppc_alloc_reset_hpt */
Paul Mackerras32fad282012-05-04 02:32:53 +00004131 smp_mb();
4132
Anton Blanchard579e6332015-10-29 11:44:09 +11004133 flush_all_to_thread(current);
4134
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004135 /* Save userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004136 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4137 ebb_regs[0] = mfspr(SPRN_EBBHR);
4138 ebb_regs[1] = mfspr(SPRN_EBBRR);
4139 ebb_regs[2] = mfspr(SPRN_BESCR);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004140 user_tar = mfspr(SPRN_TAR);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004141 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004142 user_vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004143
Paul Mackerras19ccb762011-07-23 17:42:46 +10004144 vcpu->arch.wqp = &vcpu->arch.vcore->wq;
Paul Mackerras342d3db2011-12-12 12:38:05 +00004145 vcpu->arch.pgdir = current->mm->pgd;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004146 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004147
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004148 do {
Paul Mackerras95a64322018-10-08 16:30:55 +11004149 if (kvm->arch.threads_indep && kvm_is_radix(kvm))
Paul Mackerras360cae32018-10-08 16:31:04 +11004150 r = kvmhv_run_single_vcpu(run, vcpu, ~(u64)0,
4151 vcpu->arch.vcore->lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004152 else
4153 r = kvmppc_run_vcpu(run, vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004154
4155 if (run->exit_reason == KVM_EXIT_PAPR_HCALL &&
4156 !(vcpu->arch.shregs.msr & MSR_PR)) {
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004157 trace_kvm_hcall_enter(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004158 r = kvmppc_pseries_do_hcall(vcpu);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004159 trace_kvm_hcall_exit(vcpu, r);
Scott Wood7e28e60e2011-11-08 18:23:20 -06004160 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004161 } else if (r == RESUME_PAGE_FAULT) {
Paul Mackerras432953b2017-11-09 15:37:10 +11004162 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004163 r = kvmppc_book3s_hv_page_fault(run, vcpu,
4164 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
Paul Mackerras432953b2017-11-09 15:37:10 +11004165 srcu_read_unlock(&kvm->srcu, srcu_idx);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004166 } else if (r == RESUME_PASSTHROUGH) {
4167 if (WARN_ON(xive_enabled()))
4168 r = H_SUCCESS;
4169 else
4170 r = kvmppc_xics_rm_complete(vcpu, 0);
4171 }
Greg Kurze59d24e2014-02-06 17:36:56 +01004172 } while (is_kvmppc_resume_guest(r));
Paul Mackerras32fad282012-05-04 02:32:53 +00004173
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004174 /* Restore userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004175 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4176 mtspr(SPRN_EBBHR, ebb_regs[0]);
4177 mtspr(SPRN_EBBRR, ebb_regs[1]);
4178 mtspr(SPRN_BESCR, ebb_regs[2]);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004179 mtspr(SPRN_TAR, user_tar);
4180 mtspr(SPRN_FSCR, current->thread.fscr);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004181 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004182 mtspr(SPRN_VRSAVE, user_vrsave);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004183
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004184 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras432953b2017-11-09 15:37:10 +11004185 atomic_dec(&kvm->arch.vcpus_running);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004186 return r;
4187}
4188
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004189static void kvmppc_add_seg_page_size(struct kvm_ppc_one_seg_page_size **sps,
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004190 int shift, int sllp)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004191{
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004192 (*sps)->page_shift = shift;
4193 (*sps)->slb_enc = sllp;
4194 (*sps)->enc[0].page_shift = shift;
4195 (*sps)->enc[0].pte_enc = kvmppc_pgsize_lp_encoding(shift, shift);
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304196 /*
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004197 * Add 16MB MPSS support (may get filtered out by userspace)
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304198 */
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004199 if (shift != 24) {
4200 int penc = kvmppc_pgsize_lp_encoding(shift, 24);
4201 if (penc != -1) {
4202 (*sps)->enc[1].page_shift = 24;
4203 (*sps)->enc[1].pte_enc = penc;
4204 }
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304205 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004206 (*sps)++;
4207}
4208
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304209static int kvm_vm_ioctl_get_smmu_info_hv(struct kvm *kvm,
4210 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004211{
4212 struct kvm_ppc_one_seg_page_size *sps;
4213
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004214 /*
Paul Mackerrase3bfed12017-08-25 19:53:39 +10004215 * POWER7, POWER8 and POWER9 all support 32 storage keys for data.
4216 * POWER7 doesn't support keys for instruction accesses,
4217 * POWER8 and POWER9 do.
4218 */
4219 info->data_keys = 32;
4220 info->instr_keys = cpu_has_feature(CPU_FTR_ARCH_207S) ? 32 : 0;
4221
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004222 /* POWER7, 8 and 9 all have 1T segments and 32-entry SLB */
4223 info->flags = KVM_PPC_PAGE_SIZES_REAL | KVM_PPC_1T_SEGMENTS;
4224 info->slb_size = 32;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004225
4226 /* We only support these sizes for now, and no muti-size segments */
4227 sps = &info->sps[0];
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004228 kvmppc_add_seg_page_size(&sps, 12, 0);
4229 kvmppc_add_seg_page_size(&sps, 16, SLB_VSID_L | SLB_VSID_LP_01);
4230 kvmppc_add_seg_page_size(&sps, 24, SLB_VSID_L);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004231
4232 return 0;
4233}
4234
Paul Mackerras82ed3612011-12-15 02:03:22 +00004235/*
4236 * Get (and clear) the dirty memory log for a memory slot.
4237 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304238static int kvm_vm_ioctl_get_dirty_log_hv(struct kvm *kvm,
4239 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004240{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004241 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004242 struct kvm_memory_slot *memslot;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004243 int i, r;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004244 unsigned long n;
Paul Mackerrase641a312017-10-26 16:39:19 +11004245 unsigned long *buf, *p;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004246 struct kvm_vcpu *vcpu;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004247
4248 mutex_lock(&kvm->slots_lock);
4249
4250 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07004251 if (log->slot >= KVM_USER_MEM_SLOTS)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004252 goto out;
4253
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004254 slots = kvm_memslots(kvm);
4255 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004256 r = -ENOENT;
4257 if (!memslot->dirty_bitmap)
4258 goto out;
4259
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004260 /*
Paul Mackerrase641a312017-10-26 16:39:19 +11004261 * Use second half of bitmap area because both HPT and radix
4262 * accumulate bits in the first half.
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004263 */
Paul Mackerras82ed3612011-12-15 02:03:22 +00004264 n = kvm_dirty_bitmap_bytes(memslot);
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004265 buf = memslot->dirty_bitmap + n / sizeof(long);
4266 memset(buf, 0, n);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004267
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004268 if (kvm_is_radix(kvm))
4269 r = kvmppc_hv_get_dirty_log_radix(kvm, memslot, buf);
4270 else
4271 r = kvmppc_hv_get_dirty_log_hpt(kvm, memslot, buf);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004272 if (r)
4273 goto out;
4274
Paul Mackerrase641a312017-10-26 16:39:19 +11004275 /*
4276 * We accumulate dirty bits in the first half of the
4277 * memslot's dirty_bitmap area, for when pages are paged
4278 * out or modified by the host directly. Pick up these
4279 * bits and add them to the map.
4280 */
4281 p = memslot->dirty_bitmap;
4282 for (i = 0; i < n / sizeof(long); ++i)
4283 buf[i] |= xchg(&p[i], 0);
4284
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004285 /* Harvest dirty bits from VPA and DTL updates */
4286 /* Note: we never modify the SLB shadow buffer areas */
4287 kvm_for_each_vcpu(i, vcpu, kvm) {
4288 spin_lock(&vcpu->arch.vpa_update_lock);
4289 kvmppc_harvest_vpa_dirty(&vcpu->arch.vpa, memslot, buf);
4290 kvmppc_harvest_vpa_dirty(&vcpu->arch.dtl, memslot, buf);
4291 spin_unlock(&vcpu->arch.vpa_update_lock);
4292 }
4293
Paul Mackerras82ed3612011-12-15 02:03:22 +00004294 r = -EFAULT;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004295 if (copy_to_user(log->dirty_bitmap, buf, n))
Paul Mackerras82ed3612011-12-15 02:03:22 +00004296 goto out;
4297
4298 r = 0;
4299out:
4300 mutex_unlock(&kvm->slots_lock);
4301 return r;
4302}
4303
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304304static void kvmppc_core_free_memslot_hv(struct kvm_memory_slot *free,
4305 struct kvm_memory_slot *dont)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004306{
4307 if (!dont || free->arch.rmap != dont->arch.rmap) {
4308 vfree(free->arch.rmap);
4309 free->arch.rmap = NULL;
4310 }
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004311}
4312
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304313static int kvmppc_core_create_memslot_hv(struct kvm_memory_slot *slot,
4314 unsigned long npages)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004315{
Kees Cookfad953c2018-06-12 14:27:37 -07004316 slot->arch.rmap = vzalloc(array_size(npages, sizeof(*slot->arch.rmap)));
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004317 if (!slot->arch.rmap)
4318 return -ENOMEM;
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004319
4320 return 0;
4321}
4322
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304323static int kvmppc_core_prepare_memory_region_hv(struct kvm *kvm,
4324 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02004325 const struct kvm_userspace_memory_region *mem)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004326{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004327 return 0;
4328}
4329
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304330static void kvmppc_core_commit_memory_region_hv(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02004331 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004332 const struct kvm_memory_slot *old,
4333 const struct kvm_memory_slot *new)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004334{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004335 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004336
Yongji Xiea56ee9f2016-11-04 13:55:12 +08004337 /*
4338 * If we are making a new memslot, it might make
4339 * some address that was previously cached as emulated
4340 * MMIO be no longer emulated MMIO, so invalidate
4341 * all the caches of emulated MMIO translations.
4342 */
4343 if (npages)
4344 atomic64_inc(&kvm->arch.mmio_update);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004345}
4346
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004347/*
4348 * Update LPCR values in kvm->arch and in vcores.
4349 * Caller must hold kvm->lock.
4350 */
4351void kvmppc_update_lpcr(struct kvm *kvm, unsigned long lpcr, unsigned long mask)
4352{
4353 long int i;
4354 u32 cores_done = 0;
4355
4356 if ((kvm->arch.lpcr & mask) == lpcr)
4357 return;
4358
4359 kvm->arch.lpcr = (kvm->arch.lpcr & ~mask) | lpcr;
4360
4361 for (i = 0; i < KVM_MAX_VCORES; ++i) {
4362 struct kvmppc_vcore *vc = kvm->arch.vcores[i];
4363 if (!vc)
4364 continue;
4365 spin_lock(&vc->lock);
4366 vc->lpcr = (vc->lpcr & ~mask) | lpcr;
4367 spin_unlock(&vc->lock);
4368 if (++cores_done >= kvm->arch.online_vcores)
4369 break;
4370 }
4371}
4372
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304373static void kvmppc_mmu_destroy_hv(struct kvm_vcpu *vcpu)
4374{
4375 return;
4376}
4377
Paul Mackerrasded13fc2017-11-22 14:38:53 +11004378void kvmppc_setup_partition_table(struct kvm *kvm)
Paul Mackerras7a840842016-11-16 22:25:20 +11004379{
4380 unsigned long dw0, dw1;
4381
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004382 if (!kvm_is_radix(kvm)) {
4383 /* PS field - page size for VRMA */
4384 dw0 = ((kvm->arch.vrma_slb_v & SLB_VSID_L) >> 1) |
4385 ((kvm->arch.vrma_slb_v & SLB_VSID_LP) << 1);
4386 /* HTABSIZE and HTABORG fields */
4387 dw0 |= kvm->arch.sdr1;
Paul Mackerras7a840842016-11-16 22:25:20 +11004388
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004389 /* Second dword as set by userspace */
4390 dw1 = kvm->arch.process_table;
4391 } else {
4392 dw0 = PATB_HR | radix__get_tree_size() |
4393 __pa(kvm->arch.pgtable) | RADIX_PGD_INDEX_SIZE;
4394 dw1 = PATB_GR | kvm->arch.process_table;
4395 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004396 kvmhv_set_ptbl_entry(kvm->arch.lpid, dw0, dw1);
Paul Mackerras7a840842016-11-16 22:25:20 +11004397}
4398
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004399/*
4400 * Set up HPT (hashed page table) and RMA (real-mode area).
4401 * Must be called with kvm->lock held.
4402 */
Paul Mackerras32fad282012-05-04 02:32:53 +00004403static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004404{
4405 int err = 0;
4406 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004407 unsigned long hva;
4408 struct kvm_memory_slot *memslot;
4409 struct vm_area_struct *vma;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004410 unsigned long lpcr = 0, senc;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004411 unsigned long psize, porder;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004412 int srcu_idx;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004413
Paul Mackerras32fad282012-05-04 02:32:53 +00004414 /* Allocate hashed page table (if not done already) and reset it */
David Gibson3f9d4f52016-12-20 16:49:00 +11004415 if (!kvm->arch.hpt.virt) {
David Gibsonaae07772016-12-20 16:49:02 +11004416 int order = KVM_DEFAULT_HPT_ORDER;
4417 struct kvm_hpt_info info;
4418
4419 err = kvmppc_allocate_hpt(&info, order);
4420 /* If we get here, it means userspace didn't specify a
4421 * size explicitly. So, try successively smaller
4422 * sizes if the default failed. */
4423 while ((err == -ENOMEM) && --order >= PPC_MIN_HPT_ORDER)
4424 err = kvmppc_allocate_hpt(&info, order);
4425
4426 if (err < 0) {
Paul Mackerras32fad282012-05-04 02:32:53 +00004427 pr_err("KVM: Couldn't alloc HPT\n");
4428 goto out;
4429 }
David Gibsonaae07772016-12-20 16:49:02 +11004430
4431 kvmppc_set_hpt(kvm, &info);
Paul Mackerras32fad282012-05-04 02:32:53 +00004432 }
4433
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004434 /* Look up the memslot for guest physical address 0 */
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004435 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004436 memslot = gfn_to_memslot(kvm, 0);
4437
4438 /* We must have some memory at 0 by now */
4439 err = -EINVAL;
4440 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004441 goto out_srcu;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004442
4443 /* Look up the VMA for the start of this memory slot */
4444 hva = memslot->userspace_addr;
4445 down_read(&current->mm->mmap_sem);
4446 vma = find_vma(current->mm, hva);
4447 if (!vma || vma->vm_start > hva || (vma->vm_flags & VM_IO))
4448 goto up_out;
4449
4450 psize = vma_kernel_pagesize(vma);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004451
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004452 up_read(&current->mm->mmap_sem);
4453
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004454 /* We can handle 4k, 64k or 16M pages in the VRMA */
Paul Mackerrasdebd5742018-03-02 15:38:04 +11004455 if (psize >= 0x1000000)
4456 psize = 0x1000000;
4457 else if (psize >= 0x10000)
4458 psize = 0x10000;
4459 else
4460 psize = 0x1000;
4461 porder = __ilog2(psize);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004462
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004463 senc = slb_pgsize_encoding(psize);
4464 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
4465 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004466 /* Create HPTEs in the hash page table for the VRMA */
4467 kvmppc_map_vrma(vcpu, memslot, porder);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004468
Paul Mackerras7a840842016-11-16 22:25:20 +11004469 /* Update VRMASD field in the LPCR */
4470 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
4471 /* the -4 is to account for senc values starting at 0x10 */
4472 lpcr = senc << (LPCR_VRMASD_SH - 4);
4473 kvmppc_update_lpcr(kvm, lpcr, LPCR_VRMASD);
Paul Mackerras7a840842016-11-16 22:25:20 +11004474 }
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004475
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004476 /* Order updates to kvm->arch.lpcr etc. vs. mmu_ready */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004477 smp_wmb();
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004478 err = 0;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004479 out_srcu:
4480 srcu_read_unlock(&kvm->srcu, srcu_idx);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004481 out:
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004482 return err;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004483
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004484 up_out:
4485 up_read(&current->mm->mmap_sem);
Lai Jiangshan505d6422013-03-16 00:50:49 +08004486 goto out_srcu;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004487}
4488
Paul Mackerras18c36402017-09-13 16:00:10 +10004489/* Must be called with kvm->lock held and mmu_ready = 0 and no vcpus running */
4490int kvmppc_switch_mmu_to_hpt(struct kvm *kvm)
4491{
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004492 if (kvm->arch.nested_enable) {
4493 kvm->arch.nested_enable = false;
4494 kvmhv_release_all_nested(kvm);
4495 }
Paul Mackerras18c36402017-09-13 16:00:10 +10004496 kvmppc_free_radix(kvm);
4497 kvmppc_update_lpcr(kvm, LPCR_VPM1,
4498 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
4499 kvmppc_rmap_reset(kvm);
4500 kvm->arch.radix = 0;
4501 kvm->arch.process_table = 0;
4502 return 0;
4503}
4504
4505/* Must be called with kvm->lock held and mmu_ready = 0 and no vcpus running */
4506int kvmppc_switch_mmu_to_radix(struct kvm *kvm)
4507{
4508 int err;
4509
4510 err = kvmppc_init_vm_radix(kvm);
4511 if (err)
4512 return err;
4513
4514 kvmppc_free_hpt(&kvm->arch.hpt);
4515 kvmppc_update_lpcr(kvm, LPCR_UPRT | LPCR_GTSE | LPCR_HR,
4516 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Suraj Jitindar Singh8cf531e2018-10-08 16:31:08 +11004517 kvmppc_rmap_reset(kvm);
Paul Mackerras18c36402017-09-13 16:00:10 +10004518 kvm->arch.radix = 1;
4519 return 0;
4520}
4521
Suresh Warrier79b6c242015-12-17 14:59:06 -06004522#ifdef CONFIG_KVM_XICS
4523/*
4524 * Allocate a per-core structure for managing state about which cores are
4525 * running in the host versus the guest and for exchanging data between
4526 * real mode KVM and CPU running in the host.
4527 * This is only done for the first VM.
4528 * The allocated structure stays even if all VMs have stopped.
4529 * It is only freed when the kvm-hv module is unloaded.
4530 * It's OK for this routine to fail, we just don't support host
4531 * core operations like redirecting H_IPI wakeups.
4532 */
4533void kvmppc_alloc_host_rm_ops(void)
4534{
4535 struct kvmppc_host_rm_ops *ops;
4536 unsigned long l_ops;
4537 int cpu, core;
4538 int size;
4539
4540 /* Not the first time here ? */
4541 if (kvmppc_host_rm_ops_hv != NULL)
4542 return;
4543
4544 ops = kzalloc(sizeof(struct kvmppc_host_rm_ops), GFP_KERNEL);
4545 if (!ops)
4546 return;
4547
4548 size = cpu_nr_cores() * sizeof(struct kvmppc_host_rm_core);
4549 ops->rm_core = kzalloc(size, GFP_KERNEL);
4550
4551 if (!ops->rm_core) {
4552 kfree(ops);
4553 return;
4554 }
4555
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004556 cpus_read_lock();
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004557
Suresh Warrier79b6c242015-12-17 14:59:06 -06004558 for (cpu = 0; cpu < nr_cpu_ids; cpu += threads_per_core) {
4559 if (!cpu_online(cpu))
4560 continue;
4561
4562 core = cpu >> threads_shift;
4563 ops->rm_core[core].rm_state.in_host = 1;
4564 }
4565
Suresh Warrier0c2a6602015-12-17 14:59:09 -06004566 ops->vcpu_kick = kvmppc_fast_vcpu_kick_hv;
4567
Suresh Warrier79b6c242015-12-17 14:59:06 -06004568 /*
4569 * Make the contents of the kvmppc_host_rm_ops structure visible
4570 * to other CPUs before we assign it to the global variable.
4571 * Do an atomic assignment (no locks used here), but if someone
4572 * beats us to it, just free our copy and return.
4573 */
4574 smp_wmb();
4575 l_ops = (unsigned long) ops;
4576
4577 if (cmpxchg64((unsigned long *)&kvmppc_host_rm_ops_hv, 0, l_ops)) {
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004578 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06004579 kfree(ops->rm_core);
4580 kfree(ops);
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004581 return;
Suresh Warrier79b6c242015-12-17 14:59:06 -06004582 }
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004583
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004584 cpuhp_setup_state_nocalls_cpuslocked(CPUHP_KVM_PPC_BOOK3S_PREPARE,
4585 "ppc/kvm_book3s:prepare",
4586 kvmppc_set_host_core,
4587 kvmppc_clear_host_core);
4588 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06004589}
4590
4591void kvmppc_free_host_rm_ops(void)
4592{
4593 if (kvmppc_host_rm_ops_hv) {
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01004594 cpuhp_remove_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE);
Suresh Warrier79b6c242015-12-17 14:59:06 -06004595 kfree(kvmppc_host_rm_ops_hv->rm_core);
4596 kfree(kvmppc_host_rm_ops_hv);
4597 kvmppc_host_rm_ops_hv = NULL;
4598 }
4599}
4600#endif
4601
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304602static int kvmppc_core_init_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004603{
Paul Mackerras32fad282012-05-04 02:32:53 +00004604 unsigned long lpcr, lpid;
Paul Mackerrase23a8082015-03-28 14:21:01 +11004605 char buf[32];
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004606 int ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004607
Paul Mackerras32fad282012-05-04 02:32:53 +00004608 /* Allocate the guest's logical partition ID */
4609
4610 lpid = kvmppc_alloc_lpid();
Chen Gang5d226ae2013-07-22 14:32:35 +08004611 if ((long)lpid < 0)
Paul Mackerras32fad282012-05-04 02:32:53 +00004612 return -ENOMEM;
4613 kvm->arch.lpid = lpid;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004614
Suresh Warrier79b6c242015-12-17 14:59:06 -06004615 kvmppc_alloc_host_rm_ops();
4616
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004617 kvmhv_vm_nested_init(kvm);
4618
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004619 /*
4620 * Since we don't flush the TLB when tearing down a VM,
4621 * and this lpid might have previously been used,
4622 * make sure we flush on each core before running the new VM.
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004623 * On POWER9, the tlbie in mmu_partition_table_set_entry()
4624 * does this flush for us.
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004625 */
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004626 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4627 cpumask_setall(&kvm->arch.need_tlb_flush);
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004628
Paul Mackerras699a0ea2014-06-02 11:02:59 +10004629 /* Start out with the default set of hcalls enabled */
4630 memcpy(kvm->arch.enabled_hcalls, default_enabled_hcalls,
4631 sizeof(kvm->arch.enabled_hcalls));
4632
Paul Mackerras7a840842016-11-16 22:25:20 +11004633 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4634 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004635
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004636 /* Init LPCR for virtual RMA mode */
4637 kvm->arch.host_lpid = mfspr(SPRN_LPID);
4638 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
4639 lpcr &= LPCR_PECE | LPCR_LPES;
4640 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
4641 LPCR_VPM0 | LPCR_VPM1;
4642 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
4643 (VRMA_VSID << SLB_VSID_SHIFT_1T);
4644 /* On POWER8 turn on online bit to enable PURR/SPURR */
4645 if (cpu_has_feature(CPU_FTR_ARCH_207S))
4646 lpcr |= LPCR_ONL;
Paul Mackerras84f71392016-11-22 14:30:14 +11004647 /*
4648 * On POWER9, VPM0 bit is reserved (VPM0=1 behaviour is assumed)
4649 * Set HVICE bit to enable hypervisor virtualization interrupts.
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004650 * Set HEIC to prevent OS interrupts to go to hypervisor (should
4651 * be unnecessary but better safe than sorry in case we re-enable
4652 * EE in HV mode with this LPCR still set)
Paul Mackerras84f71392016-11-22 14:30:14 +11004653 */
4654 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerras7a840842016-11-16 22:25:20 +11004655 lpcr &= ~LPCR_VPM0;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004656 lpcr |= LPCR_HVICE | LPCR_HEIC;
4657
4658 /*
4659 * If xive is enabled, we route 0x500 interrupts directly
4660 * to the guest.
4661 */
4662 if (xive_enabled())
4663 lpcr |= LPCR_LPES;
Paul Mackerras84f71392016-11-22 14:30:14 +11004664 }
4665
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004666 /*
Paul Mackerras18c36402017-09-13 16:00:10 +10004667 * If the host uses radix, the guest starts out as radix.
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004668 */
4669 if (radix_enabled()) {
4670 kvm->arch.radix = 1;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004671 kvm->arch.mmu_ready = 1;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004672 lpcr &= ~LPCR_VPM1;
4673 lpcr |= LPCR_UPRT | LPCR_GTSE | LPCR_HR;
4674 ret = kvmppc_init_vm_radix(kvm);
4675 if (ret) {
4676 kvmppc_free_lpid(kvm->arch.lpid);
4677 return ret;
4678 }
4679 kvmppc_setup_partition_table(kvm);
4680 }
4681
Paul Mackerras9e368f22011-06-29 00:40:08 +00004682 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004683
David Gibson5e985962016-12-20 16:49:05 +11004684 /* Initialization for future HPT resizes */
4685 kvm->arch.resize_hpt = NULL;
4686
Paul Mackerras512691d2012-10-15 01:15:41 +00004687 /*
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004688 * Work out how many sets the TLB has, for the use of
4689 * the TLB invalidation loop in book3s_hv_rmhandlers.S.
4690 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004691 if (radix_enabled())
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004692 kvm->arch.tlb_sets = POWER9_TLB_SETS_RADIX; /* 128 */
4693 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004694 kvm->arch.tlb_sets = POWER9_TLB_SETS_HASH; /* 256 */
4695 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
4696 kvm->arch.tlb_sets = POWER8_TLB_SETS; /* 512 */
4697 else
4698 kvm->arch.tlb_sets = POWER7_TLB_SETS; /* 128 */
4699
4700 /*
Michael Ellerman441c19c2014-05-23 18:15:25 +10004701 * Track that we now have a HV mode VM active. This blocks secondary
4702 * CPU threads from coming online.
Paul Mackerras516f7892017-10-16 16:11:57 +11004703 * On POWER9, we only need to do this if the "indep_threads_mode"
4704 * module parameter has been set to N.
Paul Mackerras512691d2012-10-15 01:15:41 +00004705 */
Paul Mackerras360cae32018-10-08 16:31:04 +11004706 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
4707 if (!indep_threads_mode && !cpu_has_feature(CPU_FTR_HVMODE)) {
4708 pr_warn("KVM: Ignoring indep_threads_mode=N in nested hypervisor\n");
4709 kvm->arch.threads_indep = true;
4710 } else {
4711 kvm->arch.threads_indep = indep_threads_mode;
4712 }
4713 }
Paul Mackerras516f7892017-10-16 16:11:57 +11004714 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004715 kvm_hv_vm_activated();
Paul Mackerras512691d2012-10-15 01:15:41 +00004716
Paul Mackerrase23a8082015-03-28 14:21:01 +11004717 /*
Paul Mackerras3c313522017-02-06 13:24:41 +11004718 * Initialize smt_mode depending on processor.
4719 * POWER8 and earlier have to use "strict" threading, where
4720 * all vCPUs in a vcore have to run on the same (sub)core,
4721 * whereas on POWER9 the threads can each run a different
4722 * guest.
4723 */
4724 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4725 kvm->arch.smt_mode = threads_per_subcore;
4726 else
4727 kvm->arch.smt_mode = 1;
Paul Mackerras57900692017-05-16 16:41:20 +10004728 kvm->arch.emul_smt_mode = 1;
Paul Mackerras3c313522017-02-06 13:24:41 +11004729
4730 /*
Paul Mackerrase23a8082015-03-28 14:21:01 +11004731 * Create a debugfs directory for the VM
4732 */
4733 snprintf(buf, sizeof(buf), "vm%d", current->pid);
4734 kvm->arch.debugfs_dir = debugfs_create_dir(buf, kvm_debugfs_dir);
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004735 kvmppc_mmu_debugfs_init(kvm);
Paul Mackerras9a94d3e2018-10-08 16:30:57 +11004736 if (radix_enabled())
4737 kvmhv_radix_debugfs_init(kvm);
Paul Mackerrase23a8082015-03-28 14:21:01 +11004738
David Gibson54738c02011-06-29 00:22:41 +00004739 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004740}
4741
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304742static void kvmppc_free_vcores(struct kvm *kvm)
4743{
4744 long int i;
4745
Paul Mackerras23316312015-10-21 16:03:14 +11004746 for (i = 0; i < KVM_MAX_VCORES; ++i)
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304747 kfree(kvm->arch.vcores[i]);
4748 kvm->arch.online_vcores = 0;
4749}
4750
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304751static void kvmppc_core_destroy_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004752{
Paul Mackerrase23a8082015-03-28 14:21:01 +11004753 debugfs_remove_recursive(kvm->arch.debugfs_dir);
4754
Paul Mackerras516f7892017-10-16 16:11:57 +11004755 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004756 kvm_hv_vm_deactivated();
Paul Mackerras512691d2012-10-15 01:15:41 +00004757
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304758 kvmppc_free_vcores(kvm);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004759
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004760
Paul Mackerras5a319352017-01-30 21:21:46 +11004761 if (kvm_is_radix(kvm))
4762 kvmppc_free_radix(kvm);
4763 else
David Gibsonaae07772016-12-20 16:49:02 +11004764 kvmppc_free_hpt(&kvm->arch.hpt);
Suresh Warrierc57875f2016-08-19 15:35:50 +10004765
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004766 /* Perform global invalidation and return lpid to the pool */
4767 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004768 if (kvm->arch.nested_enable)
4769 kvmhv_release_all_nested(kvm);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004770 kvm->arch.process_table = 0;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004771 kvmhv_set_ptbl_entry(kvm->arch.lpid, 0, 0);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004772 }
4773 kvmppc_free_lpid(kvm->arch.lpid);
4774
Suresh Warrierc57875f2016-08-19 15:35:50 +10004775 kvmppc_free_pimap(kvm);
Paul Mackerrasde56a942011-06-29 00:21:34 +00004776}
4777
4778/* We don't need to emulate any privileged instructions or dcbz */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304779static int kvmppc_core_emulate_op_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
4780 unsigned int inst, int *advance)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004781{
4782 return EMULATE_FAIL;
4783}
4784
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304785static int kvmppc_core_emulate_mtspr_hv(struct kvm_vcpu *vcpu, int sprn,
4786 ulong spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004787{
4788 return EMULATE_FAIL;
4789}
4790
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304791static int kvmppc_core_emulate_mfspr_hv(struct kvm_vcpu *vcpu, int sprn,
4792 ulong *spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004793{
4794 return EMULATE_FAIL;
4795}
4796
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304797static int kvmppc_core_check_processor_compat_hv(void)
4798{
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004799 if (!cpu_has_feature(CPU_FTR_HVMODE) ||
4800 !cpu_has_feature(CPU_FTR_ARCH_206))
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304801 return -EIO;
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10004802
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304803 return 0;
4804}
4805
Suresh Warrier8daaafc2016-08-19 15:35:48 +10004806#ifdef CONFIG_KVM_XICS
4807
4808void kvmppc_free_pimap(struct kvm *kvm)
4809{
4810 kfree(kvm->arch.pimap);
4811}
4812
Suresh Warrierc57875f2016-08-19 15:35:50 +10004813static struct kvmppc_passthru_irqmap *kvmppc_alloc_pimap(void)
Suresh Warrier8daaafc2016-08-19 15:35:48 +10004814{
4815 return kzalloc(sizeof(struct kvmppc_passthru_irqmap), GFP_KERNEL);
4816}
Suresh Warrierc57875f2016-08-19 15:35:50 +10004817
4818static int kvmppc_set_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
4819{
4820 struct irq_desc *desc;
4821 struct kvmppc_irq_map *irq_map;
4822 struct kvmppc_passthru_irqmap *pimap;
4823 struct irq_chip *chip;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004824 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10004825
Suresh Warrier644abbb2016-08-19 15:35:54 +10004826 if (!kvm_irq_bypass)
4827 return 1;
4828
Suresh Warrierc57875f2016-08-19 15:35:50 +10004829 desc = irq_to_desc(host_irq);
4830 if (!desc)
4831 return -EIO;
4832
4833 mutex_lock(&kvm->lock);
4834
4835 pimap = kvm->arch.pimap;
4836 if (pimap == NULL) {
4837 /* First call, allocate structure to hold IRQ map */
4838 pimap = kvmppc_alloc_pimap();
4839 if (pimap == NULL) {
4840 mutex_unlock(&kvm->lock);
4841 return -ENOMEM;
4842 }
4843 kvm->arch.pimap = pimap;
4844 }
4845
4846 /*
4847 * For now, we only support interrupts for which the EOI operation
4848 * is an OPAL call followed by a write to XIRR, since that's
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004849 * what our real-mode EOI code does, or a XIVE interrupt
Suresh Warrierc57875f2016-08-19 15:35:50 +10004850 */
4851 chip = irq_data_get_irq_chip(&desc->irq_data);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004852 if (!chip || !(is_pnv_opal_msi(chip) || is_xive_irq(chip))) {
Suresh Warrierc57875f2016-08-19 15:35:50 +10004853 pr_warn("kvmppc_set_passthru_irq_hv: Could not assign IRQ map for (%d,%d)\n",
4854 host_irq, guest_gsi);
4855 mutex_unlock(&kvm->lock);
4856 return -ENOENT;
4857 }
4858
4859 /*
4860 * See if we already have an entry for this guest IRQ number.
4861 * If it's mapped to a hardware IRQ number, that's an error,
4862 * otherwise re-use this entry.
4863 */
4864 for (i = 0; i < pimap->n_mapped; i++) {
4865 if (guest_gsi == pimap->mapped[i].v_hwirq) {
4866 if (pimap->mapped[i].r_hwirq) {
4867 mutex_unlock(&kvm->lock);
4868 return -EINVAL;
4869 }
4870 break;
4871 }
4872 }
4873
4874 if (i == KVMPPC_PIRQ_MAPPED) {
4875 mutex_unlock(&kvm->lock);
4876 return -EAGAIN; /* table is full */
4877 }
4878
4879 irq_map = &pimap->mapped[i];
4880
4881 irq_map->v_hwirq = guest_gsi;
Suresh Warrierc57875f2016-08-19 15:35:50 +10004882 irq_map->desc = desc;
4883
Suresh Warriere3c13e52016-08-19 15:35:51 +10004884 /*
4885 * Order the above two stores before the next to serialize with
4886 * the KVM real mode handler.
4887 */
4888 smp_wmb();
4889 irq_map->r_hwirq = desc->irq_data.hwirq;
4890
Suresh Warrierc57875f2016-08-19 15:35:50 +10004891 if (i == pimap->n_mapped)
4892 pimap->n_mapped++;
4893
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004894 if (xive_enabled())
4895 rc = kvmppc_xive_set_mapped(kvm, guest_gsi, desc);
4896 else
4897 kvmppc_xics_set_mapped(kvm, guest_gsi, desc->irq_data.hwirq);
4898 if (rc)
4899 irq_map->r_hwirq = 0;
Paul Mackerras5d375192016-08-19 15:35:56 +10004900
Suresh Warrierc57875f2016-08-19 15:35:50 +10004901 mutex_unlock(&kvm->lock);
4902
4903 return 0;
4904}
4905
4906static int kvmppc_clr_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
4907{
4908 struct irq_desc *desc;
4909 struct kvmppc_passthru_irqmap *pimap;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004910 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10004911
Suresh Warrier644abbb2016-08-19 15:35:54 +10004912 if (!kvm_irq_bypass)
4913 return 0;
4914
Suresh Warrierc57875f2016-08-19 15:35:50 +10004915 desc = irq_to_desc(host_irq);
4916 if (!desc)
4917 return -EIO;
4918
4919 mutex_lock(&kvm->lock);
Markus Elfringa1c52e12017-01-20 11:00:08 +01004920 if (!kvm->arch.pimap)
4921 goto unlock;
Suresh Warrierc57875f2016-08-19 15:35:50 +10004922
Suresh Warrierc57875f2016-08-19 15:35:50 +10004923 pimap = kvm->arch.pimap;
4924
4925 for (i = 0; i < pimap->n_mapped; i++) {
4926 if (guest_gsi == pimap->mapped[i].v_hwirq)
4927 break;
4928 }
4929
4930 if (i == pimap->n_mapped) {
4931 mutex_unlock(&kvm->lock);
4932 return -ENODEV;
4933 }
4934
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004935 if (xive_enabled())
4936 rc = kvmppc_xive_clr_mapped(kvm, guest_gsi, pimap->mapped[i].desc);
4937 else
4938 kvmppc_xics_clr_mapped(kvm, guest_gsi, pimap->mapped[i].r_hwirq);
Paul Mackerras5d375192016-08-19 15:35:56 +10004939
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004940 /* invalidate the entry (what do do on error from the above ?) */
Suresh Warrierc57875f2016-08-19 15:35:50 +10004941 pimap->mapped[i].r_hwirq = 0;
4942
4943 /*
4944 * We don't free this structure even when the count goes to
4945 * zero. The structure is freed when we destroy the VM.
4946 */
Markus Elfringa1c52e12017-01-20 11:00:08 +01004947 unlock:
Suresh Warrierc57875f2016-08-19 15:35:50 +10004948 mutex_unlock(&kvm->lock);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004949 return rc;
Suresh Warrierc57875f2016-08-19 15:35:50 +10004950}
4951
4952static int kvmppc_irq_bypass_add_producer_hv(struct irq_bypass_consumer *cons,
4953 struct irq_bypass_producer *prod)
4954{
4955 int ret = 0;
4956 struct kvm_kernel_irqfd *irqfd =
4957 container_of(cons, struct kvm_kernel_irqfd, consumer);
4958
4959 irqfd->producer = prod;
4960
4961 ret = kvmppc_set_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
4962 if (ret)
4963 pr_info("kvmppc_set_passthru_irq (irq %d, gsi %d) fails: %d\n",
4964 prod->irq, irqfd->gsi, ret);
4965
4966 return ret;
4967}
4968
4969static void kvmppc_irq_bypass_del_producer_hv(struct irq_bypass_consumer *cons,
4970 struct irq_bypass_producer *prod)
4971{
4972 int ret;
4973 struct kvm_kernel_irqfd *irqfd =
4974 container_of(cons, struct kvm_kernel_irqfd, consumer);
4975
4976 irqfd->producer = NULL;
4977
4978 /*
4979 * When producer of consumer is unregistered, we change back to
4980 * default external interrupt handling mode - KVM real mode
4981 * will switch back to host.
4982 */
4983 ret = kvmppc_clr_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
4984 if (ret)
4985 pr_warn("kvmppc_clr_passthru_irq (irq %d, gsi %d) fails: %d\n",
4986 prod->irq, irqfd->gsi, ret);
4987}
Suresh Warrier8daaafc2016-08-19 15:35:48 +10004988#endif
4989
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304990static long kvm_arch_vm_ioctl_hv(struct file *filp,
4991 unsigned int ioctl, unsigned long arg)
4992{
4993 struct kvm *kvm __maybe_unused = filp->private_data;
4994 void __user *argp = (void __user *)arg;
4995 long r;
4996
4997 switch (ioctl) {
4998
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304999 case KVM_PPC_ALLOCATE_HTAB: {
5000 u32 htab_order;
5001
5002 r = -EFAULT;
5003 if (get_user(htab_order, (u32 __user *)argp))
5004 break;
David Gibsonf98a8bf2016-12-20 16:49:03 +11005005 r = kvmppc_alloc_reset_hpt(kvm, htab_order);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305006 if (r)
5007 break;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305008 r = 0;
5009 break;
5010 }
5011
5012 case KVM_PPC_GET_HTAB_FD: {
5013 struct kvm_get_htab_fd ghf;
5014
5015 r = -EFAULT;
5016 if (copy_from_user(&ghf, argp, sizeof(ghf)))
5017 break;
5018 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
5019 break;
5020 }
5021
David Gibson5e985962016-12-20 16:49:05 +11005022 case KVM_PPC_RESIZE_HPT_PREPARE: {
5023 struct kvm_ppc_resize_hpt rhpt;
5024
5025 r = -EFAULT;
5026 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5027 break;
5028
5029 r = kvm_vm_ioctl_resize_hpt_prepare(kvm, &rhpt);
5030 break;
5031 }
5032
5033 case KVM_PPC_RESIZE_HPT_COMMIT: {
5034 struct kvm_ppc_resize_hpt rhpt;
5035
5036 r = -EFAULT;
5037 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5038 break;
5039
5040 r = kvm_vm_ioctl_resize_hpt_commit(kvm, &rhpt);
5041 break;
5042 }
5043
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305044 default:
5045 r = -ENOTTY;
5046 }
5047
5048 return r;
5049}
5050
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005051/*
5052 * List of hcall numbers to enable by default.
5053 * For compatibility with old userspace, we enable by default
5054 * all hcalls that were implemented before the hcall-enabling
5055 * facility was added. Note this list should not include H_RTAS.
5056 */
5057static unsigned int default_hcall_list[] = {
5058 H_REMOVE,
5059 H_ENTER,
5060 H_READ,
5061 H_PROTECT,
5062 H_BULK_REMOVE,
5063 H_GET_TCE,
5064 H_PUT_TCE,
5065 H_SET_DABR,
5066 H_SET_XDABR,
5067 H_CEDE,
5068 H_PROD,
5069 H_CONFER,
5070 H_REGISTER_VPA,
5071#ifdef CONFIG_KVM_XICS
5072 H_EOI,
5073 H_CPPR,
5074 H_IPI,
5075 H_IPOLL,
5076 H_XIRR,
5077 H_XIRR_X,
5078#endif
5079 0
5080};
5081
5082static void init_default_hcalls(void)
5083{
5084 int i;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005085 unsigned int hcall;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005086
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005087 for (i = 0; default_hcall_list[i]; ++i) {
5088 hcall = default_hcall_list[i];
5089 WARN_ON(!kvmppc_hcall_impl_hv(hcall));
5090 __set_bit(hcall / 4, default_enabled_hcalls);
5091 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005092}
5093
Paul Mackerrasc9270132017-01-30 21:21:41 +11005094static int kvmhv_configure_mmu(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
5095{
Paul Mackerras468808b2017-01-30 21:21:42 +11005096 unsigned long lpcr;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005097 int radix;
Paul Mackerras18c36402017-09-13 16:00:10 +10005098 int err;
Paul Mackerras468808b2017-01-30 21:21:42 +11005099
5100 /* If not on a POWER9, reject it */
5101 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5102 return -ENODEV;
5103
5104 /* If any unknown flags set, reject it */
5105 if (cfg->flags & ~(KVM_PPC_MMUV3_RADIX | KVM_PPC_MMUV3_GTSE))
5106 return -EINVAL;
5107
Paul Mackerras468808b2017-01-30 21:21:42 +11005108 /* GR (guest radix) bit in process_table field must match */
Paul Mackerras18c36402017-09-13 16:00:10 +10005109 radix = !!(cfg->flags & KVM_PPC_MMUV3_RADIX);
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005110 if (!!(cfg->process_table & PATB_GR) != radix)
Paul Mackerras468808b2017-01-30 21:21:42 +11005111 return -EINVAL;
5112
5113 /* Process table size field must be reasonable, i.e. <= 24 */
5114 if ((cfg->process_table & PRTS_MASK) > 24)
5115 return -EINVAL;
5116
Paul Mackerras18c36402017-09-13 16:00:10 +10005117 /* We can change a guest to/from radix now, if the host is radix */
5118 if (radix && !radix_enabled())
5119 return -EINVAL;
5120
Paul Mackerrascf5f6f32017-09-11 16:05:30 +10005121 mutex_lock(&kvm->lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005122 if (radix != kvm_is_radix(kvm)) {
5123 if (kvm->arch.mmu_ready) {
5124 kvm->arch.mmu_ready = 0;
5125 /* order mmu_ready vs. vcpus_running */
5126 smp_mb();
5127 if (atomic_read(&kvm->arch.vcpus_running)) {
5128 kvm->arch.mmu_ready = 1;
5129 err = -EBUSY;
5130 goto out_unlock;
5131 }
5132 }
5133 if (radix)
5134 err = kvmppc_switch_mmu_to_radix(kvm);
5135 else
5136 err = kvmppc_switch_mmu_to_hpt(kvm);
5137 if (err)
5138 goto out_unlock;
5139 }
5140
Paul Mackerras468808b2017-01-30 21:21:42 +11005141 kvm->arch.process_table = cfg->process_table;
5142 kvmppc_setup_partition_table(kvm);
5143
5144 lpcr = (cfg->flags & KVM_PPC_MMUV3_GTSE) ? LPCR_GTSE : 0;
5145 kvmppc_update_lpcr(kvm, lpcr, LPCR_GTSE);
Paul Mackerras18c36402017-09-13 16:00:10 +10005146 err = 0;
Paul Mackerras468808b2017-01-30 21:21:42 +11005147
Paul Mackerras18c36402017-09-13 16:00:10 +10005148 out_unlock:
5149 mutex_unlock(&kvm->lock);
5150 return err;
Paul Mackerrasc9270132017-01-30 21:21:41 +11005151}
5152
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305153static struct kvmppc_ops kvm_ops_hv = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305154 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_hv,
5155 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_hv,
5156 .get_one_reg = kvmppc_get_one_reg_hv,
5157 .set_one_reg = kvmppc_set_one_reg_hv,
5158 .vcpu_load = kvmppc_core_vcpu_load_hv,
5159 .vcpu_put = kvmppc_core_vcpu_put_hv,
5160 .set_msr = kvmppc_set_msr_hv,
5161 .vcpu_run = kvmppc_vcpu_run_hv,
5162 .vcpu_create = kvmppc_core_vcpu_create_hv,
5163 .vcpu_free = kvmppc_core_vcpu_free_hv,
5164 .check_requests = kvmppc_core_check_requests_hv,
5165 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_hv,
5166 .flush_memslot = kvmppc_core_flush_memslot_hv,
5167 .prepare_memory_region = kvmppc_core_prepare_memory_region_hv,
5168 .commit_memory_region = kvmppc_core_commit_memory_region_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305169 .unmap_hva_range = kvm_unmap_hva_range_hv,
5170 .age_hva = kvm_age_hva_hv,
5171 .test_age_hva = kvm_test_age_hva_hv,
5172 .set_spte_hva = kvm_set_spte_hva_hv,
5173 .mmu_destroy = kvmppc_mmu_destroy_hv,
5174 .free_memslot = kvmppc_core_free_memslot_hv,
5175 .create_memslot = kvmppc_core_create_memslot_hv,
5176 .init_vm = kvmppc_core_init_vm_hv,
5177 .destroy_vm = kvmppc_core_destroy_vm_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305178 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_hv,
5179 .emulate_op = kvmppc_core_emulate_op_hv,
5180 .emulate_mtspr = kvmppc_core_emulate_mtspr_hv,
5181 .emulate_mfspr = kvmppc_core_emulate_mfspr_hv,
5182 .fast_vcpu_kick = kvmppc_fast_vcpu_kick_hv,
5183 .arch_vm_ioctl = kvm_arch_vm_ioctl_hv,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005184 .hcall_implemented = kvmppc_hcall_impl_hv,
Suresh Warrierc57875f2016-08-19 15:35:50 +10005185#ifdef CONFIG_KVM_XICS
5186 .irq_bypass_add_producer = kvmppc_irq_bypass_add_producer_hv,
5187 .irq_bypass_del_producer = kvmppc_irq_bypass_del_producer_hv,
5188#endif
Paul Mackerrasc9270132017-01-30 21:21:41 +11005189 .configure_mmu = kvmhv_configure_mmu,
5190 .get_rmmu_info = kvmhv_get_rmmu_info,
Paul Mackerras3c313522017-02-06 13:24:41 +11005191 .set_smt_mode = kvmhv_set_smt_mode,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305192};
5193
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305194static int kvm_init_subcore_bitmap(void)
5195{
5196 int i, j;
5197 int nr_cores = cpu_nr_cores();
5198 struct sibling_subcore_state *sibling_subcore_state;
5199
5200 for (i = 0; i < nr_cores; i++) {
5201 int first_cpu = i * threads_per_core;
5202 int node = cpu_to_node(first_cpu);
5203
5204 /* Ignore if it is already allocated. */
Nicholas Piggind2e60072018-02-14 01:08:12 +10005205 if (paca_ptrs[first_cpu]->sibling_subcore_state)
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305206 continue;
5207
5208 sibling_subcore_state =
5209 kmalloc_node(sizeof(struct sibling_subcore_state),
5210 GFP_KERNEL, node);
5211 if (!sibling_subcore_state)
5212 return -ENOMEM;
5213
5214 memset(sibling_subcore_state, 0,
5215 sizeof(struct sibling_subcore_state));
5216
5217 for (j = 0; j < threads_per_core; j++) {
5218 int cpu = first_cpu + j;
5219
Nicholas Piggind2e60072018-02-14 01:08:12 +10005220 paca_ptrs[cpu]->sibling_subcore_state =
5221 sibling_subcore_state;
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305222 }
5223 }
5224 return 0;
5225}
5226
Paul Mackerras5a319352017-01-30 21:21:46 +11005227static int kvmppc_radix_possible(void)
5228{
5229 return cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled();
5230}
5231
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305232static int kvmppc_book3s_init_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005233{
5234 int r;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305235 /*
5236 * FIXME!! Do we need to check on all cpus ?
5237 */
5238 r = kvmppc_core_check_processor_compat_hv();
5239 if (r < 0)
Paul Mackerras739e2422014-03-25 10:47:05 +11005240 return -ENODEV;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005241
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005242 r = kvmhv_nested_init();
5243 if (r)
5244 return r;
5245
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305246 r = kvm_init_subcore_bitmap();
5247 if (r)
5248 return r;
5249
Paul Mackerrasf7257582016-11-18 09:02:08 +11005250 /*
5251 * We need a way of accessing the XICS interrupt controller,
Nicholas Piggind2e60072018-02-14 01:08:12 +10005252 * either directly, via paca_ptrs[cpu]->kvm_hstate.xics_phys, or
Paul Mackerrasf7257582016-11-18 09:02:08 +11005253 * indirectly, via OPAL.
5254 */
5255#ifdef CONFIG_SMP
Paul Mackerrasf3c18e92018-10-08 16:31:05 +11005256 if (!xive_enabled() && !kvmhv_on_pseries() &&
5257 !local_paca->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +11005258 struct device_node *np;
5259
5260 np = of_find_compatible_node(NULL, NULL, "ibm,opal-intc");
5261 if (!np) {
5262 pr_err("KVM-HV: Cannot determine method for accessing XICS\n");
5263 return -ENODEV;
5264 }
Nicholas Mc Guire51eaa082018-07-07 08:53:07 +02005265 /* presence of intc confirmed - node can be dropped again */
5266 of_node_put(np);
Paul Mackerrasf7257582016-11-18 09:02:08 +11005267 }
5268#endif
5269
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305270 kvm_ops_hv.owner = THIS_MODULE;
5271 kvmppc_hv_ops = &kvm_ops_hv;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005272
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005273 init_default_hcalls();
5274
Paul Mackerrasec257162015-06-24 21:18:03 +10005275 init_vcore_lists();
5276
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305277 r = kvmppc_mmu_hv_init();
Paul Mackerras5a319352017-01-30 21:21:46 +11005278 if (r)
5279 return r;
5280
5281 if (kvmppc_radix_possible())
5282 r = kvmppc_radix_init();
Paul Mackerras00608e12018-01-11 16:54:26 +11005283
5284 /*
5285 * POWER9 chips before version 2.02 can't have some threads in
5286 * HPT mode and some in radix mode on the same core.
5287 */
5288 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
5289 unsigned int pvr = mfspr(SPRN_PVR);
5290 if ((pvr >> 16) == PVR_POWER9 &&
5291 (((pvr & 0xe000) == 0 && (pvr & 0xfff) < 0x202) ||
5292 ((pvr & 0xe000) == 0x2000 && (pvr & 0xfff) < 0x101)))
5293 no_mixing_hpt_and_radix = true;
5294 }
5295
Paul Mackerrasde56a942011-06-29 00:21:34 +00005296 return r;
5297}
5298
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305299static void kvmppc_book3s_exit_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005300{
Suresh Warrier79b6c242015-12-17 14:59:06 -06005301 kvmppc_free_host_rm_ops();
Paul Mackerras5a319352017-01-30 21:21:46 +11005302 if (kvmppc_radix_possible())
5303 kvmppc_radix_exit();
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305304 kvmppc_hv_ops = NULL;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005305 kvmhv_nested_exit();
Paul Mackerrasde56a942011-06-29 00:21:34 +00005306}
5307
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305308module_init(kvmppc_book3s_init_hv);
5309module_exit(kvmppc_book3s_exit_hv);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05305310MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01005311MODULE_ALIAS_MISCDEV(KVM_MINOR);
5312MODULE_ALIAS("devname:kvm");