blob: 813ca155561ba14805c91c67fddd340111a5bfd1 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Paul Mackerrasde56a942011-06-29 00:21:34 +00002/*
3 * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
4 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
5 *
6 * Authors:
7 * Paul Mackerras <paulus@au1.ibm.com>
8 * Alexander Graf <agraf@suse.de>
9 * Kevin Wolf <mail@kevin-wolf.de>
10 *
11 * Description: KVM functions specific to running on Book 3S
12 * processors in hypervisor mode (specifically POWER7 and later).
13 *
14 * This file is derived from arch/powerpc/kvm/book3s.c,
15 * by Alexander Graf <agraf@suse.de>.
Paul Mackerrasde56a942011-06-29 00:21:34 +000016 */
17
18#include <linux/kvm_host.h>
Thomas Meyer4bb817ed2017-09-03 14:19:31 +020019#include <linux/kernel.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000020#include <linux/err.h>
21#include <linux/slab.h>
22#include <linux/preempt.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010023#include <linux/sched/signal.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010024#include <linux/sched/stat.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000025#include <linux/delay.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040026#include <linux/export.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000027#include <linux/fs.h>
28#include <linux/anon_inodes.h>
Gavin Shan07f8ab252016-05-11 11:15:55 +100029#include <linux/cpu.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000030#include <linux/cpumask.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000031#include <linux/spinlock.h>
32#include <linux/page-flags.h>
Paul Mackerras2c9097e2012-09-11 13:27:01 +000033#include <linux/srcu.h>
Alexander Graf398a76c2013-12-09 13:53:42 +010034#include <linux/miscdevice.h>
Paul Mackerrase23a8082015-03-28 14:21:01 +110035#include <linux/debugfs.h>
Benjamin Herrenschmidtd3989142017-04-05 17:54:51 +100036#include <linux/gfp.h>
37#include <linux/vmalloc.h>
38#include <linux/highmem.h>
39#include <linux/hugetlb.h>
40#include <linux/kvm_irqfd.h>
41#include <linux/irqbypass.h>
42#include <linux/module.h>
43#include <linux/compiler.h>
44#include <linux/of.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000045
Luke Dashjrd6ee76d2018-08-16 21:36:26 +000046#include <asm/ftrace.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000047#include <asm/reg.h>
Paul Mackerras57900692017-05-16 16:41:20 +100048#include <asm/ppc-opcode.h>
Nicholas Piggin6de66382017-11-05 23:33:55 +110049#include <asm/asm-prototypes.h>
Paul Mackerras4bad7772018-10-08 16:31:06 +110050#include <asm/archrandom.h>
Nicholas Piggine303c082018-04-01 15:50:35 +100051#include <asm/debug.h>
Paul Mackerras57900692017-05-16 16:41:20 +100052#include <asm/disassemble.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000053#include <asm/cputable.h>
54#include <asm/cacheflush.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080055#include <linux/uaccess.h>
Nicholas Piggin3a965702021-01-30 23:08:38 +100056#include <asm/interrupt.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000057#include <asm/io.h>
58#include <asm/kvm_ppc.h>
59#include <asm/kvm_book3s.h>
60#include <asm/mmu_context.h>
61#include <asm/lppaca.h>
62#include <asm/processor.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000063#include <asm/cputhreads.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000064#include <asm/page.h>
Michael Neulingde1d9242011-11-09 20:39:49 +000065#include <asm/hvcall.h>
David Howellsae3a1972012-03-28 18:30:02 +010066#include <asm/switch_to.h>
Paul Mackerras512691d2012-10-15 01:15:41 +000067#include <asm/smp.h>
Paul Mackerras66feed62015-03-28 14:21:12 +110068#include <asm/dbell.h>
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +053069#include <asm/hmi.h>
Suresh Warrierc57875f2016-08-19 15:35:50 +100070#include <asm/pnv-pci.h>
Paul Mackerras7a840842016-11-16 22:25:20 +110071#include <asm/mmu.h>
Paul Mackerrasf7257582016-11-18 09:02:08 +110072#include <asm/opal.h>
73#include <asm/xics.h>
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +100074#include <asm/xive.h>
Michael Neulingc1fe1902019-04-01 17:03:12 +110075#include <asm/hw_breakpoint.h>
Bharata B Raoca9f4942019-11-25 08:36:26 +053076#include <asm/kvm_book3s_uvmem.h>
Bharata B Raoc3262252019-11-25 08:36:29 +053077#include <asm/ultravisor.h>
Peter Zijlstrad6bdceb2020-05-29 22:41:01 +020078#include <asm/dtl.h>
Bharata B Raof0c6fbb2021-06-21 14:20:00 +053079#include <asm/plpar_wrappers.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000080
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053081#include "book3s.h"
82
Suresh E. Warrier3c78f782014-12-03 18:48:10 -060083#define CREATE_TRACE_POINTS
84#include "trace_hv.h"
85
Paul Mackerrasde56a942011-06-29 00:21:34 +000086/* #define EXIT_DEBUG */
87/* #define EXIT_DEBUG_SIMPLE */
88/* #define EXIT_DEBUG_INT */
89
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000090/* Used to indicate that a guest page fault needs to be handled */
91#define RESUME_PAGE_FAULT (RESUME_GUEST | RESUME_FLAG_ARCH1)
Suresh Warrierf7af5202016-08-19 15:35:52 +100092/* Used to indicate that a guest passthrough interrupt needs to be handled */
93#define RESUME_PASSTHROUGH (RESUME_GUEST | RESUME_FLAG_ARCH2)
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000094
Paul Mackerrasc7b67672012-10-15 01:18:07 +000095/* Used as a "null" value for timebase values */
96#define TB_NIL (~(u64)0)
97
Paul Mackerras699a0ea2014-06-02 11:02:59 +100098static DECLARE_BITMAP(default_enabled_hcalls, MAX_HCALL_OPCODE/4 + 1);
99
Paul Mackerrasb4deba52015-07-02 20:38:16 +1000100static int dynamic_mt_modes = 6;
Russell Currey57ad583f2017-01-12 14:54:13 +1100101module_param(dynamic_mt_modes, int, 0644);
Paul Mackerrasb4deba52015-07-02 20:38:16 +1000102MODULE_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 +1000103static int target_smt_mode;
Russell Currey57ad583f2017-01-12 14:54:13 +1100104module_param(target_smt_mode, int, 0644);
Paul Mackerrasec257162015-06-24 21:18:03 +1000105MODULE_PARM_DESC(target_smt_mode, "Target threads per core (0 = max)");
Stewart Smith9678cda2014-07-18 14:18:43 +1000106
Paul Mackerrasaa227862018-09-12 10:42:12 +1000107static bool one_vm_per_core;
108module_param(one_vm_per_core, bool, S_IRUGO | S_IWUSR);
Nicholas Pigginaaae8c72021-05-28 19:07:42 +1000109MODULE_PARM_DESC(one_vm_per_core, "Only run vCPUs from the same VM on a core (requires POWER8 or older)");
Paul Mackerrasaa227862018-09-12 10:42:12 +1000110
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600111#ifdef CONFIG_KVM_XICS
Joe Perchesa4f1d942020-10-03 17:18:06 -0700112static const struct kernel_param_ops module_param_ops = {
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600113 .set = param_set_int,
114 .get = param_get_int,
115};
116
Russell Currey57ad583f2017-01-12 14:54:13 +1100117module_param_cb(kvm_irq_bypass, &module_param_ops, &kvm_irq_bypass, 0644);
Suresh Warrier644abbb2016-08-19 15:35:54 +1000118MODULE_PARM_DESC(kvm_irq_bypass, "Bypass passthrough interrupt optimization");
119
Russell Currey57ad583f2017-01-12 14:54:13 +1100120module_param_cb(h_ipi_redirect, &module_param_ops, &h_ipi_redirect, 0644);
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600121MODULE_PARM_DESC(h_ipi_redirect, "Redirect H_IPI wakeup to a free host core");
122#endif
123
Paul Mackerrasaa069a92018-09-21 20:02:01 +1000124/* If set, guests are allowed to create and control nested guests */
125static bool nested = true;
126module_param(nested, bool, S_IRUGO | S_IWUSR);
127MODULE_PARM_DESC(nested, "Enable nested virtualization (only on POWER9)");
128
129static inline bool nesting_enabled(struct kvm *kvm)
130{
131 return kvm->arch.nested_enable && kvm_is_radix(kvm);
132}
133
Paul Mackerras32fad282012-05-04 02:32:53 +0000134static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000135
Paul Mackerras7aa15842018-04-20 19:53:22 +1000136/*
137 * RWMR values for POWER8. These control the rate at which PURR
138 * and SPURR count and should be set according to the number of
139 * online threads in the vcore being run.
140 */
Nicholas Mc Guire0abb75b2018-07-07 11:07:25 +0200141#define RWMR_RPA_P8_1THREAD 0x164520C62609AECAUL
142#define RWMR_RPA_P8_2THREAD 0x7FFF2908450D8DA9UL
143#define RWMR_RPA_P8_3THREAD 0x164520C62609AECAUL
144#define RWMR_RPA_P8_4THREAD 0x199A421245058DA9UL
145#define RWMR_RPA_P8_5THREAD 0x164520C62609AECAUL
146#define RWMR_RPA_P8_6THREAD 0x164520C62609AECAUL
147#define RWMR_RPA_P8_7THREAD 0x164520C62609AECAUL
148#define RWMR_RPA_P8_8THREAD 0x164520C62609AECAUL
Paul Mackerras7aa15842018-04-20 19:53:22 +1000149
150static unsigned long p8_rwmr_values[MAX_SMT_THREADS + 1] = {
151 RWMR_RPA_P8_1THREAD,
152 RWMR_RPA_P8_1THREAD,
153 RWMR_RPA_P8_2THREAD,
154 RWMR_RPA_P8_3THREAD,
155 RWMR_RPA_P8_4THREAD,
156 RWMR_RPA_P8_5THREAD,
157 RWMR_RPA_P8_6THREAD,
158 RWMR_RPA_P8_7THREAD,
159 RWMR_RPA_P8_8THREAD,
160};
161
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +1000162static inline struct kvm_vcpu *next_runnable_thread(struct kvmppc_vcore *vc,
163 int *ip)
164{
165 int i = *ip;
166 struct kvm_vcpu *vcpu;
167
168 while (++i < MAX_SMT_THREADS) {
169 vcpu = READ_ONCE(vc->runnable_threads[i]);
170 if (vcpu) {
171 *ip = i;
172 return vcpu;
173 }
174 }
175 return NULL;
176}
177
178/* Used to traverse the list of runnable threads for a given vcore */
179#define for_each_runnable_thread(i, vcpu, vc) \
180 for (i = -1; (vcpu = next_runnable_thread(vc, &i)); )
181
Paul Mackerras66feed62015-03-28 14:21:12 +1100182static bool kvmppc_ipi_thread(int cpu)
183{
Paul Mackerras1704a812016-11-18 08:47:08 +1100184 unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER);
185
Paul Mackerrasf3c18e92018-10-08 16:31:05 +1100186 /* If we're a nested hypervisor, fall back to ordinary IPIs for now */
187 if (kvmhv_on_pseries())
188 return false;
189
Paul Mackerras1704a812016-11-18 08:47:08 +1100190 /* On POWER9 we can use msgsnd to IPI any cpu */
191 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
192 msg |= get_hard_smp_processor_id(cpu);
193 smp_mb();
194 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
195 return true;
196 }
197
Paul Mackerras66feed62015-03-28 14:21:12 +1100198 /* On POWER8 for IPIs to threads in the same core, use msgsnd */
199 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
200 preempt_disable();
201 if (cpu_first_thread_sibling(cpu) ==
202 cpu_first_thread_sibling(smp_processor_id())) {
Paul Mackerras66feed62015-03-28 14:21:12 +1100203 msg |= cpu_thread_in_core(cpu);
204 smp_mb();
205 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
206 preempt_enable();
207 return true;
208 }
209 preempt_enable();
210 }
211
212#if defined(CONFIG_PPC_ICP_NATIVE) && defined(CONFIG_SMP)
Paul Mackerrasf7257582016-11-18 09:02:08 +1100213 if (cpu >= 0 && cpu < nr_cpu_ids) {
Nicholas Piggind2e60072018-02-14 01:08:12 +1000214 if (paca_ptrs[cpu]->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +1100215 xics_wake_cpu(cpu);
216 return true;
217 }
218 opal_int_set_mfrr(get_hard_smp_processor_id(cpu), IPI_PRIORITY);
Paul Mackerras66feed62015-03-28 14:21:12 +1100219 return true;
220 }
221#endif
222
223 return false;
224}
225
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530226static void kvmppc_fast_vcpu_kick_hv(struct kvm_vcpu *vcpu)
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000227{
Paul Mackerrasec257162015-06-24 21:18:03 +1000228 int cpu;
Davidlohr Buesoda4ad882020-04-23 22:48:37 -0700229 struct rcuwait *waitp;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000230
Davidlohr Buesoda4ad882020-04-23 22:48:37 -0700231 waitp = kvm_arch_vcpu_get_wait(vcpu);
232 if (rcuwait_wake_up(waitp))
Jing Zhang0193cc92021-06-18 22:27:03 +0000233 ++vcpu->stat.generic.halt_wakeup;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000234
Paul Mackerras3deda5e2016-12-20 14:02:29 +1100235 cpu = READ_ONCE(vcpu->arch.thread_cpu);
236 if (cpu >= 0 && kvmppc_ipi_thread(cpu))
Paul Mackerras66feed62015-03-28 14:21:12 +1100237 return;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000238
239 /* CPU points to the first thread of the core */
Paul Mackerrasec257162015-06-24 21:18:03 +1000240 cpu = vcpu->cpu;
Paul Mackerras66feed62015-03-28 14:21:12 +1100241 if (cpu >= 0 && cpu < nr_cpu_ids && cpu_online(cpu))
242 smp_send_reschedule(cpu);
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000243}
244
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000245/*
246 * We use the vcpu_load/put functions to measure stolen time.
247 * Stolen time is counted as time when either the vcpu is able to
248 * run as part of a virtual core, but the task running the vcore
249 * is preempted or sleeping, or when the vcpu needs something done
250 * in the kernel by the task running the vcpu, but that task is
251 * preempted or sleeping. Those two things have to be counted
252 * separately, since one of the vcpu tasks will take on the job
253 * of running the core, and the other vcpu tasks in the vcore will
254 * sleep waiting for it to do that, but that sleep shouldn't count
255 * as stolen time.
256 *
257 * Hence we accumulate stolen time when the vcpu can run as part of
258 * a vcore using vc->stolen_tb, and the stolen time when the vcpu
259 * needs its task to do other things in the kernel (for example,
260 * service a page fault) in busy_stolen. We don't accumulate
261 * stolen time for a vcore when it is inactive, or for a vcpu
262 * when it is in state RUNNING or NOTREADY. NOTREADY is a bit of
263 * a misnomer; it means that the vcpu task is not executing in
264 * the KVM_VCPU_RUN ioctl, i.e. it is in userspace or elsewhere in
265 * the kernel. We don't have any way of dividing up that time
266 * between time that the vcpu is genuinely stopped, time that
267 * the task is actively working on behalf of the vcpu, and time
268 * that the task is preempted, so we don't count any of it as
269 * stolen.
270 *
271 * Updates to busy_stolen are protected by arch.tbacct_lock;
Paul Mackerras2711e242014-12-04 16:43:28 +1100272 * updates to vc->stolen_tb are protected by the vcore->stoltb_lock
273 * lock. The stolen times are measured in units of timebase ticks.
274 * (Note that the != TB_NIL checks below are purely defensive;
275 * they should never fail.)
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000276 */
277
Paul Mackerrasec257162015-06-24 21:18:03 +1000278static void kvmppc_core_start_stolen(struct kvmppc_vcore *vc)
279{
280 unsigned long flags;
281
282 spin_lock_irqsave(&vc->stoltb_lock, flags);
283 vc->preempt_tb = mftb();
284 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
285}
286
287static void kvmppc_core_end_stolen(struct kvmppc_vcore *vc)
288{
289 unsigned long flags;
290
291 spin_lock_irqsave(&vc->stoltb_lock, flags);
292 if (vc->preempt_tb != TB_NIL) {
293 vc->stolen_tb += mftb() - vc->preempt_tb;
294 vc->preempt_tb = TB_NIL;
295 }
296 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
297}
298
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530299static void kvmppc_core_vcpu_load_hv(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000300{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000301 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100302 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000303
Paul Mackerras2711e242014-12-04 16:43:28 +1100304 /*
305 * We can test vc->runner without taking the vcore lock,
306 * because only this task ever sets vc->runner to this
307 * vcpu, and once it is set to this vcpu, only this task
308 * ever sets it to NULL.
309 */
Paul Mackerrasec257162015-06-24 21:18:03 +1000310 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
311 kvmppc_core_end_stolen(vc);
312
Paul Mackerras2711e242014-12-04 16:43:28 +1100313 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000314 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST &&
315 vcpu->arch.busy_preempt != TB_NIL) {
316 vcpu->arch.busy_stolen += mftb() - vcpu->arch.busy_preempt;
317 vcpu->arch.busy_preempt = TB_NIL;
318 }
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100319 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000320}
321
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530322static void kvmppc_core_vcpu_put_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000323{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000324 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100325 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000326
Paul Mackerrasec257162015-06-24 21:18:03 +1000327 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
328 kvmppc_core_start_stolen(vc);
329
Paul Mackerras2711e242014-12-04 16:43:28 +1100330 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000331 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST)
332 vcpu->arch.busy_preempt = mftb();
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100333 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000334}
335
Thomas Huth5358a962015-05-22 09:25:02 +0200336static void kvmppc_set_pvr_hv(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000337{
338 vcpu->arch.pvr = pvr;
339}
340
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000341/* Dummy value used in computing PCR value below */
342#define PCR_ARCH_31 (PCR_ARCH_300 << 1)
343
Thomas Huth5358a962015-05-22 09:25:02 +0200344static int kvmppc_set_arch_compat(struct kvm_vcpu *vcpu, u32 arch_compat)
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000345{
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100346 unsigned long host_pcr_bit = 0, guest_pcr_bit = 0;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000347 struct kvmppc_vcore *vc = vcpu->arch.vcore;
348
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100349 /* We can (emulate) our own architecture version and anything older */
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000350 if (cpu_has_feature(CPU_FTR_ARCH_31))
351 host_pcr_bit = PCR_ARCH_31;
352 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100353 host_pcr_bit = PCR_ARCH_300;
354 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
355 host_pcr_bit = PCR_ARCH_207;
356 else if (cpu_has_feature(CPU_FTR_ARCH_206))
357 host_pcr_bit = PCR_ARCH_206;
358 else
359 host_pcr_bit = PCR_ARCH_205;
360
361 /* Determine lowest PCR bit needed to run guest in given PVR level */
362 guest_pcr_bit = host_pcr_bit;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000363 if (arch_compat) {
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000364 switch (arch_compat) {
365 case PVR_ARCH_205:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100366 guest_pcr_bit = PCR_ARCH_205;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000367 break;
368 case PVR_ARCH_206:
369 case PVR_ARCH_206p:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100370 guest_pcr_bit = PCR_ARCH_206;
Paul Mackerras5557ae02014-01-08 21:25:24 +1100371 break;
372 case PVR_ARCH_207:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100373 guest_pcr_bit = PCR_ARCH_207;
374 break;
375 case PVR_ARCH_300:
376 guest_pcr_bit = PCR_ARCH_300;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000377 break;
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000378 case PVR_ARCH_31:
379 guest_pcr_bit = PCR_ARCH_31;
380 break;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000381 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;
Jordan Niethe13c7bb32019-09-17 10:46:05 +1000392 /*
393 * Set all PCR bits for which guest_pcr_bit <= bit < host_pcr_bit
394 * Also set all reserved PCR bits
395 */
396 vc->pcr = (host_pcr_bit - guest_pcr_bit) | PCR_MASK;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000397 spin_unlock(&vc->lock);
398
399 return 0;
400}
401
Thomas Huth5358a962015-05-22 09:25:02 +0200402static void kvmppc_dump_regs(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000403{
404 int r;
405
406 pr_err("vcpu %p (%d):\n", vcpu, vcpu->vcpu_id);
407 pr_err("pc = %.16lx msr = %.16llx trap = %x\n",
Simon Guo173c5202018-05-07 14:20:08 +0800408 vcpu->arch.regs.nip, vcpu->arch.shregs.msr, vcpu->arch.trap);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000409 for (r = 0; r < 16; ++r)
410 pr_err("r%2d = %.16lx r%d = %.16lx\n",
411 r, kvmppc_get_gpr(vcpu, r),
412 r+16, kvmppc_get_gpr(vcpu, r+16));
413 pr_err("ctr = %.16lx lr = %.16lx\n",
Simon Guo173c5202018-05-07 14:20:08 +0800414 vcpu->arch.regs.ctr, vcpu->arch.regs.link);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000415 pr_err("srr0 = %.16llx srr1 = %.16llx\n",
416 vcpu->arch.shregs.srr0, vcpu->arch.shregs.srr1);
417 pr_err("sprg0 = %.16llx sprg1 = %.16llx\n",
418 vcpu->arch.shregs.sprg0, vcpu->arch.shregs.sprg1);
419 pr_err("sprg2 = %.16llx sprg3 = %.16llx\n",
420 vcpu->arch.shregs.sprg2, vcpu->arch.shregs.sprg3);
Paul Mackerrasfd0944b2018-10-08 16:30:58 +1100421 pr_err("cr = %.8lx xer = %.16lx dsisr = %.8x\n",
422 vcpu->arch.regs.ccr, vcpu->arch.regs.xer, vcpu->arch.shregs.dsisr);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000423 pr_err("dar = %.16llx\n", vcpu->arch.shregs.dar);
424 pr_err("fault dar = %.16lx dsisr = %.8x\n",
425 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
426 pr_err("SLB (%d entries):\n", vcpu->arch.slb_max);
427 for (r = 0; r < vcpu->arch.slb_max; ++r)
428 pr_err(" ESID = %.16llx VSID = %.16llx\n",
429 vcpu->arch.slb[r].orige, vcpu->arch.slb[r].origv);
430 pr_err("lpcr = %.16lx sdr1 = %.16lx last_inst = %.8x\n",
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000431 vcpu->arch.vcore->lpcr, vcpu->kvm->arch.sdr1,
Paul Mackerrasde56a942011-06-29 00:21:34 +0000432 vcpu->arch.last_inst);
433}
434
Thomas Huth5358a962015-05-22 09:25:02 +0200435static struct kvm_vcpu *kvmppc_find_vcpu(struct kvm *kvm, int id)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000436{
Paul Mackerras5a3f4932019-05-23 16:36:32 +1000437 return kvm_get_vcpu_by_id(kvm, id);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000438}
439
440static void init_vpa(struct kvm_vcpu *vcpu, struct lppaca *vpa)
441{
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000442 vpa->__old_status |= LPPACA_OLD_SHARED_PROC;
Alexander Graf02407552014-06-11 10:34:19 +0200443 vpa->yield_count = cpu_to_be32(1);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000444}
445
Paul Mackerras55b665b2012-09-25 20:33:06 +0000446static int set_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *v,
447 unsigned long addr, unsigned long len)
448{
449 /* check address is cacheline aligned */
450 if (addr & (L1_CACHE_BYTES - 1))
451 return -EINVAL;
452 spin_lock(&vcpu->arch.vpa_update_lock);
453 if (v->next_gpa != addr || v->len != len) {
454 v->next_gpa = addr;
455 v->len = addr ? len : 0;
456 v->update_pending = 1;
457 }
458 spin_unlock(&vcpu->arch.vpa_update_lock);
459 return 0;
460}
461
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000462/* Length for a per-processor buffer is passed in at offset 4 in the buffer */
463struct reg_vpa {
464 u32 dummy;
465 union {
Alexander Graf02407552014-06-11 10:34:19 +0200466 __be16 hword;
467 __be32 word;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000468 } length;
469};
470
471static int vpa_is_registered(struct kvmppc_vpa *vpap)
472{
473 if (vpap->update_pending)
474 return vpap->next_gpa != 0;
475 return vpap->pinned_addr != NULL;
476}
477
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000478static unsigned long do_h_register_vpa(struct kvm_vcpu *vcpu,
479 unsigned long flags,
480 unsigned long vcpuid, unsigned long vpa)
481{
482 struct kvm *kvm = vcpu->kvm;
Paul Mackerras93e60242011-12-12 12:28:55 +0000483 unsigned long len, nb;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000484 void *va;
485 struct kvm_vcpu *tvcpu;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000486 int err;
487 int subfunc;
488 struct kvmppc_vpa *vpap;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000489
490 tvcpu = kvmppc_find_vcpu(kvm, vcpuid);
491 if (!tvcpu)
492 return H_PARAMETER;
493
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000494 subfunc = (flags >> H_VPA_FUNC_SHIFT) & H_VPA_FUNC_MASK;
495 if (subfunc == H_VPA_REG_VPA || subfunc == H_VPA_REG_DTL ||
496 subfunc == H_VPA_REG_SLB) {
497 /* Registering new area - address must be cache-line aligned */
498 if ((vpa & (L1_CACHE_BYTES - 1)) || !vpa)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000499 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000500
501 /* convert logical addr to kernel addr and read length */
Paul Mackerras93e60242011-12-12 12:28:55 +0000502 va = kvmppc_pin_guest_page(kvm, vpa, &nb);
503 if (va == NULL)
Paul Mackerrasb2b2f162011-12-12 12:28:21 +0000504 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000505 if (subfunc == H_VPA_REG_VPA)
Alexander Graf02407552014-06-11 10:34:19 +0200506 len = be16_to_cpu(((struct reg_vpa *)va)->length.hword);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000507 else
Alexander Graf02407552014-06-11 10:34:19 +0200508 len = be32_to_cpu(((struct reg_vpa *)va)->length.word);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000509 kvmppc_unpin_guest_page(kvm, va, vpa, false);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000510
511 /* Check length */
512 if (len > nb || len < sizeof(struct reg_vpa))
513 return H_PARAMETER;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000514 } else {
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000515 vpa = 0;
516 len = 0;
517 }
518
519 err = H_PARAMETER;
520 vpap = NULL;
521 spin_lock(&tvcpu->arch.vpa_update_lock);
522
523 switch (subfunc) {
524 case H_VPA_REG_VPA: /* register VPA */
Nicholas Piggineaac112e2017-08-13 11:33:38 +1000525 /*
526 * The size of our lppaca is 1kB because of the way we align
527 * it for the guest to avoid crossing a 4kB boundary. We only
528 * use 640 bytes of the structure though, so we should accept
529 * clients that set a size of 640.
530 */
Nicholas Piggin499dcd42018-02-14 01:08:13 +1000531 BUILD_BUG_ON(sizeof(struct lppaca) != 640);
532 if (len < sizeof(struct lppaca))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000533 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000534 vpap = &tvcpu->arch.vpa;
535 err = 0;
536 break;
537
538 case H_VPA_REG_DTL: /* register DTL */
539 if (len < sizeof(struct dtl_entry))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000540 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000541 len -= len % sizeof(struct dtl_entry);
542
543 /* Check that they have previously registered a VPA */
544 err = H_RESOURCE;
545 if (!vpa_is_registered(&tvcpu->arch.vpa))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000546 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000547
548 vpap = &tvcpu->arch.dtl;
549 err = 0;
550 break;
551
552 case H_VPA_REG_SLB: /* register SLB shadow buffer */
553 /* Check that they have previously registered a VPA */
554 err = H_RESOURCE;
555 if (!vpa_is_registered(&tvcpu->arch.vpa))
556 break;
557
558 vpap = &tvcpu->arch.slb_shadow;
559 err = 0;
560 break;
561
562 case H_VPA_DEREG_VPA: /* deregister VPA */
563 /* Check they don't still have a DTL or SLB buf registered */
564 err = H_RESOURCE;
565 if (vpa_is_registered(&tvcpu->arch.dtl) ||
566 vpa_is_registered(&tvcpu->arch.slb_shadow))
567 break;
568
569 vpap = &tvcpu->arch.vpa;
570 err = 0;
571 break;
572
573 case H_VPA_DEREG_DTL: /* deregister DTL */
574 vpap = &tvcpu->arch.dtl;
575 err = 0;
576 break;
577
578 case H_VPA_DEREG_SLB: /* deregister SLB shadow buffer */
579 vpap = &tvcpu->arch.slb_shadow;
580 err = 0;
581 break;
582 }
583
584 if (vpap) {
585 vpap->next_gpa = vpa;
586 vpap->len = len;
587 vpap->update_pending = 1;
588 }
589
590 spin_unlock(&tvcpu->arch.vpa_update_lock);
591
592 return err;
593}
594
Paul Mackerras081f3232012-06-01 20:20:24 +1000595static void kvmppc_update_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *vpap)
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000596{
Paul Mackerras081f3232012-06-01 20:20:24 +1000597 struct kvm *kvm = vcpu->kvm;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000598 void *va;
599 unsigned long nb;
Paul Mackerras081f3232012-06-01 20:20:24 +1000600 unsigned long gpa;
601
602 /*
603 * We need to pin the page pointed to by vpap->next_gpa,
604 * but we can't call kvmppc_pin_guest_page under the lock
605 * as it does get_user_pages() and down_read(). So we
606 * have to drop the lock, pin the page, then get the lock
607 * again and check that a new area didn't get registered
608 * in the meantime.
609 */
610 for (;;) {
611 gpa = vpap->next_gpa;
612 spin_unlock(&vcpu->arch.vpa_update_lock);
613 va = NULL;
614 nb = 0;
615 if (gpa)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000616 va = kvmppc_pin_guest_page(kvm, gpa, &nb);
Paul Mackerras081f3232012-06-01 20:20:24 +1000617 spin_lock(&vcpu->arch.vpa_update_lock);
618 if (gpa == vpap->next_gpa)
619 break;
620 /* sigh... unpin that one and try again */
621 if (va)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000622 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000623 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000624
625 vpap->update_pending = 0;
Paul Mackerras081f3232012-06-01 20:20:24 +1000626 if (va && nb < vpap->len) {
627 /*
628 * If it's now too short, it must be that userspace
629 * has changed the mappings underlying guest memory,
630 * so unregister the region.
631 */
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000632 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000633 va = NULL;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000634 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000635 if (vpap->pinned_addr)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000636 kvmppc_unpin_guest_page(kvm, vpap->pinned_addr, vpap->gpa,
637 vpap->dirty);
638 vpap->gpa = gpa;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000639 vpap->pinned_addr = va;
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000640 vpap->dirty = false;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000641 if (va)
642 vpap->pinned_end = va + vpap->len;
643}
Paul Mackerras93e60242011-12-12 12:28:55 +0000644
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000645static void kvmppc_update_vpas(struct kvm_vcpu *vcpu)
646{
Paul Mackerras2f12f032012-10-15 01:17:17 +0000647 if (!(vcpu->arch.vpa.update_pending ||
648 vcpu->arch.slb_shadow.update_pending ||
649 vcpu->arch.dtl.update_pending))
650 return;
651
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000652 spin_lock(&vcpu->arch.vpa_update_lock);
653 if (vcpu->arch.vpa.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000654 kvmppc_update_vpa(vcpu, &vcpu->arch.vpa);
Paul Mackerras55b665b2012-09-25 20:33:06 +0000655 if (vcpu->arch.vpa.pinned_addr)
656 init_vpa(vcpu, vcpu->arch.vpa.pinned_addr);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000657 }
658 if (vcpu->arch.dtl.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000659 kvmppc_update_vpa(vcpu, &vcpu->arch.dtl);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000660 vcpu->arch.dtl_ptr = vcpu->arch.dtl.pinned_addr;
661 vcpu->arch.dtl_index = 0;
662 }
663 if (vcpu->arch.slb_shadow.update_pending)
Paul Mackerras081f3232012-06-01 20:20:24 +1000664 kvmppc_update_vpa(vcpu, &vcpu->arch.slb_shadow);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000665 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000666}
667
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000668/*
669 * Return the accumulated stolen time for the vcore up until `now'.
670 * The caller should hold the vcore lock.
671 */
672static u64 vcore_stolen_time(struct kvmppc_vcore *vc, u64 now)
673{
674 u64 p;
Paul Mackerras2711e242014-12-04 16:43:28 +1100675 unsigned long flags;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000676
Paul Mackerras2711e242014-12-04 16:43:28 +1100677 spin_lock_irqsave(&vc->stoltb_lock, flags);
678 p = vc->stolen_tb;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000679 if (vc->vcore_state != VCORE_INACTIVE &&
Paul Mackerras2711e242014-12-04 16:43:28 +1100680 vc->preempt_tb != TB_NIL)
681 p += now - vc->preempt_tb;
682 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000683 return p;
684}
685
Paul Mackerras0456ec42012-02-03 00:56:21 +0000686static void kvmppc_create_dtl_entry(struct kvm_vcpu *vcpu,
687 struct kvmppc_vcore *vc)
688{
689 struct dtl_entry *dt;
690 struct lppaca *vpa;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000691 unsigned long stolen;
692 unsigned long core_stolen;
693 u64 now;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000694 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000695
696 dt = vcpu->arch.dtl_ptr;
697 vpa = vcpu->arch.vpa.pinned_addr;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000698 now = mftb();
699 core_stolen = vcore_stolen_time(vc, now);
700 stolen = core_stolen - vcpu->arch.stolen_logged;
701 vcpu->arch.stolen_logged = core_stolen;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000702 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000703 stolen += vcpu->arch.busy_stolen;
704 vcpu->arch.busy_stolen = 0;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000705 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000706 if (!dt || !vpa)
707 return;
708 memset(dt, 0, sizeof(struct dtl_entry));
709 dt->dispatch_reason = 7;
Alexander Graf02407552014-06-11 10:34:19 +0200710 dt->processor_id = cpu_to_be16(vc->pcpu + vcpu->arch.ptid);
711 dt->timebase = cpu_to_be64(now + vc->tb_offset);
712 dt->enqueue_to_dispatch_time = cpu_to_be32(stolen);
713 dt->srr0 = cpu_to_be64(kvmppc_get_pc(vcpu));
714 dt->srr1 = cpu_to_be64(vcpu->arch.shregs.msr);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000715 ++dt;
716 if (dt == vcpu->arch.dtl.pinned_end)
717 dt = vcpu->arch.dtl.pinned_addr;
718 vcpu->arch.dtl_ptr = dt;
719 /* order writing *dt vs. writing vpa->dtl_idx */
720 smp_wmb();
Alexander Graf02407552014-06-11 10:34:19 +0200721 vpa->dtl_idx = cpu_to_be64(++vcpu->arch.dtl_index);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000722 vcpu->arch.dtl.dirty = true;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000723}
724
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000725/* See if there is a doorbell interrupt pending for a vcpu */
726static bool kvmppc_doorbell_pending(struct kvm_vcpu *vcpu)
727{
728 int thr;
729 struct kvmppc_vcore *vc;
730
Paul Mackerras57900692017-05-16 16:41:20 +1000731 if (vcpu->arch.doorbell_request)
732 return true;
733 /*
734 * Ensure that the read of vcore->dpdes comes after the read
735 * of vcpu->doorbell_request. This barrier matches the
Palmer Dabbelt6fabc9f2019-04-25 12:53:39 -0700736 * smp_wmb() in kvmppc_guest_entry_inject().
Paul Mackerras57900692017-05-16 16:41:20 +1000737 */
738 smp_rmb();
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000739 vc = vcpu->arch.vcore;
740 thr = vcpu->vcpu_id - vc->first_vcpuid;
741 return !!(vc->dpdes & (1 << thr));
742}
743
Michael Neuling96423822014-06-02 11:03:01 +1000744static bool kvmppc_power8_compatible(struct kvm_vcpu *vcpu)
745{
746 if (vcpu->arch.vcore->arch_compat >= PVR_ARCH_207)
747 return true;
748 if ((!vcpu->arch.vcore->arch_compat) &&
749 cpu_has_feature(CPU_FTR_ARCH_207S))
750 return true;
751 return false;
752}
753
754static int kvmppc_h_set_mode(struct kvm_vcpu *vcpu, unsigned long mflags,
755 unsigned long resource, unsigned long value1,
756 unsigned long value2)
757{
758 switch (resource) {
759 case H_SET_MODE_RESOURCE_SET_CIABR:
760 if (!kvmppc_power8_compatible(vcpu))
761 return H_P2;
762 if (value2)
763 return H_P4;
764 if (mflags)
765 return H_UNSUPPORTED_FLAG_START;
766 /* Guests can't breakpoint the hypervisor */
767 if ((value1 & CIABR_PRIV) == CIABR_PRIV_HYPER)
768 return H_P3;
769 vcpu->arch.ciabr = value1;
770 return H_SUCCESS;
Ravi Bangoria6f3fe292020-07-23 14:38:10 +0530771 case H_SET_MODE_RESOURCE_SET_DAWR0:
Michael Neuling96423822014-06-02 11:03:01 +1000772 if (!kvmppc_power8_compatible(vcpu))
773 return H_P2;
Michael Neuling398e7122018-03-27 15:37:20 +1100774 if (!ppc_breakpoint_available())
775 return H_P2;
Michael Neuling96423822014-06-02 11:03:01 +1000776 if (mflags)
777 return H_UNSUPPORTED_FLAG_START;
778 if (value2 & DABRX_HYP)
779 return H_P4;
Ravi Bangoria122954ed72020-12-16 16:12:17 +0530780 vcpu->arch.dawr0 = value1;
781 vcpu->arch.dawrx0 = value2;
Michael Neuling96423822014-06-02 11:03:01 +1000782 return H_SUCCESS;
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +0530783 case H_SET_MODE_RESOURCE_SET_DAWR1:
784 if (!kvmppc_power8_compatible(vcpu))
785 return H_P2;
786 if (!ppc_breakpoint_available())
787 return H_P2;
788 if (!cpu_has_feature(CPU_FTR_DAWR1))
789 return H_P2;
790 if (!vcpu->kvm->arch.dawr1_enabled)
791 return H_FUNCTION;
792 if (mflags)
793 return H_UNSUPPORTED_FLAG_START;
794 if (value2 & DABRX_HYP)
795 return H_P4;
796 vcpu->arch.dawr1 = value1;
797 vcpu->arch.dawrx1 = value2;
798 return H_SUCCESS;
Nicholas Piggin55d70042019-10-02 16:00:25 +1000799 case H_SET_MODE_RESOURCE_ADDR_TRANS_MODE:
Nicholas Pigginbcc92a02021-04-12 11:48:37 +1000800 /*
801 * KVM does not support mflags=2 (AIL=2) and AIL=1 is reserved.
802 * Keep this in synch with kvmppc_filter_guest_lpcr_hv.
803 */
Nicholas Piggin2e1ae9cd2021-05-28 19:07:41 +1000804 if (cpu_has_feature(CPU_FTR_P9_RADIX_PREFETCH_BUG) &&
805 kvmhv_vcpu_is_radix(vcpu) && mflags == 3)
Nicholas Piggin55d70042019-10-02 16:00:25 +1000806 return H_UNSUPPORTED_FLAG_START;
807 return H_TOO_HARD;
Michael Neuling96423822014-06-02 11:03:01 +1000808 default:
809 return H_TOO_HARD;
810 }
811}
812
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +1100813/* Copy guest memory in place - must reside within a single memslot */
814static int kvmppc_copy_guest(struct kvm *kvm, gpa_t to, gpa_t from,
815 unsigned long len)
816{
817 struct kvm_memory_slot *to_memslot = NULL;
818 struct kvm_memory_slot *from_memslot = NULL;
819 unsigned long to_addr, from_addr;
820 int r;
821
822 /* Get HPA for from address */
823 from_memslot = gfn_to_memslot(kvm, from >> PAGE_SHIFT);
824 if (!from_memslot)
825 return -EFAULT;
826 if ((from + len) >= ((from_memslot->base_gfn + from_memslot->npages)
827 << PAGE_SHIFT))
828 return -EINVAL;
829 from_addr = gfn_to_hva_memslot(from_memslot, from >> PAGE_SHIFT);
830 if (kvm_is_error_hva(from_addr))
831 return -EFAULT;
832 from_addr |= (from & (PAGE_SIZE - 1));
833
834 /* Get HPA for to address */
835 to_memslot = gfn_to_memslot(kvm, to >> PAGE_SHIFT);
836 if (!to_memslot)
837 return -EFAULT;
838 if ((to + len) >= ((to_memslot->base_gfn + to_memslot->npages)
839 << PAGE_SHIFT))
840 return -EINVAL;
841 to_addr = gfn_to_hva_memslot(to_memslot, to >> PAGE_SHIFT);
842 if (kvm_is_error_hva(to_addr))
843 return -EFAULT;
844 to_addr |= (to & (PAGE_SIZE - 1));
845
846 /* Perform copy */
847 r = raw_copy_in_user((void __user *)to_addr, (void __user *)from_addr,
848 len);
849 if (r)
850 return -EFAULT;
851 mark_page_dirty(kvm, to >> PAGE_SHIFT);
852 return 0;
853}
854
855static long kvmppc_h_page_init(struct kvm_vcpu *vcpu, unsigned long flags,
856 unsigned long dest, unsigned long src)
857{
858 u64 pg_sz = SZ_4K; /* 4K page size */
859 u64 pg_mask = SZ_4K - 1;
860 int ret;
861
862 /* Check for invalid flags (H_PAGE_SET_LOANED covers all CMO flags) */
863 if (flags & ~(H_ICACHE_INVALIDATE | H_ICACHE_SYNCHRONIZE |
864 H_ZERO_PAGE | H_COPY_PAGE | H_PAGE_SET_LOANED))
865 return H_PARAMETER;
866
867 /* dest (and src if copy_page flag set) must be page aligned */
868 if ((dest & pg_mask) || ((flags & H_COPY_PAGE) && (src & pg_mask)))
869 return H_PARAMETER;
870
871 /* zero and/or copy the page as determined by the flags */
872 if (flags & H_COPY_PAGE) {
873 ret = kvmppc_copy_guest(vcpu->kvm, dest, src, pg_sz);
874 if (ret < 0)
875 return H_PARAMETER;
876 } else if (flags & H_ZERO_PAGE) {
877 ret = kvm_clear_guest(vcpu->kvm, dest, pg_sz);
878 if (ret < 0)
879 return H_PARAMETER;
880 }
881
882 /* We can ignore the remaining flags */
883
884 return H_SUCCESS;
885}
886
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100887static int kvm_arch_vcpu_yield_to(struct kvm_vcpu *target)
888{
889 struct kvmppc_vcore *vcore = target->arch.vcore;
890
891 /*
892 * We expect to have been called by the real mode handler
893 * (kvmppc_rm_h_confer()) which would have directly returned
894 * H_SUCCESS if the source vcore wasn't idle (e.g. if it may
895 * have useful work to do and should not confer) so we don't
896 * recheck that here.
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +1000897 *
898 * In the case of the P9 single vcpu per vcore case, the real
899 * mode handler is not called but no other threads are in the
900 * source vcore.
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100901 */
902
903 spin_lock(&vcore->lock);
904 if (target->arch.state == KVMPPC_VCPU_RUNNABLE &&
Paul Mackerrasec257162015-06-24 21:18:03 +1000905 vcore->vcore_state != VCORE_INACTIVE &&
906 vcore->runner)
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100907 target = vcore->runner;
908 spin_unlock(&vcore->lock);
909
910 return kvm_vcpu_yield_to(target);
911}
912
913static int kvmppc_get_yield_count(struct kvm_vcpu *vcpu)
914{
915 int yield_count = 0;
916 struct lppaca *lppaca;
917
918 spin_lock(&vcpu->arch.vpa_update_lock);
919 lppaca = (struct lppaca *)vcpu->arch.vpa.pinned_addr;
920 if (lppaca)
Paul Mackerrasecb6d612015-03-20 20:39:39 +1100921 yield_count = be32_to_cpu(lppaca->yield_count);
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100922 spin_unlock(&vcpu->arch.vpa_update_lock);
923 return yield_count;
924}
925
Bharata B Rao53324b52021-06-21 14:20:01 +0530926/*
927 * H_RPT_INVALIDATE hcall handler for nested guests.
928 *
929 * Handles only nested process-scoped invalidation requests in L0.
930 */
931static int kvmppc_nested_h_rpt_invalidate(struct kvm_vcpu *vcpu)
932{
933 unsigned long type = kvmppc_get_gpr(vcpu, 6);
934 unsigned long pid, pg_sizes, start, end;
935
936 /*
937 * The partition-scoped invalidations aren't handled here in L0.
938 */
939 if (type & H_RPTI_TYPE_NESTED)
940 return RESUME_HOST;
941
942 pid = kvmppc_get_gpr(vcpu, 4);
943 pg_sizes = kvmppc_get_gpr(vcpu, 7);
944 start = kvmppc_get_gpr(vcpu, 8);
945 end = kvmppc_get_gpr(vcpu, 9);
946
947 do_h_rpt_invalidate_prt(pid, vcpu->arch.nested->shadow_lpid,
948 type, pg_sizes, start, end);
949
950 kvmppc_set_gpr(vcpu, 3, H_SUCCESS);
951 return RESUME_GUEST;
952}
953
Bharata B Raof0c6fbb2021-06-21 14:20:00 +0530954static long kvmppc_h_rpt_invalidate(struct kvm_vcpu *vcpu,
955 unsigned long id, unsigned long target,
956 unsigned long type, unsigned long pg_sizes,
957 unsigned long start, unsigned long end)
958{
959 if (!kvm_is_radix(vcpu->kvm))
960 return H_UNSUPPORTED;
961
962 if (end < start)
963 return H_P5;
964
965 /*
966 * Partition-scoped invalidation for nested guests.
Bharata B Raof0c6fbb2021-06-21 14:20:00 +0530967 */
Bharata B Rao53324b52021-06-21 14:20:01 +0530968 if (type & H_RPTI_TYPE_NESTED) {
969 if (!nesting_enabled(vcpu->kvm))
970 return H_FUNCTION;
971
972 /* Support only cores as target */
973 if (target != H_RPTI_TARGET_CMMU)
974 return H_P2;
975
976 return do_h_rpt_invalidate_pat(vcpu, id, type, pg_sizes,
977 start, end);
978 }
Bharata B Raof0c6fbb2021-06-21 14:20:00 +0530979
980 /*
981 * Process-scoped invalidation for L1 guests.
982 */
983 do_h_rpt_invalidate_prt(id, vcpu->kvm->arch.lpid,
984 type, pg_sizes, start, end);
985 return H_SUCCESS;
986}
987
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000988int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
989{
Nicholas Piggina9aa86e2021-05-28 19:07:47 +1000990 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000991 unsigned long req = kvmppc_get_gpr(vcpu, 3);
992 unsigned long target, ret = H_SUCCESS;
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100993 int yield_count;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000994 struct kvm_vcpu *tvcpu;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000995 int idx, rc;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000996
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000997 if (req <= MAX_HCALL_OPCODE &&
998 !test_bit(req/4, vcpu->kvm->arch.enabled_hcalls))
999 return RESUME_HOST;
1000
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001001 switch (req) {
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001002 case H_REMOVE:
1003 ret = kvmppc_h_remove(vcpu, kvmppc_get_gpr(vcpu, 4),
1004 kvmppc_get_gpr(vcpu, 5),
1005 kvmppc_get_gpr(vcpu, 6));
1006 if (ret == H_TOO_HARD)
1007 return RESUME_HOST;
1008 break;
1009 case H_ENTER:
1010 ret = kvmppc_h_enter(vcpu, kvmppc_get_gpr(vcpu, 4),
1011 kvmppc_get_gpr(vcpu, 5),
1012 kvmppc_get_gpr(vcpu, 6),
1013 kvmppc_get_gpr(vcpu, 7));
1014 if (ret == H_TOO_HARD)
1015 return RESUME_HOST;
1016 break;
1017 case H_READ:
1018 ret = kvmppc_h_read(vcpu, kvmppc_get_gpr(vcpu, 4),
1019 kvmppc_get_gpr(vcpu, 5));
1020 if (ret == H_TOO_HARD)
1021 return RESUME_HOST;
1022 break;
1023 case H_CLEAR_MOD:
1024 ret = kvmppc_h_clear_mod(vcpu, kvmppc_get_gpr(vcpu, 4),
1025 kvmppc_get_gpr(vcpu, 5));
1026 if (ret == H_TOO_HARD)
1027 return RESUME_HOST;
1028 break;
1029 case H_CLEAR_REF:
1030 ret = kvmppc_h_clear_ref(vcpu, kvmppc_get_gpr(vcpu, 4),
1031 kvmppc_get_gpr(vcpu, 5));
1032 if (ret == H_TOO_HARD)
1033 return RESUME_HOST;
1034 break;
1035 case H_PROTECT:
1036 ret = kvmppc_h_protect(vcpu, kvmppc_get_gpr(vcpu, 4),
1037 kvmppc_get_gpr(vcpu, 5),
1038 kvmppc_get_gpr(vcpu, 6));
1039 if (ret == H_TOO_HARD)
1040 return RESUME_HOST;
1041 break;
1042 case H_BULK_REMOVE:
1043 ret = kvmppc_h_bulk_remove(vcpu);
1044 if (ret == H_TOO_HARD)
1045 return RESUME_HOST;
1046 break;
1047
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001048 case H_CEDE:
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001049 break;
1050 case H_PROD:
1051 target = kvmppc_get_gpr(vcpu, 4);
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001052 tvcpu = kvmppc_find_vcpu(kvm, target);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001053 if (!tvcpu) {
1054 ret = H_PARAMETER;
1055 break;
1056 }
1057 tvcpu->arch.prodded = 1;
1058 smp_mb();
Paul Mackerras8464c882016-12-06 20:42:05 +11001059 if (tvcpu->arch.ceded)
1060 kvmppc_fast_vcpu_kick_hv(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001061 break;
1062 case H_CONFER:
Paul Mackerras42d76042013-09-06 13:23:21 +10001063 target = kvmppc_get_gpr(vcpu, 4);
1064 if (target == -1)
1065 break;
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001066 tvcpu = kvmppc_find_vcpu(kvm, target);
Paul Mackerras42d76042013-09-06 13:23:21 +10001067 if (!tvcpu) {
1068 ret = H_PARAMETER;
1069 break;
1070 }
Sam Bobroff90fd09f2014-12-03 13:30:40 +11001071 yield_count = kvmppc_get_gpr(vcpu, 5);
1072 if (kvmppc_get_yield_count(tvcpu) != yield_count)
1073 break;
1074 kvm_arch_vcpu_yield_to(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001075 break;
1076 case H_REGISTER_VPA:
1077 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
1078 kvmppc_get_gpr(vcpu, 5),
1079 kvmppc_get_gpr(vcpu, 6));
1080 break;
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001081 case H_RTAS:
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001082 if (list_empty(&kvm->arch.rtas_tokens))
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001083 return RESUME_HOST;
1084
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001085 idx = srcu_read_lock(&kvm->srcu);
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001086 rc = kvmppc_rtas_hcall(vcpu);
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001087 srcu_read_unlock(&kvm->srcu, idx);
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001088
1089 if (rc == -ENOENT)
1090 return RESUME_HOST;
1091 else if (rc == 0)
1092 break;
1093
1094 /* Send the error out to userspace via KVM_RUN */
1095 return rc;
David Gibson99342cf82015-02-05 11:53:25 +11001096 case H_LOGICAL_CI_LOAD:
1097 ret = kvmppc_h_logical_ci_load(vcpu);
1098 if (ret == H_TOO_HARD)
1099 return RESUME_HOST;
1100 break;
1101 case H_LOGICAL_CI_STORE:
1102 ret = kvmppc_h_logical_ci_store(vcpu);
1103 if (ret == H_TOO_HARD)
1104 return RESUME_HOST;
1105 break;
Michael Neuling96423822014-06-02 11:03:01 +10001106 case H_SET_MODE:
1107 ret = kvmppc_h_set_mode(vcpu, kvmppc_get_gpr(vcpu, 4),
1108 kvmppc_get_gpr(vcpu, 5),
1109 kvmppc_get_gpr(vcpu, 6),
1110 kvmppc_get_gpr(vcpu, 7));
1111 if (ret == H_TOO_HARD)
1112 return RESUME_HOST;
1113 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +00001114 case H_XIRR:
1115 case H_CPPR:
1116 case H_EOI:
1117 case H_IPI:
Paul Mackerras8e44ddc2013-05-23 15:42:21 +00001118 case H_IPOLL:
1119 case H_XIRR_X:
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +00001120 if (kvmppc_xics_enabled(vcpu)) {
Paul Mackerras03f95332019-02-04 22:07:20 +11001121 if (xics_on_xive()) {
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001122 ret = H_NOT_AVAILABLE;
1123 return RESUME_GUEST;
1124 }
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +00001125 ret = kvmppc_xics_hcall(vcpu, req);
1126 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11001127 }
1128 return RESUME_HOST;
Paul Mackerras4bad7772018-10-08 16:31:06 +11001129 case H_SET_DABR:
1130 ret = kvmppc_h_set_dabr(vcpu, kvmppc_get_gpr(vcpu, 4));
1131 break;
1132 case H_SET_XDABR:
1133 ret = kvmppc_h_set_xdabr(vcpu, kvmppc_get_gpr(vcpu, 4),
1134 kvmppc_get_gpr(vcpu, 5));
1135 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001136#ifdef CONFIG_SPAPR_TCE_IOMMU
Paul Mackerras4bad7772018-10-08 16:31:06 +11001137 case H_GET_TCE:
1138 ret = kvmppc_h_get_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1139 kvmppc_get_gpr(vcpu, 5));
1140 if (ret == H_TOO_HARD)
1141 return RESUME_HOST;
1142 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11001143 case H_PUT_TCE:
1144 ret = kvmppc_h_put_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1145 kvmppc_get_gpr(vcpu, 5),
1146 kvmppc_get_gpr(vcpu, 6));
1147 if (ret == H_TOO_HARD)
1148 return RESUME_HOST;
1149 break;
1150 case H_PUT_TCE_INDIRECT:
1151 ret = kvmppc_h_put_tce_indirect(vcpu, kvmppc_get_gpr(vcpu, 4),
1152 kvmppc_get_gpr(vcpu, 5),
1153 kvmppc_get_gpr(vcpu, 6),
1154 kvmppc_get_gpr(vcpu, 7));
1155 if (ret == H_TOO_HARD)
1156 return RESUME_HOST;
1157 break;
1158 case H_STUFF_TCE:
1159 ret = kvmppc_h_stuff_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1160 kvmppc_get_gpr(vcpu, 5),
1161 kvmppc_get_gpr(vcpu, 6),
1162 kvmppc_get_gpr(vcpu, 7));
1163 if (ret == H_TOO_HARD)
1164 return RESUME_HOST;
1165 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001166#endif
Paul Mackerras4bad7772018-10-08 16:31:06 +11001167 case H_RANDOM:
1168 if (!powernv_get_random_long(&vcpu->arch.regs.gpr[4]))
1169 ret = H_HARDWARE;
1170 break;
Bharata B Raof0c6fbb2021-06-21 14:20:00 +05301171 case H_RPT_INVALIDATE:
1172 ret = kvmppc_h_rpt_invalidate(vcpu, kvmppc_get_gpr(vcpu, 4),
1173 kvmppc_get_gpr(vcpu, 5),
1174 kvmppc_get_gpr(vcpu, 6),
1175 kvmppc_get_gpr(vcpu, 7),
1176 kvmppc_get_gpr(vcpu, 8),
1177 kvmppc_get_gpr(vcpu, 9));
1178 break;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001179
1180 case H_SET_PARTITION_TABLE:
1181 ret = H_FUNCTION;
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001182 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001183 ret = kvmhv_set_partition_table(vcpu);
1184 break;
1185 case H_ENTER_NESTED:
1186 ret = H_FUNCTION;
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001187 if (!nesting_enabled(kvm))
Paul Mackerras360cae32018-10-08 16:31:04 +11001188 break;
1189 ret = kvmhv_enter_nested_guest(vcpu);
1190 if (ret == H_INTERRUPT) {
1191 kvmppc_set_gpr(vcpu, 3, 0);
Michael Roth6c08ec12018-11-08 21:27:23 -06001192 vcpu->arch.hcall_needed = 0;
Paul Mackerras360cae32018-10-08 16:31:04 +11001193 return -EINTR;
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11001194 } else if (ret == H_TOO_HARD) {
1195 kvmppc_set_gpr(vcpu, 3, 0);
1196 vcpu->arch.hcall_needed = 0;
1197 return RESUME_HOST;
Paul Mackerras360cae32018-10-08 16:31:04 +11001198 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001199 break;
1200 case H_TLB_INVALIDATE:
1201 ret = H_FUNCTION;
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001202 if (nesting_enabled(kvm))
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001203 ret = kvmhv_do_nested_tlbie(vcpu);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001204 break;
Suraj Jitindar Singh6ff887b2018-12-14 16:29:09 +11001205 case H_COPY_TOFROM_GUEST:
1206 ret = H_FUNCTION;
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001207 if (nesting_enabled(kvm))
Suraj Jitindar Singh6ff887b2018-12-14 16:29:09 +11001208 ret = kvmhv_copy_tofrom_guest_nested(vcpu);
1209 break;
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001210 case H_PAGE_INIT:
1211 ret = kvmppc_h_page_init(vcpu, kvmppc_get_gpr(vcpu, 4),
1212 kvmppc_get_gpr(vcpu, 5),
1213 kvmppc_get_gpr(vcpu, 6));
1214 break;
Bharata B Raoca9f4942019-11-25 08:36:26 +05301215 case H_SVM_PAGE_IN:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001216 ret = H_UNSUPPORTED;
1217 if (kvmppc_get_srr1(vcpu) & MSR_S)
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001218 ret = kvmppc_h_svm_page_in(kvm,
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001219 kvmppc_get_gpr(vcpu, 4),
1220 kvmppc_get_gpr(vcpu, 5),
1221 kvmppc_get_gpr(vcpu, 6));
Bharata B Raoca9f4942019-11-25 08:36:26 +05301222 break;
1223 case H_SVM_PAGE_OUT:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001224 ret = H_UNSUPPORTED;
1225 if (kvmppc_get_srr1(vcpu) & MSR_S)
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001226 ret = kvmppc_h_svm_page_out(kvm,
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001227 kvmppc_get_gpr(vcpu, 4),
1228 kvmppc_get_gpr(vcpu, 5),
1229 kvmppc_get_gpr(vcpu, 6));
Bharata B Raoca9f4942019-11-25 08:36:26 +05301230 break;
1231 case H_SVM_INIT_START:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001232 ret = H_UNSUPPORTED;
1233 if (kvmppc_get_srr1(vcpu) & MSR_S)
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001234 ret = kvmppc_h_svm_init_start(kvm);
Bharata B Raoca9f4942019-11-25 08:36:26 +05301235 break;
1236 case H_SVM_INIT_DONE:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001237 ret = H_UNSUPPORTED;
1238 if (kvmppc_get_srr1(vcpu) & MSR_S)
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001239 ret = kvmppc_h_svm_init_done(kvm);
Bharata B Raoca9f4942019-11-25 08:36:26 +05301240 break;
Sukadev Bhattiprolu3a439702020-01-06 18:02:37 -08001241 case H_SVM_INIT_ABORT:
Laurent Dufoure3326ae2020-05-20 19:43:08 +02001242 /*
1243 * Even if that call is made by the Ultravisor, the SSR1 value
1244 * is the guest context one, with the secure bit clear as it has
1245 * not yet been secured. So we can't check it here.
1246 * Instead the kvm->arch.secure_guest flag is checked inside
1247 * kvmppc_h_svm_init_abort().
1248 */
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001249 ret = kvmppc_h_svm_init_abort(kvm);
Sukadev Bhattiprolu3a439702020-01-06 18:02:37 -08001250 break;
Bharata B Raoca9f4942019-11-25 08:36:26 +05301251
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001252 default:
1253 return RESUME_HOST;
1254 }
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001255 WARN_ON_ONCE(ret == H_TOO_HARD);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001256 kvmppc_set_gpr(vcpu, 3, ret);
1257 vcpu->arch.hcall_needed = 0;
1258 return RESUME_GUEST;
1259}
1260
Paul Mackerras4bad7772018-10-08 16:31:06 +11001261/*
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001262 * Handle H_CEDE in the P9 path where we don't call the real-mode hcall
1263 * handlers in book3s_hv_rmhandlers.S.
1264 *
Paul Mackerras4bad7772018-10-08 16:31:06 +11001265 * This has to be done early, not in kvmppc_pseries_do_hcall(), so
1266 * that the cede logic in kvmppc_run_single_vcpu() works properly.
1267 */
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001268static void kvmppc_cede(struct kvm_vcpu *vcpu)
Paul Mackerras4bad7772018-10-08 16:31:06 +11001269{
1270 vcpu->arch.shregs.msr |= MSR_EE;
1271 vcpu->arch.ceded = 1;
1272 smp_mb();
1273 if (vcpu->arch.prodded) {
1274 vcpu->arch.prodded = 0;
1275 smp_mb();
1276 vcpu->arch.ceded = 0;
1277 }
1278}
1279
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001280static int kvmppc_hcall_impl_hv(unsigned long cmd)
1281{
1282 switch (cmd) {
1283 case H_CEDE:
1284 case H_PROD:
1285 case H_CONFER:
1286 case H_REGISTER_VPA:
Michael Neuling96423822014-06-02 11:03:01 +10001287 case H_SET_MODE:
David Gibson99342cf82015-02-05 11:53:25 +11001288 case H_LOGICAL_CI_LOAD:
1289 case H_LOGICAL_CI_STORE:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001290#ifdef CONFIG_KVM_XICS
1291 case H_XIRR:
1292 case H_CPPR:
1293 case H_EOI:
1294 case H_IPI:
1295 case H_IPOLL:
1296 case H_XIRR_X:
1297#endif
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001298 case H_PAGE_INIT:
Bharata B Raof0c6fbb2021-06-21 14:20:00 +05301299 case H_RPT_INVALIDATE:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001300 return 1;
1301 }
1302
1303 /* See if it's in the real-mode table */
1304 return kvmppc_hcall_impl_hv_realmode(cmd);
1305}
1306
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001307static int kvmppc_emulate_debug_inst(struct kvm_vcpu *vcpu)
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301308{
1309 u32 last_inst;
1310
1311 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst) !=
1312 EMULATE_DONE) {
1313 /*
1314 * Fetch failed, so return to guest and
1315 * try executing it again.
1316 */
1317 return RESUME_GUEST;
1318 }
1319
1320 if (last_inst == KVMPPC_INST_SW_BREAKPOINT) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001321 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
1322 vcpu->run->debug.arch.address = kvmppc_get_pc(vcpu);
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301323 return RESUME_HOST;
1324 } else {
1325 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1326 return RESUME_GUEST;
1327 }
1328}
1329
Paul Mackerras57900692017-05-16 16:41:20 +10001330static void do_nothing(void *x)
1331{
1332}
1333
1334static unsigned long kvmppc_read_dpdes(struct kvm_vcpu *vcpu)
1335{
1336 int thr, cpu, pcpu, nthreads;
1337 struct kvm_vcpu *v;
1338 unsigned long dpdes;
1339
1340 nthreads = vcpu->kvm->arch.emul_smt_mode;
1341 dpdes = 0;
1342 cpu = vcpu->vcpu_id & ~(nthreads - 1);
1343 for (thr = 0; thr < nthreads; ++thr, ++cpu) {
1344 v = kvmppc_find_vcpu(vcpu->kvm, cpu);
1345 if (!v)
1346 continue;
1347 /*
1348 * If the vcpu is currently running on a physical cpu thread,
1349 * interrupt it in order to pull it out of the guest briefly,
1350 * which will update its vcore->dpdes value.
1351 */
1352 pcpu = READ_ONCE(v->cpu);
1353 if (pcpu >= 0)
1354 smp_call_function_single(pcpu, do_nothing, NULL, 1);
1355 if (kvmppc_doorbell_pending(v))
1356 dpdes |= 1 << thr;
1357 }
1358 return dpdes;
1359}
1360
1361/*
1362 * On POWER9, emulate doorbell-related instructions in order to
1363 * give the guest the illusion of running on a multi-threaded core.
1364 * The instructions emulated are msgsndp, msgclrp, mfspr TIR,
1365 * and mfspr DPDES.
1366 */
1367static int kvmppc_emulate_doorbell_instr(struct kvm_vcpu *vcpu)
1368{
1369 u32 inst, rb, thr;
1370 unsigned long arg;
1371 struct kvm *kvm = vcpu->kvm;
1372 struct kvm_vcpu *tvcpu;
1373
Paul Mackerras57900692017-05-16 16:41:20 +10001374 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &inst) != EMULATE_DONE)
1375 return RESUME_GUEST;
1376 if (get_op(inst) != 31)
1377 return EMULATE_FAIL;
1378 rb = get_rb(inst);
1379 thr = vcpu->vcpu_id & (kvm->arch.emul_smt_mode - 1);
1380 switch (get_xop(inst)) {
1381 case OP_31_XOP_MSGSNDP:
1382 arg = kvmppc_get_gpr(vcpu, rb);
Leonardo Bras87fb4972020-12-08 18:57:08 -03001383 if (((arg >> 27) & 0x1f) != PPC_DBELL_SERVER)
Paul Mackerras57900692017-05-16 16:41:20 +10001384 break;
Leonardo Bras87fb4972020-12-08 18:57:08 -03001385 arg &= 0x7f;
Paul Mackerras57900692017-05-16 16:41:20 +10001386 if (arg >= kvm->arch.emul_smt_mode)
1387 break;
1388 tvcpu = kvmppc_find_vcpu(kvm, vcpu->vcpu_id - thr + arg);
1389 if (!tvcpu)
1390 break;
1391 if (!tvcpu->arch.doorbell_request) {
1392 tvcpu->arch.doorbell_request = 1;
1393 kvmppc_fast_vcpu_kick_hv(tvcpu);
1394 }
1395 break;
1396 case OP_31_XOP_MSGCLRP:
1397 arg = kvmppc_get_gpr(vcpu, rb);
Leonardo Bras87fb4972020-12-08 18:57:08 -03001398 if (((arg >> 27) & 0x1f) != PPC_DBELL_SERVER)
Paul Mackerras57900692017-05-16 16:41:20 +10001399 break;
1400 vcpu->arch.vcore->dpdes = 0;
1401 vcpu->arch.doorbell_request = 0;
1402 break;
1403 case OP_31_XOP_MFSPR:
1404 switch (get_sprn(inst)) {
1405 case SPRN_TIR:
1406 arg = thr;
1407 break;
1408 case SPRN_DPDES:
1409 arg = kvmppc_read_dpdes(vcpu);
1410 break;
1411 default:
1412 return EMULATE_FAIL;
1413 }
1414 kvmppc_set_gpr(vcpu, get_rt(inst), arg);
1415 break;
1416 default:
1417 return EMULATE_FAIL;
1418 }
1419 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
1420 return RESUME_GUEST;
1421}
1422
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001423static int kvmppc_handle_exit_hv(struct kvm_vcpu *vcpu,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301424 struct task_struct *tsk)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001425{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001426 struct kvm_run *run = vcpu->run;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001427 int r = RESUME_HOST;
1428
1429 vcpu->stat.sum_exits++;
1430
Paul Mackerras1c9e3d52015-11-12 16:43:48 +11001431 /*
1432 * This can happen if an interrupt occurs in the last stages
1433 * of guest entry or the first stages of guest exit (i.e. after
1434 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1435 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1436 * That can happen due to a bug, or due to a machine check
1437 * occurring at just the wrong time.
1438 */
1439 if (vcpu->arch.shregs.msr & MSR_HV) {
1440 printk(KERN_EMERG "KVM trap in HV mode!\n");
1441 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1442 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1443 vcpu->arch.shregs.msr);
1444 kvmppc_dump_regs(vcpu);
1445 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1446 run->hw.hardware_exit_reason = vcpu->arch.trap;
1447 return RESUME_HOST;
1448 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001449 run->exit_reason = KVM_EXIT_UNKNOWN;
1450 run->ready_for_interrupt_injection = 1;
1451 switch (vcpu->arch.trap) {
1452 /* We're good on these - the host merely wanted to get our attention */
1453 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1454 vcpu->stat.dec_exits++;
1455 r = RESUME_GUEST;
1456 break;
1457 case BOOK3S_INTERRUPT_EXTERNAL:
Paul Mackerras5d00f662014-01-08 21:25:28 +11001458 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerras84f71392016-11-22 14:30:14 +11001459 case BOOK3S_INTERRUPT_H_VIRT:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001460 vcpu->stat.ext_intr_exits++;
1461 r = RESUME_GUEST;
1462 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11001463 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
Mahesh Salgaonkardee6f242014-11-03 15:51:57 +11001464 case BOOK3S_INTERRUPT_HMI:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001465 case BOOK3S_INTERRUPT_PERFMON:
Nicholas Piggin6de66382017-11-05 23:33:55 +11001466 case BOOK3S_INTERRUPT_SYSTEM_RESET:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001467 r = RESUME_GUEST;
1468 break;
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001469 case BOOK3S_INTERRUPT_MACHINE_CHECK: {
1470 static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,
1471 DEFAULT_RATELIMIT_BURST);
1472 /*
1473 * Print the MCE event to host console. Ratelimit so the guest
1474 * can't flood the host log.
1475 */
1476 if (__ratelimit(&rs))
1477 machine_check_print_event_info(&vcpu->arch.mce_evt,false, true);
Paul Mackerras884dfb72019-02-21 13:38:49 +11001478
1479 /*
1480 * If the guest can do FWNMI, exit to userspace so it can
1481 * deliver a FWNMI to the guest.
1482 * Otherwise we synthesize a machine check for the guest
1483 * so that it knows that the machine check occurred.
1484 */
1485 if (!vcpu->kvm->arch.fwnmi_enabled) {
1486 ulong flags = vcpu->arch.shregs.msr & 0x083c0000;
1487 kvmppc_core_queue_machine_check(vcpu, flags);
1488 r = RESUME_GUEST;
1489 break;
1490 }
1491
Aravinda Prasade20bbd32017-05-11 16:33:37 +05301492 /* Exit to guest with KVM_EXIT_NMI as exit reason */
1493 run->exit_reason = KVM_EXIT_NMI;
1494 run->hw.hardware_exit_reason = vcpu->arch.trap;
1495 /* Clear out the old NMI status from run->flags */
1496 run->flags &= ~KVM_RUN_PPC_NMI_DISP_MASK;
1497 /* Now set the NMI status */
1498 if (vcpu->arch.mce_evt.disposition == MCE_DISPOSITION_RECOVERED)
1499 run->flags |= KVM_RUN_PPC_NMI_DISP_FULLY_RECOV;
1500 else
1501 run->flags |= KVM_RUN_PPC_NMI_DISP_NOT_RECOV;
1502
1503 r = RESUME_HOST;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001504 break;
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001505 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001506 case BOOK3S_INTERRUPT_PROGRAM:
1507 {
1508 ulong flags;
1509 /*
1510 * Normally program interrupts are delivered directly
1511 * to the guest by the hardware, but we can get here
1512 * as a result of a hypervisor emulation interrupt
1513 * (e40) getting turned into a 700 by BML RTAS.
1514 */
1515 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
1516 kvmppc_core_queue_program(vcpu, flags);
1517 r = RESUME_GUEST;
1518 break;
1519 }
1520 case BOOK3S_INTERRUPT_SYSCALL:
1521 {
Paul Mackerrasde56a942011-06-29 00:21:34 +00001522 int i;
1523
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001524 if (unlikely(vcpu->arch.shregs.msr & MSR_PR)) {
1525 /*
1526 * Guest userspace executed sc 1. This can only be
1527 * reached by the P9 path because the old path
1528 * handles this case in realmode hcall handlers.
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001529 */
Nicholas Pigginac3c8b42021-05-28 19:07:49 +10001530 if (!kvmhv_vcpu_is_radix(vcpu)) {
1531 /*
1532 * A guest could be running PR KVM, so this
1533 * may be a PR KVM hcall. It must be reflected
1534 * to the guest kernel as a sc interrupt.
1535 */
1536 kvmppc_core_queue_syscall(vcpu);
1537 } else {
1538 /*
1539 * Radix guests can not run PR KVM or nested HV
1540 * hash guests which might run PR KVM, so this
1541 * is always a privilege fault. Send a program
1542 * check to guest kernel.
1543 */
1544 kvmppc_core_queue_program(vcpu, SRR1_PROGPRIV);
1545 }
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001546 r = RESUME_GUEST;
1547 break;
1548 }
Liu Ping Fan27025a62013-11-19 14:12:48 +08001549
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001550 /*
1551 * hcall - gather args and set exit_reason. This will next be
1552 * handled by kvmppc_pseries_do_hcall which may be able to deal
1553 * with it and resume guest, or may punt to userspace.
1554 */
Paul Mackerrasde56a942011-06-29 00:21:34 +00001555 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
1556 for (i = 0; i < 9; ++i)
1557 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
1558 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1559 vcpu->arch.hcall_needed = 1;
1560 r = RESUME_HOST;
1561 break;
1562 }
1563 /*
Paul Mackerras342d3db2011-12-12 12:38:05 +00001564 * We get these next two if the guest accesses a page which it thinks
1565 * it has mapped but which is not actually present, either because
1566 * it is for an emulated I/O device or because the corresonding
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001567 * host page has been paged out.
1568 *
1569 * Any other HDSI/HISI interrupts have been handled already for P7/8
1570 * guests. For POWER9 hash guests not using rmhandlers, basic hash
1571 * fault handling is done here.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001572 */
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001573 case BOOK3S_INTERRUPT_H_DATA_STORAGE: {
1574 unsigned long vsid;
1575 long err;
1576
1577 if (vcpu->arch.fault_dsisr == HDSISR_CANARY) {
Nicholas Piggin89d35b22021-05-28 19:07:34 +10001578 r = RESUME_GUEST; /* Just retry if it's the canary */
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001579 break;
1580 }
1581
1582 if (kvm_is_radix(vcpu->kvm) || !cpu_has_feature(CPU_FTR_ARCH_300)) {
1583 /*
1584 * Radix doesn't require anything, and pre-ISAv3.0 hash
1585 * already attempted to handle this in rmhandlers. The
1586 * hash fault handling below is v3 only (it uses ASDR
1587 * via fault_gpa).
1588 */
1589 r = RESUME_PAGE_FAULT;
1590 break;
1591 }
1592
1593 if (!(vcpu->arch.fault_dsisr & (DSISR_NOHPTE | DSISR_PROTFAULT))) {
1594 kvmppc_core_queue_data_storage(vcpu,
1595 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
1596 r = RESUME_GUEST;
1597 break;
1598 }
1599
1600 if (!(vcpu->arch.shregs.msr & MSR_DR))
1601 vsid = vcpu->kvm->arch.vrma_slb_v;
1602 else
1603 vsid = vcpu->arch.fault_gpa;
1604
1605 err = kvmppc_hpte_hv_fault(vcpu, vcpu->arch.fault_dar,
1606 vsid, vcpu->arch.fault_dsisr, true);
1607 if (err == 0) {
1608 r = RESUME_GUEST;
1609 } else if (err == -1 || err == -2) {
1610 r = RESUME_PAGE_FAULT;
1611 } else {
1612 kvmppc_core_queue_data_storage(vcpu,
1613 vcpu->arch.fault_dar, err);
1614 r = RESUME_GUEST;
1615 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001616 break;
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001617 }
1618 case BOOK3S_INTERRUPT_H_INST_STORAGE: {
1619 unsigned long vsid;
1620 long err;
1621
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001622 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
Paul Mackerras32eb1502018-10-08 16:30:56 +11001623 vcpu->arch.fault_dsisr = vcpu->arch.shregs.msr &
1624 DSISR_SRR1_MATCH_64S;
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001625 if (kvm_is_radix(vcpu->kvm) || !cpu_has_feature(CPU_FTR_ARCH_300)) {
1626 /*
1627 * Radix doesn't require anything, and pre-ISAv3.0 hash
1628 * already attempted to handle this in rmhandlers. The
1629 * hash fault handling below is v3 only (it uses ASDR
1630 * via fault_gpa).
1631 */
1632 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1633 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
1634 r = RESUME_PAGE_FAULT;
1635 break;
1636 }
1637
1638 if (!(vcpu->arch.fault_dsisr & SRR1_ISI_NOPT)) {
1639 kvmppc_core_queue_inst_storage(vcpu,
1640 vcpu->arch.fault_dsisr);
1641 r = RESUME_GUEST;
1642 break;
1643 }
1644
1645 if (!(vcpu->arch.shregs.msr & MSR_IR))
1646 vsid = vcpu->kvm->arch.vrma_slb_v;
1647 else
1648 vsid = vcpu->arch.fault_gpa;
1649
1650 err = kvmppc_hpte_hv_fault(vcpu, vcpu->arch.fault_dar,
1651 vsid, vcpu->arch.fault_dsisr, false);
1652 if (err == 0) {
1653 r = RESUME_GUEST;
1654 } else if (err == -1) {
1655 r = RESUME_PAGE_FAULT;
1656 } else {
1657 kvmppc_core_queue_inst_storage(vcpu, err);
1658 r = RESUME_GUEST;
1659 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001660 break;
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001661 }
1662
Paul Mackerrasde56a942011-06-29 00:21:34 +00001663 /*
1664 * This occurs if the guest executes an illegal instruction.
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301665 * If the guest debug is disabled, generate a program interrupt
1666 * to the guest. If guest debug is enabled, we need to check
1667 * whether the instruction is a software breakpoint instruction.
1668 * Accordingly return to Guest or Host.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001669 */
1670 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerras4a157d62014-12-03 13:30:39 +11001671 if (vcpu->arch.emul_inst != KVM_INST_FETCH_FAILED)
1672 vcpu->arch.last_inst = kvmppc_need_byteswap(vcpu) ?
1673 swab32(vcpu->arch.emul_inst) :
1674 vcpu->arch.emul_inst;
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301675 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001676 r = kvmppc_emulate_debug_inst(vcpu);
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301677 } else {
1678 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1679 r = RESUME_GUEST;
1680 }
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001681 break;
1682 /*
1683 * This occurs if the guest (kernel or userspace), does something that
Paul Mackerras57900692017-05-16 16:41:20 +10001684 * is prohibited by HFSCR.
1685 * On POWER9, this could be a doorbell instruction that we need
1686 * to emulate.
1687 * Otherwise, we just generate a program interrupt to the guest.
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001688 */
1689 case BOOK3S_INTERRUPT_H_FAC_UNAVAIL:
Paul Mackerras57900692017-05-16 16:41:20 +10001690 r = EMULATE_FAIL;
Paul Mackerras36ee41d2018-01-30 10:51:32 +11001691 if (((vcpu->arch.hfscr >> 56) == FSCR_MSGP_LG) &&
Paul Mackerras53655dd2018-10-08 16:30:54 +11001692 cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras57900692017-05-16 16:41:20 +10001693 r = kvmppc_emulate_doorbell_instr(vcpu);
1694 if (r == EMULATE_FAIL) {
1695 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1696 r = RESUME_GUEST;
1697 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001698 break;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11001699
1700#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1701 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1702 /*
1703 * This occurs for various TM-related instructions that
1704 * we need to emulate on POWER9 DD2.2. We have already
1705 * handled the cases where the guest was in real-suspend
1706 * mode and was transitioning to transactional state.
1707 */
1708 r = kvmhv_p9_tm_emulation(vcpu);
1709 break;
1710#endif
1711
Suresh Warrierf7af5202016-08-19 15:35:52 +10001712 case BOOK3S_INTERRUPT_HV_RM_HARD:
1713 r = RESUME_PASSTHROUGH;
1714 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001715 default:
1716 kvmppc_dump_regs(vcpu);
1717 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1718 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1719 vcpu->arch.shregs.msr);
Paul Mackerrasf3271d42013-09-20 14:52:41 +10001720 run->hw.hardware_exit_reason = vcpu->arch.trap;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001721 r = RESUME_HOST;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001722 break;
1723 }
1724
Paul Mackerrasde56a942011-06-29 00:21:34 +00001725 return r;
1726}
1727
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001728static int kvmppc_handle_nested_exit(struct kvm_vcpu *vcpu)
Paul Mackerras360cae32018-10-08 16:31:04 +11001729{
1730 int r;
1731 int srcu_idx;
1732
1733 vcpu->stat.sum_exits++;
1734
1735 /*
1736 * This can happen if an interrupt occurs in the last stages
1737 * of guest entry or the first stages of guest exit (i.e. after
1738 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1739 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1740 * That can happen due to a bug, or due to a machine check
1741 * occurring at just the wrong time.
1742 */
1743 if (vcpu->arch.shregs.msr & MSR_HV) {
1744 pr_emerg("KVM trap in HV mode while nested!\n");
1745 pr_emerg("trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1746 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1747 vcpu->arch.shregs.msr);
1748 kvmppc_dump_regs(vcpu);
1749 return RESUME_HOST;
1750 }
1751 switch (vcpu->arch.trap) {
1752 /* We're good on these - the host merely wanted to get our attention */
1753 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1754 vcpu->stat.dec_exits++;
1755 r = RESUME_GUEST;
1756 break;
1757 case BOOK3S_INTERRUPT_EXTERNAL:
1758 vcpu->stat.ext_intr_exits++;
1759 r = RESUME_HOST;
1760 break;
1761 case BOOK3S_INTERRUPT_H_DOORBELL:
1762 case BOOK3S_INTERRUPT_H_VIRT:
1763 vcpu->stat.ext_intr_exits++;
1764 r = RESUME_GUEST;
1765 break;
1766 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
1767 case BOOK3S_INTERRUPT_HMI:
1768 case BOOK3S_INTERRUPT_PERFMON:
1769 case BOOK3S_INTERRUPT_SYSTEM_RESET:
1770 r = RESUME_GUEST;
1771 break;
1772 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001773 {
1774 static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,
1775 DEFAULT_RATELIMIT_BURST);
Paul Mackerras360cae32018-10-08 16:31:04 +11001776 /* Pass the machine check to the L1 guest */
1777 r = RESUME_HOST;
1778 /* Print the MCE event to host console. */
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001779 if (__ratelimit(&rs))
1780 machine_check_print_event_info(&vcpu->arch.mce_evt, false, true);
Paul Mackerras360cae32018-10-08 16:31:04 +11001781 break;
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001782 }
Paul Mackerras360cae32018-10-08 16:31:04 +11001783 /*
1784 * We get these next two if the guest accesses a page which it thinks
1785 * it has mapped but which is not actually present, either because
1786 * it is for an emulated I/O device or because the corresonding
1787 * host page has been paged out.
1788 */
1789 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
1790 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001791 r = kvmhv_nested_page_fault(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11001792 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1793 break;
1794 case BOOK3S_INTERRUPT_H_INST_STORAGE:
1795 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
1796 vcpu->arch.fault_dsisr = kvmppc_get_msr(vcpu) &
1797 DSISR_SRR1_MATCH_64S;
1798 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1799 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
1800 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001801 r = kvmhv_nested_page_fault(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11001802 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1803 break;
1804
1805#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1806 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1807 /*
1808 * This occurs for various TM-related instructions that
1809 * we need to emulate on POWER9 DD2.2. We have already
1810 * handled the cases where the guest was in real-suspend
1811 * mode and was transitioning to transactional state.
1812 */
1813 r = kvmhv_p9_tm_emulation(vcpu);
1814 break;
1815#endif
1816
1817 case BOOK3S_INTERRUPT_HV_RM_HARD:
1818 vcpu->arch.trap = 0;
1819 r = RESUME_GUEST;
Paul Mackerras03f95332019-02-04 22:07:20 +11001820 if (!xics_on_xive())
Paul Mackerras360cae32018-10-08 16:31:04 +11001821 kvmppc_xics_rm_complete(vcpu, 0);
1822 break;
Bharata B Rao53324b52021-06-21 14:20:01 +05301823 case BOOK3S_INTERRUPT_SYSCALL:
1824 {
1825 unsigned long req = kvmppc_get_gpr(vcpu, 3);
1826
1827 /*
1828 * The H_RPT_INVALIDATE hcalls issued by nested
1829 * guests for process-scoped invalidations when
1830 * GTSE=0, are handled here in L0.
1831 */
1832 if (req == H_RPT_INVALIDATE) {
1833 r = kvmppc_nested_h_rpt_invalidate(vcpu);
1834 break;
1835 }
1836
1837 r = RESUME_HOST;
1838 break;
1839 }
Paul Mackerras360cae32018-10-08 16:31:04 +11001840 default:
1841 r = RESUME_HOST;
1842 break;
1843 }
1844
1845 return r;
1846}
1847
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301848static int kvm_arch_vcpu_ioctl_get_sregs_hv(struct kvm_vcpu *vcpu,
1849 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001850{
1851 int i;
1852
Paul Mackerrasde56a942011-06-29 00:21:34 +00001853 memset(sregs, 0, sizeof(struct kvm_sregs));
Aneesh Kumar K.V87916442013-08-22 17:08:39 +05301854 sregs->pvr = vcpu->arch.pvr;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001855 for (i = 0; i < vcpu->arch.slb_max; i++) {
1856 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
1857 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1858 }
1859
1860 return 0;
1861}
1862
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301863static int kvm_arch_vcpu_ioctl_set_sregs_hv(struct kvm_vcpu *vcpu,
1864 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001865{
1866 int i, j;
1867
Paul Mackerras9333e6c2014-09-02 16:14:43 +10001868 /* Only accept the same PVR as the host's, since we can't spoof it */
1869 if (sregs->pvr != vcpu->arch.pvr)
1870 return -EINVAL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001871
1872 j = 0;
1873 for (i = 0; i < vcpu->arch.slb_nr; i++) {
1874 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
1875 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
1876 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
1877 ++j;
1878 }
1879 }
1880 vcpu->arch.slb_max = j;
1881
1882 return 0;
1883}
1884
Nicholas Piggin67145ef2021-04-12 11:48:36 +10001885/*
1886 * Enforce limits on guest LPCR values based on hardware availability,
1887 * guest configuration, and possibly hypervisor support and security
1888 * concerns.
1889 */
1890unsigned long kvmppc_filter_lpcr_hv(struct kvm *kvm, unsigned long lpcr)
1891{
Nicholas Piggin72c15282021-04-12 11:48:38 +10001892 /* LPCR_TC only applies to HPT guests */
1893 if (kvm_is_radix(kvm))
1894 lpcr &= ~LPCR_TC;
1895
Nicholas Piggin67145ef2021-04-12 11:48:36 +10001896 /* On POWER8 and above, userspace can modify AIL */
1897 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
1898 lpcr &= ~LPCR_AIL;
Nicholas Pigginbcc92a02021-04-12 11:48:37 +10001899 if ((lpcr & LPCR_AIL) != LPCR_AIL_3)
1900 lpcr &= ~LPCR_AIL; /* LPCR[AIL]=1/2 is disallowed */
Nicholas Piggin2e1ae9cd2021-05-28 19:07:41 +10001901 /*
1902 * On some POWER9s we force AIL off for radix guests to prevent
1903 * executing in MSR[HV]=1 mode with the MMU enabled and PIDR set to
1904 * guest, which can result in Q0 translations with LPID=0 PID=PIDR to
1905 * be cached, which the host TLB management does not expect.
1906 */
1907 if (kvm_is_radix(kvm) && cpu_has_feature(CPU_FTR_P9_RADIX_PREFETCH_BUG))
1908 lpcr &= ~LPCR_AIL;
Nicholas Piggin67145ef2021-04-12 11:48:36 +10001909
1910 /*
1911 * On POWER9, allow userspace to enable large decrementer for the
1912 * guest, whether or not the host has it enabled.
1913 */
1914 if (!cpu_has_feature(CPU_FTR_ARCH_300))
1915 lpcr &= ~LPCR_LD;
1916
1917 return lpcr;
1918}
1919
1920static void verify_lpcr(struct kvm *kvm, unsigned long lpcr)
1921{
1922 if (lpcr != kvmppc_filter_lpcr_hv(kvm, lpcr)) {
1923 WARN_ONCE(1, "lpcr 0x%lx differs from filtered 0x%lx\n",
1924 lpcr, kvmppc_filter_lpcr_hv(kvm, lpcr));
1925 }
1926}
1927
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001928static void kvmppc_set_lpcr(struct kvm_vcpu *vcpu, u64 new_lpcr,
1929 bool preserve_top32)
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001930{
Paul Mackerras8f902b02015-03-20 20:39:38 +11001931 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001932 struct kvmppc_vcore *vc = vcpu->arch.vcore;
1933 u64 mask;
1934
1935 spin_lock(&vc->lock);
Nicholas Piggin67145ef2021-04-12 11:48:36 +10001936
1937 /*
1938 * Userspace can only modify
1939 * DPFD (default prefetch depth), ILE (interrupt little-endian),
1940 * TC (translation control), AIL (alternate interrupt location),
1941 * LD (large decrementer).
1942 * These are subject to restrictions from kvmppc_filter_lcpr_hv().
1943 */
1944 mask = LPCR_DPFD | LPCR_ILE | LPCR_TC | LPCR_AIL | LPCR_LD;
1945
1946 /* Broken 32-bit version of LPCR must not clear top bits */
1947 if (preserve_top32)
1948 mask &= 0xFFFFFFFF;
1949
1950 new_lpcr = kvmppc_filter_lpcr_hv(kvm,
1951 (vc->lpcr & ~mask) | (new_lpcr & mask));
1952
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001953 /*
Anton Blanchardd6829162014-01-08 21:25:30 +11001954 * If ILE (interrupt little-endian) has changed, update the
1955 * MSR_LE bit in the intr_msr for each vcpu in this vcore.
1956 */
1957 if ((new_lpcr & LPCR_ILE) != (vc->lpcr & LPCR_ILE)) {
Anton Blanchardd6829162014-01-08 21:25:30 +11001958 struct kvm_vcpu *vcpu;
1959 int i;
1960
Anton Blanchardd6829162014-01-08 21:25:30 +11001961 kvm_for_each_vcpu(i, vcpu, kvm) {
1962 if (vcpu->arch.vcore != vc)
1963 continue;
1964 if (new_lpcr & LPCR_ILE)
1965 vcpu->arch.intr_msr |= MSR_LE;
1966 else
1967 vcpu->arch.intr_msr &= ~MSR_LE;
1968 }
Anton Blanchardd6829162014-01-08 21:25:30 +11001969 }
1970
Nicholas Piggin67145ef2021-04-12 11:48:36 +10001971 vc->lpcr = new_lpcr;
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001972
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001973 spin_unlock(&vc->lock);
1974}
1975
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301976static int kvmppc_get_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1977 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001978{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001979 int r = 0;
1980 long int i;
Paul Mackerras31f34382011-12-12 12:26:50 +00001981
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001982 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301983 case KVM_REG_PPC_DEBUG_INST:
1984 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1985 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001986 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001987 *val = get_reg_val(id, 0);
1988 break;
1989 case KVM_REG_PPC_DABR:
1990 *val = get_reg_val(id, vcpu->arch.dabr);
1991 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001992 case KVM_REG_PPC_DABRX:
1993 *val = get_reg_val(id, vcpu->arch.dabrx);
1994 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001995 case KVM_REG_PPC_DSCR:
1996 *val = get_reg_val(id, vcpu->arch.dscr);
1997 break;
1998 case KVM_REG_PPC_PURR:
1999 *val = get_reg_val(id, vcpu->arch.purr);
2000 break;
2001 case KVM_REG_PPC_SPURR:
2002 *val = get_reg_val(id, vcpu->arch.spurr);
2003 break;
2004 case KVM_REG_PPC_AMR:
2005 *val = get_reg_val(id, vcpu->arch.amr);
2006 break;
2007 case KVM_REG_PPC_UAMOR:
2008 *val = get_reg_val(id, vcpu->arch.uamor);
2009 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04002010 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCR1:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002011 i = id - KVM_REG_PPC_MMCR0;
2012 *val = get_reg_val(id, vcpu->arch.mmcr[i]);
2013 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04002014 case KVM_REG_PPC_MMCR2:
2015 *val = get_reg_val(id, vcpu->arch.mmcr[2]);
2016 break;
2017 case KVM_REG_PPC_MMCRA:
2018 *val = get_reg_val(id, vcpu->arch.mmcra);
2019 break;
2020 case KVM_REG_PPC_MMCRS:
2021 *val = get_reg_val(id, vcpu->arch.mmcrs);
2022 break;
Athira Rajeev5752fe02020-07-17 10:38:17 -04002023 case KVM_REG_PPC_MMCR3:
2024 *val = get_reg_val(id, vcpu->arch.mmcr[3]);
2025 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002026 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
2027 i = id - KVM_REG_PPC_PMC1;
2028 *val = get_reg_val(id, vcpu->arch.pmc[i]);
Paul Mackerras31f34382011-12-12 12:26:50 +00002029 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002030 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
2031 i = id - KVM_REG_PPC_SPMC1;
2032 *val = get_reg_val(id, vcpu->arch.spmc[i]);
2033 break;
Paul Mackerras14941782013-09-06 13:11:18 +10002034 case KVM_REG_PPC_SIAR:
2035 *val = get_reg_val(id, vcpu->arch.siar);
2036 break;
2037 case KVM_REG_PPC_SDAR:
2038 *val = get_reg_val(id, vcpu->arch.sdar);
2039 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002040 case KVM_REG_PPC_SIER:
Athira Rajeev5752fe02020-07-17 10:38:17 -04002041 *val = get_reg_val(id, vcpu->arch.sier[0]);
2042 break;
2043 case KVM_REG_PPC_SIER2:
2044 *val = get_reg_val(id, vcpu->arch.sier[1]);
2045 break;
2046 case KVM_REG_PPC_SIER3:
2047 *val = get_reg_val(id, vcpu->arch.sier[2]);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00002048 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002049 case KVM_REG_PPC_IAMR:
2050 *val = get_reg_val(id, vcpu->arch.iamr);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00002051 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002052 case KVM_REG_PPC_PSPB:
2053 *val = get_reg_val(id, vcpu->arch.pspb);
2054 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002055 case KVM_REG_PPC_DPDES:
Paul Mackerrasff42df42019-08-27 11:35:40 +10002056 /*
2057 * On POWER9, where we are emulating msgsndp etc.,
2058 * we return 1 bit for each vcpu, which can come from
2059 * either vcore->dpdes or doorbell_request.
2060 * On POWER8, doorbell_request is 0.
2061 */
2062 *val = get_reg_val(id, vcpu->arch.vcore->dpdes |
2063 vcpu->arch.doorbell_request);
Michael Neulingb005255e2014-01-08 21:25:21 +11002064 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10002065 case KVM_REG_PPC_VTB:
2066 *val = get_reg_val(id, vcpu->arch.vcore->vtb);
2067 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002068 case KVM_REG_PPC_DAWR:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05302069 *val = get_reg_val(id, vcpu->arch.dawr0);
Michael Neulingb005255e2014-01-08 21:25:21 +11002070 break;
2071 case KVM_REG_PPC_DAWRX:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05302072 *val = get_reg_val(id, vcpu->arch.dawrx0);
Michael Neulingb005255e2014-01-08 21:25:21 +11002073 break;
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +05302074 case KVM_REG_PPC_DAWR1:
2075 *val = get_reg_val(id, vcpu->arch.dawr1);
2076 break;
2077 case KVM_REG_PPC_DAWRX1:
2078 *val = get_reg_val(id, vcpu->arch.dawrx1);
2079 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002080 case KVM_REG_PPC_CIABR:
2081 *val = get_reg_val(id, vcpu->arch.ciabr);
2082 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002083 case KVM_REG_PPC_CSIGR:
2084 *val = get_reg_val(id, vcpu->arch.csigr);
2085 break;
2086 case KVM_REG_PPC_TACR:
2087 *val = get_reg_val(id, vcpu->arch.tacr);
2088 break;
2089 case KVM_REG_PPC_TCSCR:
2090 *val = get_reg_val(id, vcpu->arch.tcscr);
2091 break;
2092 case KVM_REG_PPC_PID:
2093 *val = get_reg_val(id, vcpu->arch.pid);
2094 break;
2095 case KVM_REG_PPC_ACOP:
2096 *val = get_reg_val(id, vcpu->arch.acop);
2097 break;
2098 case KVM_REG_PPC_WORT:
2099 *val = get_reg_val(id, vcpu->arch.wort);
2100 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11002101 case KVM_REG_PPC_TIDR:
2102 *val = get_reg_val(id, vcpu->arch.tid);
2103 break;
2104 case KVM_REG_PPC_PSSCR:
2105 *val = get_reg_val(id, vcpu->arch.psscr);
2106 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00002107 case KVM_REG_PPC_VPA_ADDR:
2108 spin_lock(&vcpu->arch.vpa_update_lock);
2109 *val = get_reg_val(id, vcpu->arch.vpa.next_gpa);
2110 spin_unlock(&vcpu->arch.vpa_update_lock);
2111 break;
2112 case KVM_REG_PPC_VPA_SLB:
2113 spin_lock(&vcpu->arch.vpa_update_lock);
2114 val->vpaval.addr = vcpu->arch.slb_shadow.next_gpa;
2115 val->vpaval.length = vcpu->arch.slb_shadow.len;
2116 spin_unlock(&vcpu->arch.vpa_update_lock);
2117 break;
2118 case KVM_REG_PPC_VPA_DTL:
2119 spin_lock(&vcpu->arch.vpa_update_lock);
2120 val->vpaval.addr = vcpu->arch.dtl.next_gpa;
2121 val->vpaval.length = vcpu->arch.dtl.len;
2122 spin_unlock(&vcpu->arch.vpa_update_lock);
2123 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10002124 case KVM_REG_PPC_TB_OFFSET:
2125 *val = get_reg_val(id, vcpu->arch.vcore->tb_offset);
2126 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002127 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10002128 case KVM_REG_PPC_LPCR_64:
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002129 *val = get_reg_val(id, vcpu->arch.vcore->lpcr);
2130 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10002131 case KVM_REG_PPC_PPR:
2132 *val = get_reg_val(id, vcpu->arch.ppr);
2133 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002134#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
2135 case KVM_REG_PPC_TFHAR:
2136 *val = get_reg_val(id, vcpu->arch.tfhar);
2137 break;
2138 case KVM_REG_PPC_TFIAR:
2139 *val = get_reg_val(id, vcpu->arch.tfiar);
2140 break;
2141 case KVM_REG_PPC_TEXASR:
2142 *val = get_reg_val(id, vcpu->arch.texasr);
2143 break;
2144 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
2145 i = id - KVM_REG_PPC_TM_GPR0;
2146 *val = get_reg_val(id, vcpu->arch.gpr_tm[i]);
2147 break;
2148 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
2149 {
2150 int j;
2151 i = id - KVM_REG_PPC_TM_VSR0;
2152 if (i < 32)
2153 for (j = 0; j < TS_FPRWIDTH; j++)
2154 val->vsxval[j] = vcpu->arch.fp_tm.fpr[i][j];
2155 else {
2156 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2157 val->vval = vcpu->arch.vr_tm.vr[i-32];
2158 else
2159 r = -ENXIO;
2160 }
2161 break;
2162 }
2163 case KVM_REG_PPC_TM_CR:
2164 *val = get_reg_val(id, vcpu->arch.cr_tm);
2165 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11002166 case KVM_REG_PPC_TM_XER:
2167 *val = get_reg_val(id, vcpu->arch.xer_tm);
2168 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002169 case KVM_REG_PPC_TM_LR:
2170 *val = get_reg_val(id, vcpu->arch.lr_tm);
2171 break;
2172 case KVM_REG_PPC_TM_CTR:
2173 *val = get_reg_val(id, vcpu->arch.ctr_tm);
2174 break;
2175 case KVM_REG_PPC_TM_FPSCR:
2176 *val = get_reg_val(id, vcpu->arch.fp_tm.fpscr);
2177 break;
2178 case KVM_REG_PPC_TM_AMR:
2179 *val = get_reg_val(id, vcpu->arch.amr_tm);
2180 break;
2181 case KVM_REG_PPC_TM_PPR:
2182 *val = get_reg_val(id, vcpu->arch.ppr_tm);
2183 break;
2184 case KVM_REG_PPC_TM_VRSAVE:
2185 *val = get_reg_val(id, vcpu->arch.vrsave_tm);
2186 break;
2187 case KVM_REG_PPC_TM_VSCR:
2188 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2189 *val = get_reg_val(id, vcpu->arch.vr_tm.vscr.u[3]);
2190 else
2191 r = -ENXIO;
2192 break;
2193 case KVM_REG_PPC_TM_DSCR:
2194 *val = get_reg_val(id, vcpu->arch.dscr_tm);
2195 break;
2196 case KVM_REG_PPC_TM_TAR:
2197 *val = get_reg_val(id, vcpu->arch.tar_tm);
2198 break;
2199#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10002200 case KVM_REG_PPC_ARCH_COMPAT:
2201 *val = get_reg_val(id, vcpu->arch.vcore->arch_compat);
2202 break;
Paul Mackerras58555642018-01-12 20:55:20 +11002203 case KVM_REG_PPC_DEC_EXPIRY:
2204 *val = get_reg_val(id, vcpu->arch.dec_expires +
2205 vcpu->arch.vcore->tb_offset);
2206 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002207 case KVM_REG_PPC_ONLINE:
2208 *val = get_reg_val(id, vcpu->arch.online);
2209 break;
Paul Mackerras30323412018-10-08 16:31:13 +11002210 case KVM_REG_PPC_PTCR:
2211 *val = get_reg_val(id, vcpu->kvm->arch.l1_ptcr);
2212 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00002213 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002214 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00002215 break;
2216 }
2217
2218 return r;
2219}
2220
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302221static int kvmppc_set_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
2222 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00002223{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002224 int r = 0;
2225 long int i;
Paul Mackerras55b665b2012-09-25 20:33:06 +00002226 unsigned long addr, len;
Paul Mackerras31f34382011-12-12 12:26:50 +00002227
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002228 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00002229 case KVM_REG_PPC_HIOR:
Paul Mackerras31f34382011-12-12 12:26:50 +00002230 /* Only allow this to be set to zero */
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002231 if (set_reg_val(id, *val))
Paul Mackerras31f34382011-12-12 12:26:50 +00002232 r = -EINVAL;
2233 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002234 case KVM_REG_PPC_DABR:
2235 vcpu->arch.dabr = set_reg_val(id, *val);
2236 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11002237 case KVM_REG_PPC_DABRX:
2238 vcpu->arch.dabrx = set_reg_val(id, *val) & ~DABRX_HYP;
2239 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002240 case KVM_REG_PPC_DSCR:
2241 vcpu->arch.dscr = set_reg_val(id, *val);
2242 break;
2243 case KVM_REG_PPC_PURR:
2244 vcpu->arch.purr = set_reg_val(id, *val);
2245 break;
2246 case KVM_REG_PPC_SPURR:
2247 vcpu->arch.spurr = set_reg_val(id, *val);
2248 break;
2249 case KVM_REG_PPC_AMR:
2250 vcpu->arch.amr = set_reg_val(id, *val);
2251 break;
2252 case KVM_REG_PPC_UAMOR:
2253 vcpu->arch.uamor = set_reg_val(id, *val);
2254 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04002255 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCR1:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002256 i = id - KVM_REG_PPC_MMCR0;
2257 vcpu->arch.mmcr[i] = set_reg_val(id, *val);
2258 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04002259 case KVM_REG_PPC_MMCR2:
2260 vcpu->arch.mmcr[2] = set_reg_val(id, *val);
2261 break;
2262 case KVM_REG_PPC_MMCRA:
2263 vcpu->arch.mmcra = set_reg_val(id, *val);
2264 break;
2265 case KVM_REG_PPC_MMCRS:
2266 vcpu->arch.mmcrs = set_reg_val(id, *val);
2267 break;
Athira Rajeev5752fe02020-07-17 10:38:17 -04002268 case KVM_REG_PPC_MMCR3:
2269 *val = get_reg_val(id, vcpu->arch.mmcr[3]);
2270 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002271 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
2272 i = id - KVM_REG_PPC_PMC1;
2273 vcpu->arch.pmc[i] = set_reg_val(id, *val);
2274 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002275 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
2276 i = id - KVM_REG_PPC_SPMC1;
2277 vcpu->arch.spmc[i] = set_reg_val(id, *val);
2278 break;
Paul Mackerras14941782013-09-06 13:11:18 +10002279 case KVM_REG_PPC_SIAR:
2280 vcpu->arch.siar = set_reg_val(id, *val);
2281 break;
2282 case KVM_REG_PPC_SDAR:
2283 vcpu->arch.sdar = set_reg_val(id, *val);
2284 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002285 case KVM_REG_PPC_SIER:
Athira Rajeev5752fe02020-07-17 10:38:17 -04002286 vcpu->arch.sier[0] = set_reg_val(id, *val);
2287 break;
2288 case KVM_REG_PPC_SIER2:
2289 vcpu->arch.sier[1] = set_reg_val(id, *val);
2290 break;
2291 case KVM_REG_PPC_SIER3:
2292 vcpu->arch.sier[2] = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00002293 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002294 case KVM_REG_PPC_IAMR:
2295 vcpu->arch.iamr = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00002296 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002297 case KVM_REG_PPC_PSPB:
2298 vcpu->arch.pspb = set_reg_val(id, *val);
2299 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002300 case KVM_REG_PPC_DPDES:
2301 vcpu->arch.vcore->dpdes = set_reg_val(id, *val);
2302 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10002303 case KVM_REG_PPC_VTB:
2304 vcpu->arch.vcore->vtb = set_reg_val(id, *val);
2305 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002306 case KVM_REG_PPC_DAWR:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05302307 vcpu->arch.dawr0 = set_reg_val(id, *val);
Michael Neulingb005255e2014-01-08 21:25:21 +11002308 break;
2309 case KVM_REG_PPC_DAWRX:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05302310 vcpu->arch.dawrx0 = set_reg_val(id, *val) & ~DAWRX_HYP;
Michael Neulingb005255e2014-01-08 21:25:21 +11002311 break;
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +05302312 case KVM_REG_PPC_DAWR1:
2313 vcpu->arch.dawr1 = set_reg_val(id, *val);
2314 break;
2315 case KVM_REG_PPC_DAWRX1:
2316 vcpu->arch.dawrx1 = set_reg_val(id, *val) & ~DAWRX_HYP;
2317 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002318 case KVM_REG_PPC_CIABR:
2319 vcpu->arch.ciabr = set_reg_val(id, *val);
2320 /* Don't allow setting breakpoints in hypervisor code */
2321 if ((vcpu->arch.ciabr & CIABR_PRIV) == CIABR_PRIV_HYPER)
2322 vcpu->arch.ciabr &= ~CIABR_PRIV; /* disable */
2323 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002324 case KVM_REG_PPC_CSIGR:
2325 vcpu->arch.csigr = set_reg_val(id, *val);
2326 break;
2327 case KVM_REG_PPC_TACR:
2328 vcpu->arch.tacr = set_reg_val(id, *val);
2329 break;
2330 case KVM_REG_PPC_TCSCR:
2331 vcpu->arch.tcscr = set_reg_val(id, *val);
2332 break;
2333 case KVM_REG_PPC_PID:
2334 vcpu->arch.pid = set_reg_val(id, *val);
2335 break;
2336 case KVM_REG_PPC_ACOP:
2337 vcpu->arch.acop = set_reg_val(id, *val);
2338 break;
2339 case KVM_REG_PPC_WORT:
2340 vcpu->arch.wort = set_reg_val(id, *val);
2341 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11002342 case KVM_REG_PPC_TIDR:
2343 vcpu->arch.tid = set_reg_val(id, *val);
2344 break;
2345 case KVM_REG_PPC_PSSCR:
2346 vcpu->arch.psscr = set_reg_val(id, *val) & PSSCR_GUEST_VIS;
2347 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00002348 case KVM_REG_PPC_VPA_ADDR:
2349 addr = set_reg_val(id, *val);
2350 r = -EINVAL;
2351 if (!addr && (vcpu->arch.slb_shadow.next_gpa ||
2352 vcpu->arch.dtl.next_gpa))
2353 break;
2354 r = set_vpa(vcpu, &vcpu->arch.vpa, addr, sizeof(struct lppaca));
2355 break;
2356 case KVM_REG_PPC_VPA_SLB:
2357 addr = val->vpaval.addr;
2358 len = val->vpaval.length;
2359 r = -EINVAL;
2360 if (addr && !vcpu->arch.vpa.next_gpa)
2361 break;
2362 r = set_vpa(vcpu, &vcpu->arch.slb_shadow, addr, len);
2363 break;
2364 case KVM_REG_PPC_VPA_DTL:
2365 addr = val->vpaval.addr;
2366 len = val->vpaval.length;
2367 r = -EINVAL;
Paul Mackerras9f8c8c72012-10-15 01:18:37 +00002368 if (addr && (len < sizeof(struct dtl_entry) ||
2369 !vcpu->arch.vpa.next_gpa))
Paul Mackerras55b665b2012-09-25 20:33:06 +00002370 break;
2371 len -= len % sizeof(struct dtl_entry);
2372 r = set_vpa(vcpu, &vcpu->arch.dtl, addr, len);
2373 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10002374 case KVM_REG_PPC_TB_OFFSET:
2375 /* round up to multiple of 2^24 */
2376 vcpu->arch.vcore->tb_offset =
2377 ALIGN(set_reg_val(id, *val), 1UL << 24);
2378 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002379 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10002380 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), true);
2381 break;
2382 case KVM_REG_PPC_LPCR_64:
2383 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), false);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002384 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10002385 case KVM_REG_PPC_PPR:
2386 vcpu->arch.ppr = set_reg_val(id, *val);
2387 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002388#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
2389 case KVM_REG_PPC_TFHAR:
2390 vcpu->arch.tfhar = set_reg_val(id, *val);
2391 break;
2392 case KVM_REG_PPC_TFIAR:
2393 vcpu->arch.tfiar = set_reg_val(id, *val);
2394 break;
2395 case KVM_REG_PPC_TEXASR:
2396 vcpu->arch.texasr = set_reg_val(id, *val);
2397 break;
2398 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
2399 i = id - KVM_REG_PPC_TM_GPR0;
2400 vcpu->arch.gpr_tm[i] = set_reg_val(id, *val);
2401 break;
2402 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
2403 {
2404 int j;
2405 i = id - KVM_REG_PPC_TM_VSR0;
2406 if (i < 32)
2407 for (j = 0; j < TS_FPRWIDTH; j++)
2408 vcpu->arch.fp_tm.fpr[i][j] = val->vsxval[j];
2409 else
2410 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2411 vcpu->arch.vr_tm.vr[i-32] = val->vval;
2412 else
2413 r = -ENXIO;
2414 break;
2415 }
2416 case KVM_REG_PPC_TM_CR:
2417 vcpu->arch.cr_tm = set_reg_val(id, *val);
2418 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11002419 case KVM_REG_PPC_TM_XER:
2420 vcpu->arch.xer_tm = set_reg_val(id, *val);
2421 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002422 case KVM_REG_PPC_TM_LR:
2423 vcpu->arch.lr_tm = set_reg_val(id, *val);
2424 break;
2425 case KVM_REG_PPC_TM_CTR:
2426 vcpu->arch.ctr_tm = set_reg_val(id, *val);
2427 break;
2428 case KVM_REG_PPC_TM_FPSCR:
2429 vcpu->arch.fp_tm.fpscr = set_reg_val(id, *val);
2430 break;
2431 case KVM_REG_PPC_TM_AMR:
2432 vcpu->arch.amr_tm = set_reg_val(id, *val);
2433 break;
2434 case KVM_REG_PPC_TM_PPR:
2435 vcpu->arch.ppr_tm = set_reg_val(id, *val);
2436 break;
2437 case KVM_REG_PPC_TM_VRSAVE:
2438 vcpu->arch.vrsave_tm = set_reg_val(id, *val);
2439 break;
2440 case KVM_REG_PPC_TM_VSCR:
2441 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2442 vcpu->arch.vr.vscr.u[3] = set_reg_val(id, *val);
2443 else
2444 r = - ENXIO;
2445 break;
2446 case KVM_REG_PPC_TM_DSCR:
2447 vcpu->arch.dscr_tm = set_reg_val(id, *val);
2448 break;
2449 case KVM_REG_PPC_TM_TAR:
2450 vcpu->arch.tar_tm = set_reg_val(id, *val);
2451 break;
2452#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10002453 case KVM_REG_PPC_ARCH_COMPAT:
2454 r = kvmppc_set_arch_compat(vcpu, set_reg_val(id, *val));
2455 break;
Paul Mackerras58555642018-01-12 20:55:20 +11002456 case KVM_REG_PPC_DEC_EXPIRY:
2457 vcpu->arch.dec_expires = set_reg_val(id, *val) -
2458 vcpu->arch.vcore->tb_offset;
2459 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002460 case KVM_REG_PPC_ONLINE:
Paul Mackerras7aa15842018-04-20 19:53:22 +10002461 i = set_reg_val(id, *val);
2462 if (i && !vcpu->arch.online)
2463 atomic_inc(&vcpu->arch.vcore->online_count);
2464 else if (!i && vcpu->arch.online)
2465 atomic_dec(&vcpu->arch.vcore->online_count);
2466 vcpu->arch.online = i;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002467 break;
Paul Mackerras30323412018-10-08 16:31:13 +11002468 case KVM_REG_PPC_PTCR:
2469 vcpu->kvm->arch.l1_ptcr = set_reg_val(id, *val);
2470 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00002471 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002472 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00002473 break;
2474 }
2475
2476 return r;
2477}
2478
Paul Mackerras45c940b2016-11-18 17:43:30 +11002479/*
2480 * On POWER9, threads are independent and can be in different partitions.
2481 * Therefore we consider each thread to be a subcore.
2482 * There is a restriction that all threads have to be in the same
2483 * MMU mode (radix or HPT), unfortunately, but since we only support
2484 * HPT guests on a HPT host so far, that isn't an impediment yet.
2485 */
Paul Mackerras516f7892017-10-16 16:11:57 +11002486static int threads_per_vcore(struct kvm *kvm)
Paul Mackerras45c940b2016-11-18 17:43:30 +11002487{
Nicholas Pigginaaae8c72021-05-28 19:07:42 +10002488 if (cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras45c940b2016-11-18 17:43:30 +11002489 return 1;
2490 return threads_per_subcore;
2491}
2492
Sam Bobroff1e175d22018-07-25 16:12:02 +10002493static struct kvmppc_vcore *kvmppc_vcore_create(struct kvm *kvm, int id)
Stewart Smithde9bdd12014-07-18 14:18:42 +10002494{
2495 struct kvmppc_vcore *vcore;
2496
2497 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
2498
2499 if (vcore == NULL)
2500 return NULL;
2501
Stewart Smithde9bdd12014-07-18 14:18:42 +10002502 spin_lock_init(&vcore->lock);
Paul Mackerras2711e242014-12-04 16:43:28 +11002503 spin_lock_init(&vcore->stoltb_lock);
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07002504 rcuwait_init(&vcore->wait);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002505 vcore->preempt_tb = TB_NIL;
2506 vcore->lpcr = kvm->arch.lpcr;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002507 vcore->first_vcpuid = id;
Stewart Smithde9bdd12014-07-18 14:18:42 +10002508 vcore->kvm = kvm;
Paul Mackerrasec257162015-06-24 21:18:03 +10002509 INIT_LIST_HEAD(&vcore->preempt_list);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002510
2511 return vcore;
2512}
2513
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002514#ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
2515static struct debugfs_timings_element {
2516 const char *name;
2517 size_t offset;
2518} timings[] = {
2519 {"rm_entry", offsetof(struct kvm_vcpu, arch.rm_entry)},
2520 {"rm_intr", offsetof(struct kvm_vcpu, arch.rm_intr)},
2521 {"rm_exit", offsetof(struct kvm_vcpu, arch.rm_exit)},
2522 {"guest", offsetof(struct kvm_vcpu, arch.guest_time)},
2523 {"cede", offsetof(struct kvm_vcpu, arch.cede_time)},
2524};
2525
Thomas Meyer4bb817ed2017-09-03 14:19:31 +02002526#define N_TIMINGS (ARRAY_SIZE(timings))
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002527
2528struct debugfs_timings_state {
2529 struct kvm_vcpu *vcpu;
2530 unsigned int buflen;
2531 char buf[N_TIMINGS * 100];
2532};
2533
2534static int debugfs_timings_open(struct inode *inode, struct file *file)
2535{
2536 struct kvm_vcpu *vcpu = inode->i_private;
2537 struct debugfs_timings_state *p;
2538
2539 p = kzalloc(sizeof(*p), GFP_KERNEL);
2540 if (!p)
2541 return -ENOMEM;
2542
2543 kvm_get_kvm(vcpu->kvm);
2544 p->vcpu = vcpu;
2545 file->private_data = p;
2546
2547 return nonseekable_open(inode, file);
2548}
2549
2550static int debugfs_timings_release(struct inode *inode, struct file *file)
2551{
2552 struct debugfs_timings_state *p = file->private_data;
2553
2554 kvm_put_kvm(p->vcpu->kvm);
2555 kfree(p);
2556 return 0;
2557}
2558
2559static ssize_t debugfs_timings_read(struct file *file, char __user *buf,
2560 size_t len, loff_t *ppos)
2561{
2562 struct debugfs_timings_state *p = file->private_data;
2563 struct kvm_vcpu *vcpu = p->vcpu;
2564 char *s, *buf_end;
2565 struct kvmhv_tb_accumulator tb;
2566 u64 count;
2567 loff_t pos;
2568 ssize_t n;
2569 int i, loops;
2570 bool ok;
2571
2572 if (!p->buflen) {
2573 s = p->buf;
2574 buf_end = s + sizeof(p->buf);
2575 for (i = 0; i < N_TIMINGS; ++i) {
2576 struct kvmhv_tb_accumulator *acc;
2577
2578 acc = (struct kvmhv_tb_accumulator *)
2579 ((unsigned long)vcpu + timings[i].offset);
2580 ok = false;
2581 for (loops = 0; loops < 1000; ++loops) {
2582 count = acc->seqcount;
2583 if (!(count & 1)) {
2584 smp_rmb();
2585 tb = *acc;
2586 smp_rmb();
2587 if (count == acc->seqcount) {
2588 ok = true;
2589 break;
2590 }
2591 }
2592 udelay(1);
2593 }
2594 if (!ok)
2595 snprintf(s, buf_end - s, "%s: stuck\n",
2596 timings[i].name);
2597 else
2598 snprintf(s, buf_end - s,
2599 "%s: %llu %llu %llu %llu\n",
2600 timings[i].name, count / 2,
2601 tb_to_ns(tb.tb_total),
2602 tb_to_ns(tb.tb_min),
2603 tb_to_ns(tb.tb_max));
2604 s += strlen(s);
2605 }
2606 p->buflen = s - p->buf;
2607 }
2608
2609 pos = *ppos;
2610 if (pos >= p->buflen)
2611 return 0;
2612 if (len > p->buflen - pos)
2613 len = p->buflen - pos;
2614 n = copy_to_user(buf, p->buf + pos, len);
2615 if (n) {
2616 if (n == len)
2617 return -EFAULT;
2618 len -= n;
2619 }
2620 *ppos = pos + len;
2621 return len;
2622}
2623
2624static ssize_t debugfs_timings_write(struct file *file, const char __user *buf,
2625 size_t len, loff_t *ppos)
2626{
2627 return -EACCES;
2628}
2629
2630static const struct file_operations debugfs_timings_ops = {
2631 .owner = THIS_MODULE,
2632 .open = debugfs_timings_open,
2633 .release = debugfs_timings_release,
2634 .read = debugfs_timings_read,
2635 .write = debugfs_timings_write,
2636 .llseek = generic_file_llseek,
2637};
2638
2639/* Create a debugfs directory for the vcpu */
2640static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2641{
2642 char buf[16];
2643 struct kvm *kvm = vcpu->kvm;
2644
2645 snprintf(buf, sizeof(buf), "vcpu%u", id);
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002646 vcpu->arch.debugfs_dir = debugfs_create_dir(buf, kvm->arch.debugfs_dir);
Greg Kroah-Hartmanc4fd5272020-02-09 11:58:57 +01002647 debugfs_create_file("timings", 0444, vcpu->arch.debugfs_dir, vcpu,
2648 &debugfs_timings_ops);
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002649}
2650
2651#else /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2652static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2653{
2654}
2655#endif /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2656
Sean Christophersonff030fd2019-12-18 13:55:00 -08002657static int kvmppc_core_vcpu_create_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002658{
Paul Mackerras3c313522017-02-06 13:24:41 +11002659 int err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002660 int core;
2661 struct kvmppc_vcore *vcore;
Sean Christophersonff030fd2019-12-18 13:55:00 -08002662 struct kvm *kvm;
2663 unsigned int id;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002664
Sean Christophersonff030fd2019-12-18 13:55:00 -08002665 kvm = vcpu->kvm;
2666 id = vcpu->vcpu_id;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002667
2668 vcpu->arch.shared = &vcpu->arch.shregs;
Alexander Graf5deb8e72014-04-24 13:46:24 +02002669#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2670 /*
2671 * The shared struct is never shared on HV,
2672 * so we can always use host endianness
2673 */
2674#ifdef __BIG_ENDIAN__
2675 vcpu->arch.shared_big_endian = true;
2676#else
2677 vcpu->arch.shared_big_endian = false;
2678#endif
2679#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +00002680 vcpu->arch.mmcr[0] = MMCR0_FC;
2681 vcpu->arch.ctrl = CTRL_RUNLATCH;
2682 /* default to host PVR, since we can't spoof it */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302683 kvmppc_set_pvr_hv(vcpu, mfspr(SPRN_PVR));
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002684 spin_lock_init(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002685 spin_lock_init(&vcpu->arch.tbacct_lock);
2686 vcpu->arch.busy_preempt = TB_NIL;
Anton Blanchardd6829162014-01-08 21:25:30 +11002687 vcpu->arch.intr_msr = MSR_SF | MSR_ME;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002688
Paul Mackerras769377f2017-02-15 14:30:17 +11002689 /*
2690 * Set the default HFSCR for the guest from the host value.
2691 * This value is only used on POWER9.
Paul Mackerras57900692017-05-16 16:41:20 +10002692 * On POWER9, we want to virtualize the doorbell facility, so we
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002693 * don't set the HFSCR_MSGP bit, and that causes those instructions
2694 * to trap and then we emulate them.
Paul Mackerras769377f2017-02-15 14:30:17 +11002695 */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002696 vcpu->arch.hfscr = HFSCR_TAR | HFSCR_EBB | HFSCR_PM | HFSCR_BHRB |
Alistair Popple4cb4ade2020-06-02 15:53:25 +10002697 HFSCR_DSCR | HFSCR_VECVSX | HFSCR_FP | HFSCR_PREFIX;
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002698 if (cpu_has_feature(CPU_FTR_HVMODE)) {
2699 vcpu->arch.hfscr &= mfspr(SPRN_HFSCR);
2700 if (cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
2701 vcpu->arch.hfscr |= HFSCR_TM;
2702 }
2703 if (cpu_has_feature(CPU_FTR_TM_COMP))
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002704 vcpu->arch.hfscr |= HFSCR_TM;
Paul Mackerras769377f2017-02-15 14:30:17 +11002705
Paul Mackerrasde56a942011-06-29 00:21:34 +00002706 kvmppc_mmu_book3s_hv_init(vcpu);
2707
Paul Mackerras8455d792012-10-15 01:17:42 +00002708 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002709
2710 init_waitqueue_head(&vcpu->arch.cpu_run);
2711
2712 mutex_lock(&kvm->lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002713 vcore = NULL;
2714 err = -EINVAL;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002715 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasb5c6f762018-07-26 15:38:41 +10002716 if (id >= (KVM_MAX_VCPUS * kvm->arch.emul_smt_mode)) {
2717 pr_devel("KVM: VCPU ID too high\n");
2718 core = KVM_MAX_VCORES;
2719 } else {
2720 BUG_ON(kvm->arch.smt_mode != 1);
2721 core = kvmppc_pack_vcpu_id(kvm, id);
2722 }
Sam Bobroff1e175d22018-07-25 16:12:02 +10002723 } else {
2724 core = id / kvm->arch.smt_mode;
2725 }
Paul Mackerras3c313522017-02-06 13:24:41 +11002726 if (core < KVM_MAX_VCORES) {
2727 vcore = kvm->arch.vcores[core];
Sam Bobroff1e175d22018-07-25 16:12:02 +10002728 if (vcore && cpu_has_feature(CPU_FTR_ARCH_300)) {
2729 pr_devel("KVM: collision on id %u", id);
2730 vcore = NULL;
2731 } else if (!vcore) {
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002732 /*
2733 * Take mmu_setup_lock for mutual exclusion
2734 * with kvmppc_update_lpcr().
2735 */
Paul Mackerras3c313522017-02-06 13:24:41 +11002736 err = -ENOMEM;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002737 vcore = kvmppc_vcore_create(kvm,
2738 id & ~(kvm->arch.smt_mode - 1));
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002739 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002740 kvm->arch.vcores[core] = vcore;
2741 kvm->arch.online_vcores++;
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002742 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002743 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002744 }
2745 mutex_unlock(&kvm->lock);
2746
2747 if (!vcore)
Sean Christophersonff030fd2019-12-18 13:55:00 -08002748 return err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002749
2750 spin_lock(&vcore->lock);
2751 ++vcore->num_threads;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002752 spin_unlock(&vcore->lock);
2753 vcpu->arch.vcore = vcore;
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11002754 vcpu->arch.ptid = vcpu->vcpu_id - vcore->first_vcpuid;
Paul Mackerrasec257162015-06-24 21:18:03 +10002755 vcpu->arch.thread_cpu = -1;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002756 vcpu->arch.prev_cpu = -1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002757
Alexander Grafaf8f38b2011-08-10 13:57:08 +02002758 vcpu->arch.cpu_type = KVM_CPU_3S_64;
2759 kvmppc_sanity_check(vcpu);
2760
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002761 debugfs_vcpu_init(vcpu, id);
2762
Sean Christophersonc50bfbd2019-12-18 13:54:57 -08002763 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002764}
2765
Paul Mackerras3c313522017-02-06 13:24:41 +11002766static int kvmhv_set_smt_mode(struct kvm *kvm, unsigned long smt_mode,
2767 unsigned long flags)
2768{
2769 int err;
Paul Mackerras57900692017-05-16 16:41:20 +10002770 int esmt = 0;
Paul Mackerras3c313522017-02-06 13:24:41 +11002771
2772 if (flags)
2773 return -EINVAL;
2774 if (smt_mode > MAX_SMT_THREADS || !is_power_of_2(smt_mode))
2775 return -EINVAL;
2776 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
2777 /*
2778 * On POWER8 (or POWER7), the threading mode is "strict",
2779 * so we pack smt_mode vcpus per vcore.
2780 */
2781 if (smt_mode > threads_per_subcore)
2782 return -EINVAL;
2783 } else {
2784 /*
2785 * On POWER9, the threading mode is "loose",
2786 * so each vcpu gets its own vcore.
2787 */
Paul Mackerras57900692017-05-16 16:41:20 +10002788 esmt = smt_mode;
Paul Mackerras3c313522017-02-06 13:24:41 +11002789 smt_mode = 1;
2790 }
2791 mutex_lock(&kvm->lock);
2792 err = -EBUSY;
2793 if (!kvm->arch.online_vcores) {
2794 kvm->arch.smt_mode = smt_mode;
Paul Mackerras57900692017-05-16 16:41:20 +10002795 kvm->arch.emul_smt_mode = esmt;
Paul Mackerras3c313522017-02-06 13:24:41 +11002796 err = 0;
2797 }
2798 mutex_unlock(&kvm->lock);
2799
2800 return err;
2801}
2802
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002803static void unpin_vpa(struct kvm *kvm, struct kvmppc_vpa *vpa)
2804{
2805 if (vpa->pinned_addr)
2806 kvmppc_unpin_guest_page(kvm, vpa->pinned_addr, vpa->gpa,
2807 vpa->dirty);
2808}
2809
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302810static void kvmppc_core_vcpu_free_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002811{
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002812 spin_lock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002813 unpin_vpa(vcpu->kvm, &vcpu->arch.dtl);
2814 unpin_vpa(vcpu->kvm, &vcpu->arch.slb_shadow);
2815 unpin_vpa(vcpu->kvm, &vcpu->arch.vpa);
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002816 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002817}
2818
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302819static int kvmppc_core_check_requests_hv(struct kvm_vcpu *vcpu)
2820{
2821 /* Indicate we want to get back into the guest */
2822 return 1;
2823}
2824
Paul Mackerras19ccb762011-07-23 17:42:46 +10002825static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002826{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002827 unsigned long dec_nsec, now;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002828
Paul Mackerras19ccb762011-07-23 17:42:46 +10002829 now = get_tb();
2830 if (now > vcpu->arch.dec_expires) {
2831 /* decrementer has already gone negative */
2832 kvmppc_core_queue_dec(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -06002833 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002834 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002835 }
Paul Mackerrasc43befc2018-10-20 20:54:55 +11002836 dec_nsec = tb_to_ns(vcpu->arch.dec_expires - now);
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002837 hrtimer_start(&vcpu->arch.dec_timer, dec_nsec, HRTIMER_MODE_REL);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002838 vcpu->arch.timer_running = 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002839}
2840
Paul Mackerras8b24e692017-06-26 15:45:51 +10002841extern int __kvmppc_vcore_entry(void);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002842
2843static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
2844 struct kvm_vcpu *vcpu)
2845{
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002846 u64 now;
2847
Paul Mackerras371fefd2011-06-29 00:23:08 +00002848 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
2849 return;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002850 spin_lock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002851 now = mftb();
2852 vcpu->arch.busy_stolen += vcore_stolen_time(vc, now) -
2853 vcpu->arch.stolen_logged;
2854 vcpu->arch.busy_preempt = now;
2855 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002856 spin_unlock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002857 --vc->n_runnable;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002858 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], NULL);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002859}
2860
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002861static int kvmppc_grab_hwthread(int cpu)
2862{
2863 struct paca_struct *tpaca;
Paul Mackerrasb754c732014-09-02 16:14:42 +10002864 long timeout = 10000;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002865
Nicholas Piggind2e60072018-02-14 01:08:12 +10002866 tpaca = paca_ptrs[cpu];
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002867
2868 /* Ensure the thread won't go into the kernel if it wakes */
Paul Mackerras7b444c62012-10-15 01:16:14 +00002869 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002870 tpaca->kvm_hstate.kvm_vcore = NULL;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002871 tpaca->kvm_hstate.napping = 0;
2872 smp_wmb();
2873 tpaca->kvm_hstate.hwthread_req = 1;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002874
2875 /*
2876 * If the thread is already executing in the kernel (e.g. handling
2877 * a stray interrupt), wait for it to get back to nap mode.
2878 * The smp_mb() is to ensure that our setting of hwthread_req
2879 * is visible before we look at hwthread_state, so if this
2880 * races with the code at system_reset_pSeries and the thread
2881 * misses our setting of hwthread_req, we are sure to see its
2882 * setting of hwthread_state, and vice versa.
2883 */
2884 smp_mb();
2885 while (tpaca->kvm_hstate.hwthread_state == KVM_HWTHREAD_IN_KERNEL) {
2886 if (--timeout <= 0) {
2887 pr_err("KVM: couldn't grab cpu %d\n", cpu);
2888 return -EBUSY;
2889 }
2890 udelay(1);
2891 }
2892 return 0;
2893}
2894
2895static void kvmppc_release_hwthread(int cpu)
2896{
2897 struct paca_struct *tpaca;
2898
Nicholas Piggind2e60072018-02-14 01:08:12 +10002899 tpaca = paca_ptrs[cpu];
Paul Mackerras31a4d442017-10-19 15:14:20 +11002900 tpaca->kvm_hstate.hwthread_req = 0;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002901 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002902 tpaca->kvm_hstate.kvm_vcore = NULL;
2903 tpaca->kvm_hstate.kvm_split_mode = NULL;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002904}
2905
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002906static void radix_flush_cpu(struct kvm *kvm, int cpu, struct kvm_vcpu *vcpu)
2907{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002908 struct kvm_nested_guest *nested = vcpu->arch.nested;
2909 cpumask_t *cpu_in_guest;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002910 int i;
2911
Suraj Jitindar Singh77bbbc02021-06-02 14:04:41 +10002912 cpu = cpu_first_tlb_thread_sibling(cpu);
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002913 if (nested) {
2914 cpumask_set_cpu(cpu, &nested->need_tlb_flush);
2915 cpu_in_guest = &nested->cpu_in_guest;
2916 } else {
2917 cpumask_set_cpu(cpu, &kvm->arch.need_tlb_flush);
2918 cpu_in_guest = &kvm->arch.cpu_in_guest;
2919 }
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002920 /*
2921 * Make sure setting of bit in need_tlb_flush precedes
2922 * testing of cpu_in_guest bits. The matching barrier on
2923 * the other side is the first smp_mb() in kvmppc_run_core().
2924 */
2925 smp_mb();
Suraj Jitindar Singh77bbbc02021-06-02 14:04:41 +10002926 for (i = cpu; i <= cpu_last_tlb_thread_sibling(cpu);
2927 i += cpu_tlb_thread_sibling_step())
2928 if (cpumask_test_cpu(i, cpu_in_guest))
2929 smp_call_function_single(i, do_nothing, NULL, 1);
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002930}
2931
Paul Mackerras8b24e692017-06-26 15:45:51 +10002932static void kvmppc_prepare_radix_vcpu(struct kvm_vcpu *vcpu, int pcpu)
2933{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002934 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002935 struct kvm *kvm = vcpu->kvm;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002936 int prev_cpu;
2937
2938 if (!cpu_has_feature(CPU_FTR_HVMODE))
2939 return;
2940
2941 if (nested)
2942 prev_cpu = nested->prev_cpu[vcpu->arch.nested_vcpu_id];
2943 else
2944 prev_cpu = vcpu->arch.prev_cpu;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002945
2946 /*
2947 * With radix, the guest can do TLB invalidations itself,
2948 * and it could choose to use the local form (tlbiel) if
2949 * it is invalidating a translation that has only ever been
2950 * used on one vcpu. However, that doesn't mean it has
2951 * only ever been used on one physical cpu, since vcpus
2952 * can move around between pcpus. To cope with this, when
2953 * a vcpu moves from one pcpu to another, we need to tell
2954 * any vcpus running on the same core as this vcpu previously
2955 * ran to flush the TLB. The TLB is shared between threads,
2956 * so we use a single bit in .need_tlb_flush for all 4 threads.
2957 */
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002958 if (prev_cpu != pcpu) {
2959 if (prev_cpu >= 0 &&
Suraj Jitindar Singh77bbbc02021-06-02 14:04:41 +10002960 cpu_first_tlb_thread_sibling(prev_cpu) !=
2961 cpu_first_tlb_thread_sibling(pcpu))
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002962 radix_flush_cpu(kvm, prev_cpu, vcpu);
2963 if (nested)
2964 nested->prev_cpu[vcpu->arch.nested_vcpu_id] = pcpu;
2965 else
2966 vcpu->arch.prev_cpu = pcpu;
2967 }
2968}
2969
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002970static void kvmppc_start_thread(struct kvm_vcpu *vcpu, struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002971{
2972 int cpu;
2973 struct paca_struct *tpaca;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002974 struct kvm *kvm = vc->kvm;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002975
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002976 cpu = vc->pcpu;
2977 if (vcpu) {
2978 if (vcpu->arch.timer_running) {
2979 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2980 vcpu->arch.timer_running = 0;
2981 }
2982 cpu += vcpu->arch.ptid;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002983 vcpu->cpu = vc->pcpu;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002984 vcpu->arch.thread_cpu = cpu;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002985 cpumask_set_cpu(cpu, &kvm->arch.cpu_in_guest);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002986 }
Nicholas Piggind2e60072018-02-14 01:08:12 +10002987 tpaca = paca_ptrs[cpu];
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002988 tpaca->kvm_hstate.kvm_vcpu = vcpu;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002989 tpaca->kvm_hstate.ptid = cpu - vc->pcpu;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002990 tpaca->kvm_hstate.fake_suspend = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002991 /* Order stores to hstate.kvm_vcpu etc. before store to kvm_vcore */
Paul Mackerras19ccb762011-07-23 17:42:46 +10002992 smp_wmb();
Paul Mackerras898b25b2017-06-22 15:08:42 +10002993 tpaca->kvm_hstate.kvm_vcore = vc;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002994 if (cpu != smp_processor_id())
Paul Mackerras66feed62015-03-28 14:21:12 +11002995 kvmppc_ipi_thread(cpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002996}
2997
Paul Mackerras516f7892017-10-16 16:11:57 +11002998static void kvmppc_wait_for_nap(int n_threads)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002999{
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003000 int cpu = smp_processor_id();
3001 int i, loops;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003002
Paul Mackerras45c940b2016-11-18 17:43:30 +11003003 if (n_threads <= 1)
3004 return;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003005 for (loops = 0; loops < 1000000; ++loops) {
3006 /*
3007 * Check if all threads are finished.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003008 * We set the vcore pointer when starting a thread
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003009 * and the thread clears it when finished, so we look
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003010 * for any threads that still have a non-NULL vcore ptr.
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003011 */
Paul Mackerras45c940b2016-11-18 17:43:30 +11003012 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10003013 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003014 break;
Paul Mackerras45c940b2016-11-18 17:43:30 +11003015 if (i == n_threads) {
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003016 HMT_medium();
3017 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003018 }
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003019 HMT_low();
Paul Mackerras371fefd2011-06-29 00:23:08 +00003020 }
3021 HMT_medium();
Paul Mackerras45c940b2016-11-18 17:43:30 +11003022 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10003023 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003024 pr_err("KVM: CPU %d seems to be stuck\n", cpu + i);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003025}
3026
3027/*
3028 * Check that we are on thread 0 and that any other threads in
Paul Mackerras7b444c62012-10-15 01:16:14 +00003029 * this core are off-line. Then grab the threads so they can't
3030 * enter the kernel.
Paul Mackerras371fefd2011-06-29 00:23:08 +00003031 */
3032static int on_primary_thread(void)
3033{
3034 int cpu = smp_processor_id();
Michael Ellerman3102f782014-05-23 18:15:29 +10003035 int thr;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003036
Michael Ellerman3102f782014-05-23 18:15:29 +10003037 /* Are we on a primary subcore? */
3038 if (cpu_thread_in_subcore(cpu))
Paul Mackerras371fefd2011-06-29 00:23:08 +00003039 return 0;
Michael Ellerman3102f782014-05-23 18:15:29 +10003040
3041 thr = 0;
3042 while (++thr < threads_per_subcore)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003043 if (cpu_online(cpu + thr))
3044 return 0;
Paul Mackerras7b444c62012-10-15 01:16:14 +00003045
3046 /* Grab all hw threads so they can't go into the kernel */
Michael Ellerman3102f782014-05-23 18:15:29 +10003047 for (thr = 1; thr < threads_per_subcore; ++thr) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00003048 if (kvmppc_grab_hwthread(cpu + thr)) {
3049 /* Couldn't grab one; let the others go */
3050 do {
3051 kvmppc_release_hwthread(cpu + thr);
3052 } while (--thr > 0);
3053 return 0;
3054 }
3055 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003056 return 1;
3057}
3058
Paul Mackerrasec257162015-06-24 21:18:03 +10003059/*
3060 * A list of virtual cores for each physical CPU.
3061 * These are vcores that could run but their runner VCPU tasks are
3062 * (or may be) preempted.
3063 */
3064struct preempted_vcore_list {
3065 struct list_head list;
3066 spinlock_t lock;
3067};
3068
3069static DEFINE_PER_CPU(struct preempted_vcore_list, preempted_vcores);
3070
3071static void init_vcore_lists(void)
3072{
3073 int cpu;
3074
3075 for_each_possible_cpu(cpu) {
3076 struct preempted_vcore_list *lp = &per_cpu(preempted_vcores, cpu);
3077 spin_lock_init(&lp->lock);
3078 INIT_LIST_HEAD(&lp->list);
3079 }
3080}
3081
3082static void kvmppc_vcore_preempt(struct kvmppc_vcore *vc)
3083{
3084 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
3085
3086 vc->vcore_state = VCORE_PREEMPT;
3087 vc->pcpu = smp_processor_id();
Paul Mackerras516f7892017-10-16 16:11:57 +11003088 if (vc->num_threads < threads_per_vcore(vc->kvm)) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003089 spin_lock(&lp->lock);
3090 list_add_tail(&vc->preempt_list, &lp->list);
3091 spin_unlock(&lp->lock);
3092 }
3093
3094 /* Start accumulating stolen time */
3095 kvmppc_core_start_stolen(vc);
3096}
3097
3098static void kvmppc_vcore_end_preempt(struct kvmppc_vcore *vc)
3099{
Paul Mackerras402813f2015-07-16 17:11:13 +10003100 struct preempted_vcore_list *lp;
Paul Mackerrasec257162015-06-24 21:18:03 +10003101
3102 kvmppc_core_end_stolen(vc);
3103 if (!list_empty(&vc->preempt_list)) {
Paul Mackerras402813f2015-07-16 17:11:13 +10003104 lp = &per_cpu(preempted_vcores, vc->pcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10003105 spin_lock(&lp->lock);
3106 list_del_init(&vc->preempt_list);
3107 spin_unlock(&lp->lock);
3108 }
3109 vc->vcore_state = VCORE_INACTIVE;
3110}
3111
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003112/*
3113 * This stores information about the virtual cores currently
3114 * assigned to a physical core.
3115 */
Paul Mackerrasec257162015-06-24 21:18:03 +10003116struct core_info {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003117 int n_subcores;
3118 int max_subcore_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10003119 int total_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003120 int subcore_threads[MAX_SUBCORES];
Paul Mackerras898b25b2017-06-22 15:08:42 +10003121 struct kvmppc_vcore *vc[MAX_SUBCORES];
Paul Mackerrasec257162015-06-24 21:18:03 +10003122};
3123
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003124/*
3125 * This mapping means subcores 0 and 1 can use threads 0-3 and 4-7
Paul Mackerras516f7892017-10-16 16:11:57 +11003126 * respectively in 2-way micro-threading (split-core) mode on POWER8.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003127 */
3128static int subcore_thread_map[MAX_SUBCORES] = { 0, 4, 2, 6 };
3129
Paul Mackerrasec257162015-06-24 21:18:03 +10003130static void init_core_info(struct core_info *cip, struct kvmppc_vcore *vc)
3131{
3132 memset(cip, 0, sizeof(*cip));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003133 cip->n_subcores = 1;
3134 cip->max_subcore_threads = vc->num_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10003135 cip->total_threads = vc->num_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003136 cip->subcore_threads[0] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003137 cip->vc[0] = vc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003138}
3139
3140static bool subcore_config_ok(int n_subcores, int n_threads)
3141{
Paul Mackerras516f7892017-10-16 16:11:57 +11003142 /*
Paul Mackerras00608e12018-01-11 16:54:26 +11003143 * POWER9 "SMT4" cores are permanently in what is effectively a 4-way
3144 * split-core mode, with one thread per subcore.
Paul Mackerras516f7892017-10-16 16:11:57 +11003145 */
3146 if (cpu_has_feature(CPU_FTR_ARCH_300))
3147 return n_subcores <= 4 && n_threads == 1;
3148
3149 /* On POWER8, can only dynamically split if unsplit to begin with */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003150 if (n_subcores > 1 && threads_per_subcore < MAX_SMT_THREADS)
3151 return false;
3152 if (n_subcores > MAX_SUBCORES)
3153 return false;
3154 if (n_subcores > 1) {
3155 if (!(dynamic_mt_modes & 2))
3156 n_subcores = 4;
3157 if (n_subcores > 2 && !(dynamic_mt_modes & 4))
3158 return false;
3159 }
3160
3161 return n_subcores * roundup_pow_of_two(n_threads) <= MAX_SMT_THREADS;
Paul Mackerrasec257162015-06-24 21:18:03 +10003162}
3163
Paul Mackerras898b25b2017-06-22 15:08:42 +10003164static void init_vcore_to_run(struct kvmppc_vcore *vc)
Paul Mackerrasec257162015-06-24 21:18:03 +10003165{
Paul Mackerrasec257162015-06-24 21:18:03 +10003166 vc->entry_exit_map = 0;
3167 vc->in_guest = 0;
3168 vc->napping_threads = 0;
3169 vc->conferring_threads = 0;
Paul Mackerras57b8daa2018-04-20 22:51:11 +10003170 vc->tb_offset_applied = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10003171}
3172
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003173static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip)
3174{
3175 int n_threads = vc->num_threads;
3176 int sub;
3177
3178 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
3179 return false;
3180
Paul Mackerrasaa227862018-09-12 10:42:12 +10003181 /* In one_vm_per_core mode, require all vcores to be from the same vm */
3182 if (one_vm_per_core && vc->kvm != cip->vc[0]->kvm)
3183 return false;
3184
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003185 if (n_threads < cip->max_subcore_threads)
3186 n_threads = cip->max_subcore_threads;
Paul Mackerrasb0090312016-09-15 16:27:41 +10003187 if (!subcore_config_ok(cip->n_subcores + 1, n_threads))
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003188 return false;
Paul Mackerrasb0090312016-09-15 16:27:41 +10003189 cip->max_subcore_threads = n_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003190
3191 sub = cip->n_subcores;
3192 ++cip->n_subcores;
3193 cip->total_threads += vc->num_threads;
3194 cip->subcore_threads[sub] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003195 cip->vc[sub] = vc;
3196 init_vcore_to_run(vc);
3197 list_del_init(&vc->preempt_list);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003198
3199 return true;
3200}
3201
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003202/*
3203 * Work out whether it is possible to piggyback the execution of
3204 * vcore *pvc onto the execution of the other vcores described in *cip.
3205 */
3206static bool can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip,
3207 int target_threads)
3208{
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003209 if (cip->total_threads + pvc->num_threads > target_threads)
3210 return false;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003211
Paul Mackerrasb0090312016-09-15 16:27:41 +10003212 return can_dynamic_split(pvc, cip);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003213}
3214
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003215static void prepare_threads(struct kvmppc_vcore *vc)
3216{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003217 int i;
3218 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003219
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003220 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003221 if (signal_pending(vcpu->arch.run_task))
3222 vcpu->arch.ret = -EINTR;
3223 else if (vcpu->arch.vpa.update_pending ||
3224 vcpu->arch.slb_shadow.update_pending ||
3225 vcpu->arch.dtl.update_pending)
3226 vcpu->arch.ret = RESUME_GUEST;
3227 else
3228 continue;
3229 kvmppc_remove_runnable(vc, vcpu);
3230 wake_up(&vcpu->arch.cpu_run);
3231 }
3232}
3233
Paul Mackerrasec257162015-06-24 21:18:03 +10003234static void collect_piggybacks(struct core_info *cip, int target_threads)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003235{
Paul Mackerrasec257162015-06-24 21:18:03 +10003236 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
3237 struct kvmppc_vcore *pvc, *vcnext;
3238
3239 spin_lock(&lp->lock);
3240 list_for_each_entry_safe(pvc, vcnext, &lp->list, preempt_list) {
3241 if (!spin_trylock(&pvc->lock))
3242 continue;
3243 prepare_threads(pvc);
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003244 if (!pvc->n_runnable || !pvc->kvm->arch.mmu_ready) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003245 list_del_init(&pvc->preempt_list);
3246 if (pvc->runner == NULL) {
3247 pvc->vcore_state = VCORE_INACTIVE;
3248 kvmppc_core_end_stolen(pvc);
3249 }
3250 spin_unlock(&pvc->lock);
3251 continue;
3252 }
3253 if (!can_piggyback(pvc, cip, target_threads)) {
3254 spin_unlock(&pvc->lock);
3255 continue;
3256 }
3257 kvmppc_core_end_stolen(pvc);
3258 pvc->vcore_state = VCORE_PIGGYBACK;
3259 if (cip->total_threads >= target_threads)
3260 break;
3261 }
3262 spin_unlock(&lp->lock);
3263}
3264
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003265static bool recheck_signals_and_mmu(struct core_info *cip)
Paul Mackerras8b24e692017-06-26 15:45:51 +10003266{
3267 int sub, i;
3268 struct kvm_vcpu *vcpu;
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003269 struct kvmppc_vcore *vc;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003270
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003271 for (sub = 0; sub < cip->n_subcores; ++sub) {
3272 vc = cip->vc[sub];
3273 if (!vc->kvm->arch.mmu_ready)
3274 return true;
3275 for_each_runnable_thread(i, vcpu, vc)
Paul Mackerras8b24e692017-06-26 15:45:51 +10003276 if (signal_pending(vcpu->arch.run_task))
3277 return true;
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003278 }
Paul Mackerras8b24e692017-06-26 15:45:51 +10003279 return false;
3280}
3281
Paul Mackerrasec257162015-06-24 21:18:03 +10003282static void post_guest_process(struct kvmppc_vcore *vc, bool is_master)
3283{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003284 int still_running = 0, i;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003285 u64 now;
3286 long ret;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003287 struct kvm_vcpu *vcpu;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003288
Paul Mackerrasec257162015-06-24 21:18:03 +10003289 spin_lock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003290 now = get_tb();
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003291 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras53655dd2018-10-08 16:30:54 +11003292 /*
3293 * It's safe to unlock the vcore in the loop here, because
3294 * for_each_runnable_thread() is safe against removal of
3295 * the vcpu, and the vcore state is VCORE_EXITING here,
3296 * so any vcpus becoming runnable will have their arch.trap
3297 * set to zero and can't actually run in the guest.
3298 */
3299 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003300 /* cancel pending dec exception if dec is positive */
3301 if (now < vcpu->arch.dec_expires &&
3302 kvmppc_core_pending_dec(vcpu))
3303 kvmppc_core_dequeue_dec(vcpu);
3304
3305 trace_kvm_guest_exit(vcpu);
3306
3307 ret = RESUME_GUEST;
3308 if (vcpu->arch.trap)
Tianjia Zhang8c99d342020-04-27 12:35:11 +08003309 ret = kvmppc_handle_exit_hv(vcpu,
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003310 vcpu->arch.run_task);
3311
3312 vcpu->arch.ret = ret;
3313 vcpu->arch.trap = 0;
3314
Paul Mackerras53655dd2018-10-08 16:30:54 +11003315 spin_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10003316 if (is_kvmppc_resume_guest(vcpu->arch.ret)) {
3317 if (vcpu->arch.pending_exceptions)
3318 kvmppc_core_prepare_to_enter(vcpu);
3319 if (vcpu->arch.ceded)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003320 kvmppc_set_timer(vcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10003321 else
3322 ++still_running;
3323 } else {
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003324 kvmppc_remove_runnable(vc, vcpu);
3325 wake_up(&vcpu->arch.cpu_run);
3326 }
3327 }
Paul Mackerrasec257162015-06-24 21:18:03 +10003328 if (!is_master) {
Paul Mackerras563a1e92015-07-16 17:11:14 +10003329 if (still_running > 0) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003330 kvmppc_vcore_preempt(vc);
Paul Mackerras563a1e92015-07-16 17:11:14 +10003331 } else if (vc->runner) {
3332 vc->vcore_state = VCORE_PREEMPT;
3333 kvmppc_core_start_stolen(vc);
3334 } else {
3335 vc->vcore_state = VCORE_INACTIVE;
3336 }
Paul Mackerrasec257162015-06-24 21:18:03 +10003337 if (vc->n_runnable > 0 && vc->runner == NULL) {
3338 /* make sure there's a candidate runner awake */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003339 i = -1;
3340 vcpu = next_runnable_thread(vc, &i);
Paul Mackerrasec257162015-06-24 21:18:03 +10003341 wake_up(&vcpu->arch.cpu_run);
3342 }
3343 }
3344 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003345}
3346
Paul Mackerras371fefd2011-06-29 00:23:08 +00003347/*
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003348 * Clear core from the list of active host cores as we are about to
3349 * enter the guest. Only do this if it is the primary thread of the
3350 * core (not if a subcore) that is entering the guest.
3351 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003352static inline int kvmppc_clear_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003353{
3354 int core;
3355
3356 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003357 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003358 /*
3359 * Memory barrier can be omitted here as we will do a smp_wmb()
3360 * later in kvmppc_start_thread and we need ensure that state is
3361 * visible to other CPUs only after we enter guest.
3362 */
3363 core = cpu >> threads_shift;
3364 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 0;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003365 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003366}
3367
3368/*
3369 * Advertise this core as an active host core since we exited the guest
3370 * Only need to do this if it is the primary thread of the core that is
3371 * exiting.
3372 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003373static inline int kvmppc_set_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003374{
3375 int core;
3376
3377 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003378 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003379
3380 /*
3381 * Memory barrier can be omitted here because we do a spin_unlock
3382 * immediately after this which provides the memory barrier.
3383 */
3384 core = cpu >> threads_shift;
3385 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 1;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003386 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003387}
3388
Paul Mackerras8b24e692017-06-26 15:45:51 +10003389static void set_irq_happened(int trap)
3390{
3391 switch (trap) {
3392 case BOOK3S_INTERRUPT_EXTERNAL:
3393 local_paca->irq_happened |= PACA_IRQ_EE;
3394 break;
3395 case BOOK3S_INTERRUPT_H_DOORBELL:
3396 local_paca->irq_happened |= PACA_IRQ_DBELL;
3397 break;
3398 case BOOK3S_INTERRUPT_HMI:
3399 local_paca->irq_happened |= PACA_IRQ_HMI;
3400 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11003401 case BOOK3S_INTERRUPT_SYSTEM_RESET:
3402 replay_system_reset();
3403 break;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003404 }
3405}
3406
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003407/*
Paul Mackerras371fefd2011-06-29 00:23:08 +00003408 * Run a set of guest threads on a physical core.
3409 * Called with vc->lock held.
3410 */
Paul Mackerras66feed62015-03-28 14:21:12 +11003411static noinline void kvmppc_run_core(struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003412{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003413 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003414 int i;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003415 int srcu_idx;
Paul Mackerrasec257162015-06-24 21:18:03 +10003416 struct core_info core_info;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003417 struct kvmppc_vcore *pvc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003418 struct kvm_split_mode split_info, *sip;
3419 int split, subcore_size, active;
3420 int sub;
3421 bool thr0_done;
3422 unsigned long cmd_bit, stat_bit;
Paul Mackerrasec257162015-06-24 21:18:03 +10003423 int pcpu, thr;
3424 int target_threads;
Paul Mackerras45c940b2016-11-18 17:43:30 +11003425 int controlled_threads;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003426 int trap;
Paul Mackerras516f7892017-10-16 16:11:57 +11003427 bool is_power8;
Paul Mackerras081f3232012-06-01 20:20:24 +10003428
Nicholas Pigginfae5c9f2021-05-28 19:07:52 +10003429 if (WARN_ON_ONCE(cpu_has_feature(CPU_FTR_ARCH_300)))
3430 return;
3431
Paul Mackerras081f3232012-06-01 20:20:24 +10003432 /*
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003433 * Remove from the list any threads that have a signal pending
3434 * or need a VPA update done
3435 */
3436 prepare_threads(vc);
3437
3438 /* if the runner is no longer runnable, let the caller pick a new one */
3439 if (vc->runner->arch.state != KVMPPC_VCPU_RUNNABLE)
3440 return;
3441
3442 /*
3443 * Initialize *vc.
Paul Mackerras081f3232012-06-01 20:20:24 +10003444 */
Paul Mackerras898b25b2017-06-22 15:08:42 +10003445 init_vcore_to_run(vc);
Paul Mackerras2711e242014-12-04 16:43:28 +11003446 vc->preempt_tb = TB_NIL;
Paul Mackerras081f3232012-06-01 20:20:24 +10003447
3448 /*
Paul Mackerras45c940b2016-11-18 17:43:30 +11003449 * Number of threads that we will be controlling: the same as
3450 * the number of threads per subcore, except on POWER9,
3451 * where it's 1 because the threads are (mostly) independent.
3452 */
Paul Mackerras516f7892017-10-16 16:11:57 +11003453 controlled_threads = threads_per_vcore(vc->kvm);
Paul Mackerras45c940b2016-11-18 17:43:30 +11003454
3455 /*
Michael Ellerman3102f782014-05-23 18:15:29 +10003456 * Make sure we are running on primary threads, and that secondary
3457 * threads are offline. Also check if the number of threads in this
3458 * guest are greater than the current system threads per guest.
Paul Mackerras7b444c62012-10-15 01:16:14 +00003459 */
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003460 if ((controlled_threads > 1) &&
3461 ((vc->num_threads > threads_per_subcore) || !on_primary_thread())) {
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003462 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00003463 vcpu->arch.ret = -EBUSY;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003464 kvmppc_remove_runnable(vc, vcpu);
3465 wake_up(&vcpu->arch.cpu_run);
3466 }
Paul Mackerras7b444c62012-10-15 01:16:14 +00003467 goto out;
3468 }
3469
Paul Mackerrasec257162015-06-24 21:18:03 +10003470 /*
3471 * See if we could run any other vcores on the physical core
3472 * along with this one.
3473 */
3474 init_core_info(&core_info, vc);
3475 pcpu = smp_processor_id();
Paul Mackerras45c940b2016-11-18 17:43:30 +11003476 target_threads = controlled_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10003477 if (target_smt_mode && target_smt_mode < target_threads)
3478 target_threads = target_smt_mode;
3479 if (vc->num_threads < target_threads)
3480 collect_piggybacks(&core_info, target_threads);
Michael Ellerman3102f782014-05-23 18:15:29 +10003481
Paul Mackerras8b24e692017-06-26 15:45:51 +10003482 /*
Paul Mackerras8b24e692017-06-26 15:45:51 +10003483 * Hard-disable interrupts, and check resched flag and signals.
3484 * If we need to reschedule or deliver a signal, clean up
3485 * and return without going into the guest(s).
Paul Mackerras072df812017-11-09 14:30:24 +11003486 * If the mmu_ready flag has been cleared, don't go into the
Paul Mackerras38c53af2017-11-08 14:44:04 +11003487 * guest because that means a HPT resize operation is in progress.
Paul Mackerras8b24e692017-06-26 15:45:51 +10003488 */
3489 local_irq_disable();
3490 hard_irq_disable();
3491 if (lazy_irq_pending() || need_resched() ||
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003492 recheck_signals_and_mmu(&core_info)) {
Paul Mackerras8b24e692017-06-26 15:45:51 +10003493 local_irq_enable();
3494 vc->vcore_state = VCORE_INACTIVE;
3495 /* Unlock all except the primary vcore */
3496 for (sub = 1; sub < core_info.n_subcores; ++sub) {
3497 pvc = core_info.vc[sub];
3498 /* Put back on to the preempted vcores list */
3499 kvmppc_vcore_preempt(pvc);
3500 spin_unlock(&pvc->lock);
3501 }
3502 for (i = 0; i < controlled_threads; ++i)
3503 kvmppc_release_hwthread(pcpu + i);
3504 return;
3505 }
3506
3507 kvmppc_clear_host_core(pcpu);
3508
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003509 /* Decide on micro-threading (split-core) mode */
3510 subcore_size = threads_per_subcore;
3511 cmd_bit = stat_bit = 0;
3512 split = core_info.n_subcores;
3513 sip = NULL;
Nicholas Pigginfae5c9f2021-05-28 19:07:52 +10003514 is_power8 = cpu_has_feature(CPU_FTR_ARCH_207S);
Paul Mackerras516f7892017-10-16 16:11:57 +11003515
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003516 if (split > 1) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003517 sip = &split_info;
3518 memset(&split_info, 0, sizeof(split_info));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003519 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003520 split_info.vc[sub] = core_info.vc[sub];
Paul Mackerras516f7892017-10-16 16:11:57 +11003521
3522 if (is_power8) {
3523 if (split == 2 && (dynamic_mt_modes & 2)) {
3524 cmd_bit = HID0_POWER8_1TO2LPAR;
3525 stat_bit = HID0_POWER8_2LPARMODE;
3526 } else {
3527 split = 4;
3528 cmd_bit = HID0_POWER8_1TO4LPAR;
3529 stat_bit = HID0_POWER8_4LPARMODE;
3530 }
3531 subcore_size = MAX_SMT_THREADS / split;
3532 split_info.rpr = mfspr(SPRN_RPR);
3533 split_info.pmmar = mfspr(SPRN_PMMAR);
3534 split_info.ldbar = mfspr(SPRN_LDBAR);
3535 split_info.subcore_size = subcore_size;
3536 } else {
3537 split_info.subcore_size = 1;
3538 }
3539
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003540 /* order writes to split_info before kvm_split_mode pointer */
3541 smp_wmb();
3542 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003543
Paul Mackerrasc0101502017-10-19 14:11:23 +11003544 for (thr = 0; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003545 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3546
Nicholas Piggind2e60072018-02-14 01:08:12 +10003547 paca->kvm_hstate.napping = 0;
3548 paca->kvm_hstate.kvm_split_mode = sip;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003549 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003550
Paul Mackerras516f7892017-10-16 16:11:57 +11003551 /* Initiate micro-threading (split-core) on POWER8 if required */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003552 if (cmd_bit) {
3553 unsigned long hid0 = mfspr(SPRN_HID0);
3554
3555 hid0 |= cmd_bit | HID0_POWER8_DYNLPARDIS;
3556 mb();
3557 mtspr(SPRN_HID0, hid0);
3558 isync();
3559 for (;;) {
3560 hid0 = mfspr(SPRN_HID0);
3561 if (hid0 & stat_bit)
3562 break;
3563 cpu_relax();
3564 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +00003565 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003566
Paul Mackerras7aa15842018-04-20 19:53:22 +10003567 /*
3568 * On POWER8, set RWMR register.
3569 * Since it only affects PURR and SPURR, it doesn't affect
3570 * the host, so we don't save/restore the host value.
3571 */
3572 if (is_power8) {
3573 unsigned long rwmr_val = RWMR_RPA_P8_8THREAD;
3574 int n_online = atomic_read(&vc->online_count);
3575
3576 /*
3577 * Use the 8-thread value if we're doing split-core
3578 * or if the vcore's online count looks bogus.
3579 */
3580 if (split == 1 && threads_per_subcore == MAX_SMT_THREADS &&
3581 n_online >= 1 && n_online <= MAX_SMT_THREADS)
3582 rwmr_val = p8_rwmr_values[n_online];
3583 mtspr(SPRN_RWMR, rwmr_val);
3584 }
3585
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003586 /* Start all the threads */
3587 active = 0;
3588 for (sub = 0; sub < core_info.n_subcores; ++sub) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003589 thr = is_power8 ? subcore_thread_map[sub] : sub;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003590 thr0_done = false;
3591 active |= 1 << thr;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003592 pvc = core_info.vc[sub];
3593 pvc->pcpu = pcpu + thr;
3594 for_each_runnable_thread(i, vcpu, pvc) {
3595 kvmppc_start_thread(vcpu, pvc);
3596 kvmppc_create_dtl_entry(vcpu, pvc);
3597 trace_kvm_guest_enter(vcpu);
3598 if (!vcpu->arch.ptid)
3599 thr0_done = true;
3600 active |= 1 << (thr + vcpu->arch.ptid);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003601 }
Paul Mackerras898b25b2017-06-22 15:08:42 +10003602 /*
3603 * We need to start the first thread of each subcore
3604 * even if it doesn't have a vcpu.
3605 */
3606 if (!thr0_done)
3607 kvmppc_start_thread(NULL, pvc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003608 }
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303609
3610 /*
3611 * Ensure that split_info.do_nap is set after setting
3612 * the vcore pointer in the PACA of the secondaries.
3613 */
3614 smp_mb();
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303615
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003616 /*
3617 * When doing micro-threading, poke the inactive threads as well.
3618 * This gets them to the nap instruction after kvm_do_nap,
3619 * which reduces the time taken to unsplit later.
3620 */
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003621 if (cmd_bit) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003622 split_info.do_nap = 1; /* ask secondaries to nap when done */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003623 for (thr = 1; thr < threads_per_subcore; ++thr)
3624 if (!(active & (1 << thr)))
3625 kvmppc_ipi_thread(pcpu + thr);
Paul Mackerras516f7892017-10-16 16:11:57 +11003626 }
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003627
Paul Mackerras2f12f032012-10-15 01:17:17 +00003628 vc->vcore_state = VCORE_RUNNING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003629 preempt_disable();
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003630
3631 trace_kvmppc_run_core(vc, 0);
3632
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003633 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003634 spin_unlock(&core_info.vc[sub]->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003635
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003636 guest_enter_irqoff();
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003637
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003638 srcu_idx = srcu_read_lock(&vc->kvm->srcu);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003639
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303640 this_cpu_disable_ftrace();
3641
Alexey Kardashevskiy3309bec2019-03-29 16:40:13 +11003642 /*
3643 * Interrupts will be enabled once we get into the guest,
3644 * so tell lockdep that we're about to enable interrupts.
3645 */
3646 trace_hardirqs_on();
3647
Paul Mackerras8b24e692017-06-26 15:45:51 +10003648 trap = __kvmppc_vcore_entry();
Paul Mackerras19ccb762011-07-23 17:42:46 +10003649
Alexey Kardashevskiy3309bec2019-03-29 16:40:13 +11003650 trace_hardirqs_off();
3651
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303652 this_cpu_enable_ftrace();
3653
Paul Mackerrasec257162015-06-24 21:18:03 +10003654 srcu_read_unlock(&vc->kvm->srcu, srcu_idx);
3655
Paul Mackerras8b24e692017-06-26 15:45:51 +10003656 set_irq_happened(trap);
3657
Paul Mackerrasec257162015-06-24 21:18:03 +10003658 spin_lock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003659 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
Paul Mackerras19ccb762011-07-23 17:42:46 +10003660 vc->vcore_state = VCORE_EXITING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003661
Paul Mackerras371fefd2011-06-29 00:23:08 +00003662 /* wait for secondary threads to finish writing their state to memory */
Paul Mackerras516f7892017-10-16 16:11:57 +11003663 kvmppc_wait_for_nap(controlled_threads);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003664
3665 /* Return to whole-core mode if we split the core earlier */
Paul Mackerras516f7892017-10-16 16:11:57 +11003666 if (cmd_bit) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003667 unsigned long hid0 = mfspr(SPRN_HID0);
3668 unsigned long loops = 0;
3669
3670 hid0 &= ~HID0_POWER8_DYNLPARDIS;
3671 stat_bit = HID0_POWER8_2LPARMODE | HID0_POWER8_4LPARMODE;
3672 mb();
3673 mtspr(SPRN_HID0, hid0);
3674 isync();
3675 for (;;) {
3676 hid0 = mfspr(SPRN_HID0);
3677 if (!(hid0 & stat_bit))
3678 break;
3679 cpu_relax();
3680 ++loops;
3681 }
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003682 split_info.do_nap = 0;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003683 }
3684
Paul Mackerras8b24e692017-06-26 15:45:51 +10003685 kvmppc_set_host_core(pcpu);
3686
Nicholas Piggin11266522021-01-30 23:08:12 +10003687 guest_exit_irqoff();
3688
Paul Mackerras8b24e692017-06-26 15:45:51 +10003689 local_irq_enable();
3690
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003691 /* Let secondaries go back to the offline loop */
Paul Mackerras45c940b2016-11-18 17:43:30 +11003692 for (i = 0; i < controlled_threads; ++i) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003693 kvmppc_release_hwthread(pcpu + i);
3694 if (sip && sip->napped[i])
3695 kvmppc_ipi_thread(pcpu + i);
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003696 cpumask_clear_cpu(pcpu + i, &vc->kvm->arch.cpu_in_guest);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003697 }
3698
Paul Mackerras371fefd2011-06-29 00:23:08 +00003699 spin_unlock(&vc->lock);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003700
Paul Mackerras371fefd2011-06-29 00:23:08 +00003701 /* make sure updates to secondary vcpu structs are visible now */
3702 smp_mb();
Paul Mackerrasde56a942011-06-29 00:21:34 +00003703
Paul Mackerras36ee41d2018-01-30 10:51:32 +11003704 preempt_enable();
3705
Paul Mackerras898b25b2017-06-22 15:08:42 +10003706 for (sub = 0; sub < core_info.n_subcores; ++sub) {
3707 pvc = core_info.vc[sub];
3708 post_guest_process(pvc, pvc == vc);
3709 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00003710
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003711 spin_lock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003712
Paul Mackerrasde56a942011-06-29 00:21:34 +00003713 out:
Paul Mackerras19ccb762011-07-23 17:42:46 +10003714 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003715 trace_kvmppc_run_core(vc, 1);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003716}
3717
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003718static void load_spr_state(struct kvm_vcpu *vcpu)
Paul Mackerras95a64322018-10-08 16:30:55 +11003719{
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003720 mtspr(SPRN_DSCR, vcpu->arch.dscr);
3721 mtspr(SPRN_IAMR, vcpu->arch.iamr);
3722 mtspr(SPRN_PSPB, vcpu->arch.pspb);
3723 mtspr(SPRN_FSCR, vcpu->arch.fscr);
3724 mtspr(SPRN_TAR, vcpu->arch.tar);
3725 mtspr(SPRN_EBBHR, vcpu->arch.ebbhr);
3726 mtspr(SPRN_EBBRR, vcpu->arch.ebbrr);
3727 mtspr(SPRN_BESCR, vcpu->arch.bescr);
3728 mtspr(SPRN_WORT, vcpu->arch.wort);
3729 mtspr(SPRN_TIDR, vcpu->arch.tid);
3730 mtspr(SPRN_AMR, vcpu->arch.amr);
3731 mtspr(SPRN_UAMOR, vcpu->arch.uamor);
Paul Mackerras95a64322018-10-08 16:30:55 +11003732
Paul Mackerras35dfb432020-09-03 17:55:40 +10003733 /*
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003734 * DAR, DSISR, and for nested HV, SPRGs must be set with MSR[RI]
3735 * clear (or hstate set appropriately to catch those registers
3736 * being clobbered if we take a MCE or SRESET), so those are done
3737 * later.
Paul Mackerras35dfb432020-09-03 17:55:40 +10003738 */
Paul Mackerras35dfb432020-09-03 17:55:40 +10003739
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003740 if (!(vcpu->arch.ctrl & 1))
3741 mtspr(SPRN_CTRLT, mfspr(SPRN_CTRLF) & ~1);
3742}
Paul Mackerras95a64322018-10-08 16:30:55 +11003743
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003744static void store_spr_state(struct kvm_vcpu *vcpu)
3745{
3746 vcpu->arch.ctrl = mfspr(SPRN_CTRLF);
Paul Mackerras95a64322018-10-08 16:30:55 +11003747
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003748 vcpu->arch.iamr = mfspr(SPRN_IAMR);
3749 vcpu->arch.pspb = mfspr(SPRN_PSPB);
3750 vcpu->arch.fscr = mfspr(SPRN_FSCR);
3751 vcpu->arch.tar = mfspr(SPRN_TAR);
3752 vcpu->arch.ebbhr = mfspr(SPRN_EBBHR);
3753 vcpu->arch.ebbrr = mfspr(SPRN_EBBRR);
3754 vcpu->arch.bescr = mfspr(SPRN_BESCR);
3755 vcpu->arch.wort = mfspr(SPRN_WORT);
3756 vcpu->arch.tid = mfspr(SPRN_TIDR);
3757 vcpu->arch.amr = mfspr(SPRN_AMR);
3758 vcpu->arch.uamor = mfspr(SPRN_UAMOR);
3759 vcpu->arch.dscr = mfspr(SPRN_DSCR);
Paul Mackerras95a64322018-10-08 16:30:55 +11003760}
3761
3762/*
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003763 * Privileged (non-hypervisor) host registers to save.
3764 */
3765struct p9_host_os_sprs {
3766 unsigned long dscr;
3767 unsigned long tidr;
3768 unsigned long iamr;
3769 unsigned long amr;
3770 unsigned long fscr;
3771};
3772
3773static void save_p9_host_os_sprs(struct p9_host_os_sprs *host_os_sprs)
3774{
3775 host_os_sprs->dscr = mfspr(SPRN_DSCR);
3776 host_os_sprs->tidr = mfspr(SPRN_TIDR);
3777 host_os_sprs->iamr = mfspr(SPRN_IAMR);
3778 host_os_sprs->amr = mfspr(SPRN_AMR);
3779 host_os_sprs->fscr = mfspr(SPRN_FSCR);
3780}
3781
3782/* vcpu guest regs must already be saved */
3783static void restore_p9_host_os_sprs(struct kvm_vcpu *vcpu,
3784 struct p9_host_os_sprs *host_os_sprs)
3785{
3786 mtspr(SPRN_PSPB, 0);
3787 mtspr(SPRN_WORT, 0);
3788 mtspr(SPRN_UAMOR, 0);
3789
3790 mtspr(SPRN_DSCR, host_os_sprs->dscr);
3791 mtspr(SPRN_TIDR, host_os_sprs->tidr);
3792 mtspr(SPRN_IAMR, host_os_sprs->iamr);
3793
3794 if (host_os_sprs->amr != vcpu->arch.amr)
3795 mtspr(SPRN_AMR, host_os_sprs->amr);
3796
3797 if (host_os_sprs->fscr != vcpu->arch.fscr)
3798 mtspr(SPRN_FSCR, host_os_sprs->fscr);
3799
3800 /* Save guest CTRL register, set runlatch to 1 */
3801 if (!(vcpu->arch.ctrl & 1))
3802 mtspr(SPRN_CTRLT, 1);
3803}
3804
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10003805static inline bool hcall_is_xics(unsigned long req)
3806{
3807 return req == H_EOI || req == H_CPPR || req == H_IPI ||
3808 req == H_IPOLL || req == H_XIRR || req == H_XIRR_X;
3809}
3810
Paul Mackerras95a64322018-10-08 16:30:55 +11003811/*
Nicholas Pigginfae5c9f2021-05-28 19:07:52 +10003812 * Guest entry for POWER9 and later CPUs.
Paul Mackerras95a64322018-10-08 16:30:55 +11003813 */
Wang Wenshengcf59eb12020-09-21 11:22:11 +00003814static int kvmhv_p9_guest_entry(struct kvm_vcpu *vcpu, u64 time_limit,
Paul Mackerras360cae32018-10-08 16:31:04 +11003815 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003816{
3817 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003818 struct p9_host_os_sprs host_os_sprs;
Paul Mackerras95a64322018-10-08 16:30:55 +11003819 s64 dec;
3820 u64 tb;
3821 int trap, save_pmu;
3822
Nicholas Piggin89d35b22021-05-28 19:07:34 +10003823 WARN_ON_ONCE(vcpu->arch.ceded);
3824
Paul Mackerras95a64322018-10-08 16:30:55 +11003825 dec = mfspr(SPRN_DEC);
3826 tb = mftb();
Paul Mackerras35dfb432020-09-03 17:55:40 +10003827 if (dec < 0)
Paul Mackerras95a64322018-10-08 16:30:55 +11003828 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3829 local_paca->kvm_hstate.dec_expires = dec + tb;
3830 if (local_paca->kvm_hstate.dec_expires < time_limit)
3831 time_limit = local_paca->kvm_hstate.dec_expires;
3832
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003833 save_p9_host_os_sprs(&host_os_sprs);
Paul Mackerras95a64322018-10-08 16:30:55 +11003834
3835 kvmhv_save_host_pmu(); /* saves it to PACA kvm_hstate */
3836
3837 kvmppc_subcore_enter_guest();
3838
3839 vc->entry_exit_map = 1;
3840 vc->in_guest = 1;
3841
3842 if (vcpu->arch.vpa.pinned_addr) {
3843 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3844 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3845 lp->yield_count = cpu_to_be32(yield_count);
3846 vcpu->arch.vpa.dirty = 1;
3847 }
3848
3849 if (cpu_has_feature(CPU_FTR_TM) ||
3850 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3851 kvmppc_restore_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3852
3853 kvmhv_load_guest_pmu(vcpu);
3854
3855 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3856 load_fp_state(&vcpu->arch.fp);
3857#ifdef CONFIG_ALTIVEC
3858 load_vr_state(&vcpu->arch.vr);
3859#endif
Suraj Jitindar Singh44b198a2019-04-30 10:41:23 +10003860 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
Paul Mackerras95a64322018-10-08 16:30:55 +11003861
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003862 load_spr_state(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11003863
Nicholas Piggin6ffe2c62021-05-28 19:07:30 +10003864 /*
3865 * When setting DEC, we must always deal with irq_work_raise via NMI vs
3866 * setting DEC. The problem occurs right as we switch into guest mode
3867 * if a NMI hits and sets pending work and sets DEC, then that will
3868 * apply to the guest and not bring us back to the host.
3869 *
3870 * irq_work_raise could check a flag (or possibly LPCR[HDICE] for
3871 * example) and set HDEC to 1? That wouldn't solve the nested hv
3872 * case which needs to abort the hcall or zero the time limit.
3873 *
3874 * XXX: Another day's problem.
3875 */
Paul Mackerras95a64322018-10-08 16:30:55 +11003876 mtspr(SPRN_DEC, vcpu->arch.dec_expires - mftb());
3877
Paul Mackerras360cae32018-10-08 16:31:04 +11003878 if (kvmhv_on_pseries()) {
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003879 /*
3880 * We need to save and restore the guest visible part of the
3881 * psscr (i.e. using SPRN_PSSCR_PR) since the hypervisor
3882 * doesn't do this for us. Note only required if pseries since
Nicholas Pigginc00366e22021-05-28 19:07:35 +10003883 * this is done in kvmhv_vcpu_entry_p9() below otherwise.
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003884 */
3885 unsigned long host_psscr;
Paul Mackerras360cae32018-10-08 16:31:04 +11003886 /* call our hypervisor to load up HV regs and go */
3887 struct hv_guest_state hvregs;
Paul Mackerras95a64322018-10-08 16:30:55 +11003888
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003889 host_psscr = mfspr(SPRN_PSSCR_PR);
3890 mtspr(SPRN_PSSCR_PR, vcpu->arch.psscr);
Paul Mackerras360cae32018-10-08 16:31:04 +11003891 kvmhv_save_hv_regs(vcpu, &hvregs);
3892 hvregs.lpcr = lpcr;
3893 vcpu->arch.regs.msr = vcpu->arch.shregs.msr;
3894 hvregs.version = HV_GUEST_STATE_VERSION;
3895 if (vcpu->arch.nested) {
3896 hvregs.lpid = vcpu->arch.nested->shadow_lpid;
3897 hvregs.vcpu_token = vcpu->arch.nested_vcpu_id;
3898 } else {
3899 hvregs.lpid = vcpu->kvm->arch.lpid;
3900 hvregs.vcpu_token = vcpu->vcpu_id;
3901 }
3902 hvregs.hdec_expiry = time_limit;
Nicholas Piggin6d770e32021-05-28 19:07:36 +10003903 mtspr(SPRN_DAR, vcpu->arch.shregs.dar);
3904 mtspr(SPRN_DSISR, vcpu->arch.shregs.dsisr);
Paul Mackerras360cae32018-10-08 16:31:04 +11003905 trap = plpar_hcall_norets(H_ENTER_NESTED, __pa(&hvregs),
3906 __pa(&vcpu->arch.regs));
3907 kvmhv_restore_hv_return_state(vcpu, &hvregs);
3908 vcpu->arch.shregs.msr = vcpu->arch.regs.msr;
3909 vcpu->arch.shregs.dar = mfspr(SPRN_DAR);
3910 vcpu->arch.shregs.dsisr = mfspr(SPRN_DSISR);
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003911 vcpu->arch.psscr = mfspr(SPRN_PSSCR_PR);
3912 mtspr(SPRN_PSSCR_PR, host_psscr);
Paul Mackerras4bad7772018-10-08 16:31:06 +11003913
3914 /* H_CEDE has to be handled now, not later */
3915 if (trap == BOOK3S_INTERRUPT_SYSCALL && !vcpu->arch.nested &&
3916 kvmppc_get_gpr(vcpu, 3) == H_CEDE) {
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10003917 kvmppc_cede(vcpu);
Michael Roth1f50cc12020-03-10 16:11:28 -05003918 kvmppc_set_gpr(vcpu, 3, 0);
Paul Mackerras4bad7772018-10-08 16:31:06 +11003919 trap = 0;
3920 }
Paul Mackerras360cae32018-10-08 16:31:04 +11003921 } else {
Nicholas Piggin09512c22021-05-28 19:07:31 +10003922 kvmppc_xive_push_vcpu(vcpu);
Nicholas Pigginc00366e22021-05-28 19:07:35 +10003923 trap = kvmhv_vcpu_entry_p9(vcpu, time_limit, lpcr);
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10003924 if (trap == BOOK3S_INTERRUPT_SYSCALL && !vcpu->arch.nested &&
3925 !(vcpu->arch.shregs.msr & MSR_PR)) {
3926 unsigned long req = kvmppc_get_gpr(vcpu, 3);
Nicholas Piggin09512c22021-05-28 19:07:31 +10003927
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10003928 /* H_CEDE has to be handled now, not later */
3929 if (req == H_CEDE) {
3930 kvmppc_cede(vcpu);
3931 kvmppc_xive_rearm_escalation(vcpu); /* may un-cede */
3932 kvmppc_set_gpr(vcpu, 3, 0);
3933 trap = 0;
3934
3935 /* XICS hcalls must be handled before xive is pulled */
3936 } else if (hcall_is_xics(req)) {
3937 int ret;
3938
3939 ret = kvmppc_xive_xics_hcall(vcpu, req);
3940 if (ret != H_TOO_HARD) {
3941 kvmppc_set_gpr(vcpu, 3, ret);
3942 trap = 0;
3943 }
3944 }
3945 }
3946 kvmppc_xive_pull_vcpu(vcpu);
Nicholas Piggin89d35b22021-05-28 19:07:34 +10003947
Nicholas Piggin079a09a2021-05-28 19:07:50 +10003948 if (kvm_is_radix(vcpu->kvm))
3949 vcpu->arch.slb_max = 0;
Paul Mackerras360cae32018-10-08 16:31:04 +11003950 }
Paul Mackerras95a64322018-10-08 16:30:55 +11003951
Paul Mackerras95a64322018-10-08 16:30:55 +11003952 dec = mfspr(SPRN_DEC);
Suraj Jitindar Singh86953772019-06-20 11:46:50 +10003953 if (!(lpcr & LPCR_LD)) /* Sign extend if not using large decrementer */
3954 dec = (s32) dec;
Paul Mackerras95a64322018-10-08 16:30:55 +11003955 tb = mftb();
3956 vcpu->arch.dec_expires = dec + tb;
3957 vcpu->cpu = -1;
3958 vcpu->arch.thread_cpu = -1;
Paul Mackerras95a64322018-10-08 16:30:55 +11003959
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003960 store_spr_state(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11003961
Nicholas Pigginedba6af2021-05-28 19:07:39 +10003962 restore_p9_host_os_sprs(vcpu, &host_os_sprs);
Fabiano Rosas25edcc52021-02-04 17:05:17 -03003963
Paul Mackerras95a64322018-10-08 16:30:55 +11003964 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3965 store_fp_state(&vcpu->arch.fp);
3966#ifdef CONFIG_ALTIVEC
3967 store_vr_state(&vcpu->arch.vr);
3968#endif
Suraj Jitindar Singh44b198a2019-04-30 10:41:23 +10003969 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerras95a64322018-10-08 16:30:55 +11003970
3971 if (cpu_has_feature(CPU_FTR_TM) ||
3972 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3973 kvmppc_save_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3974
3975 save_pmu = 1;
3976 if (vcpu->arch.vpa.pinned_addr) {
3977 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3978 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3979 lp->yield_count = cpu_to_be32(yield_count);
3980 vcpu->arch.vpa.dirty = 1;
3981 save_pmu = lp->pmcregs_in_use;
3982 }
Suraj Jitindar Singh63279ee2019-07-03 11:20:20 +10003983 /* Must save pmu if this guest is capable of running nested guests */
3984 save_pmu |= nesting_enabled(vcpu->kvm);
Paul Mackerras95a64322018-10-08 16:30:55 +11003985
3986 kvmhv_save_guest_pmu(vcpu, save_pmu);
3987
3988 vc->entry_exit_map = 0x101;
3989 vc->in_guest = 0;
3990
3991 mtspr(SPRN_DEC, local_paca->kvm_hstate.dec_expires - mftb());
Nicholas Piggin6ffe2c62021-05-28 19:07:30 +10003992 /* We may have raced with new irq work */
3993 if (test_irq_work_pending())
3994 set_dec(1);
Suraj Jitindar Singhd724c9e2019-05-30 12:17:18 +10003995 mtspr(SPRN_SPRG_VDSO_WRITE, local_paca->sprg_vdso);
Paul Mackerras95a64322018-10-08 16:30:55 +11003996
3997 kvmhv_load_host_pmu();
3998
3999 kvmppc_subcore_exit_guest();
4000
4001 return trap;
4002}
4003
4004/*
Paul Mackerras19ccb762011-07-23 17:42:46 +10004005 * Wait for some other vcpu thread to execute us, and
4006 * wake us up when we need to handle something in the host.
4007 */
Paul Mackerrasec257162015-06-24 21:18:03 +10004008static void kvmppc_wait_for_exec(struct kvmppc_vcore *vc,
4009 struct kvm_vcpu *vcpu, int wait_state)
Paul Mackerras371fefd2011-06-29 00:23:08 +00004010{
Paul Mackerras371fefd2011-06-29 00:23:08 +00004011 DEFINE_WAIT(wait);
4012
Paul Mackerras19ccb762011-07-23 17:42:46 +10004013 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
Paul Mackerrasec257162015-06-24 21:18:03 +10004014 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
4015 spin_unlock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004016 schedule();
Paul Mackerrasec257162015-06-24 21:18:03 +10004017 spin_lock(&vc->lock);
4018 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10004019 finish_wait(&vcpu->arch.cpu_run, &wait);
4020}
Paul Mackerras371fefd2011-06-29 00:23:08 +00004021
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004022static void grow_halt_poll_ns(struct kvmppc_vcore *vc)
4023{
Nir Weiner7fa08e72019-01-27 12:17:14 +02004024 if (!halt_poll_ns_grow)
4025 return;
4026
Nir Weinerdee339b2019-01-27 12:17:16 +02004027 vc->halt_poll_ns *= halt_poll_ns_grow;
4028 if (vc->halt_poll_ns < halt_poll_ns_grow_start)
Nir Weiner49113d32019-01-27 12:17:15 +02004029 vc->halt_poll_ns = halt_poll_ns_grow_start;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004030}
4031
4032static void shrink_halt_poll_ns(struct kvmppc_vcore *vc)
4033{
4034 if (halt_poll_ns_shrink == 0)
4035 vc->halt_poll_ns = 0;
4036 else
4037 vc->halt_poll_ns /= halt_poll_ns_shrink;
4038}
4039
Paul Mackerrasee3308a2017-06-20 15:46:12 +10004040#ifdef CONFIG_KVM_XICS
4041static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
4042{
Paul Mackerras03f95332019-02-04 22:07:20 +11004043 if (!xics_on_xive())
Paul Mackerrasee3308a2017-06-20 15:46:12 +10004044 return false;
Benjamin Herrenschmidt2267ea72018-01-12 13:37:13 +11004045 return vcpu->arch.irq_pending || vcpu->arch.xive_saved_state.pipr <
Paul Mackerrasee3308a2017-06-20 15:46:12 +10004046 vcpu->arch.xive_saved_state.cppr;
4047}
4048#else
4049static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
4050{
4051 return false;
4052}
4053#endif /* CONFIG_KVM_XICS */
4054
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10004055static bool kvmppc_vcpu_woken(struct kvm_vcpu *vcpu)
4056{
4057 if (vcpu->arch.pending_exceptions || vcpu->arch.prodded ||
Paul Mackerrasee3308a2017-06-20 15:46:12 +10004058 kvmppc_doorbell_pending(vcpu) || xive_interrupt_pending(vcpu))
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10004059 return true;
4060
4061 return false;
4062}
4063
Suraj Jitindar Singh908a0932016-10-14 11:53:23 +11004064/*
4065 * Check to see if any of the runnable vcpus on the vcore have pending
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004066 * exceptions or are no longer ceded
4067 */
4068static int kvmppc_vcore_check_block(struct kvmppc_vcore *vc)
4069{
4070 struct kvm_vcpu *vcpu;
4071 int i;
4072
4073 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10004074 if (!vcpu->arch.ceded || kvmppc_vcpu_woken(vcpu))
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004075 return 1;
4076 }
4077
4078 return 0;
4079}
4080
Paul Mackerras19ccb762011-07-23 17:42:46 +10004081/*
4082 * All the vcpus in this vcore are idle, so wait for a decrementer
4083 * or external interrupt to one of the vcpus. vc->lock is held.
4084 */
4085static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
4086{
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004087 ktime_t cur, start_poll, start_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004088 int do_sleep = 1;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004089 u64 block_ns;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11004090
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004091 /* Poll for pending exceptions and ceded state */
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004092 cur = start_poll = ktime_get();
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004093 if (vc->halt_poll_ns) {
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004094 ktime_t stop = ktime_add_ns(start_poll, vc->halt_poll_ns);
Jing Zhang0193cc92021-06-18 22:27:03 +00004095 ++vc->runner->stat.generic.halt_attempted_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004096
4097 vc->vcore_state = VCORE_POLLING;
4098 spin_unlock(&vc->lock);
4099
4100 do {
4101 if (kvmppc_vcore_check_block(vc)) {
4102 do_sleep = 0;
4103 break;
4104 }
4105 cur = ktime_get();
Wanpeng Li6bd5b742021-05-18 05:00:31 -07004106 } while (kvm_vcpu_can_poll(cur, stop));
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004107
4108 spin_lock(&vc->lock);
4109 vc->vcore_state = VCORE_INACTIVE;
4110
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004111 if (!do_sleep) {
Jing Zhang0193cc92021-06-18 22:27:03 +00004112 ++vc->runner->stat.generic.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004113 goto out;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004114 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004115 }
4116
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004117 prepare_to_rcuwait(&vc->wait);
4118 set_current_state(TASK_INTERRUPTIBLE);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004119 if (kvmppc_vcore_check_block(vc)) {
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004120 finish_rcuwait(&vc->wait);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004121 do_sleep = 0;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004122 /* If we polled, count this as a successful poll */
4123 if (vc->halt_poll_ns)
Jing Zhang0193cc92021-06-18 22:27:03 +00004124 ++vc->runner->stat.generic.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004125 goto out;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11004126 }
4127
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004128 start_wait = ktime_get();
4129
Paul Mackerras19ccb762011-07-23 17:42:46 +10004130 vc->vcore_state = VCORE_SLEEPING;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004131 trace_kvmppc_vcore_blocked(vc, 0);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004132 spin_unlock(&vc->lock);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004133 schedule();
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004134 finish_rcuwait(&vc->wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004135 spin_lock(&vc->lock);
4136 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004137 trace_kvmppc_vcore_blocked(vc, 1);
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004138 ++vc->runner->stat.halt_successful_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004139
4140 cur = ktime_get();
4141
4142out:
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004143 block_ns = ktime_to_ns(cur) - ktime_to_ns(start_poll);
4144
4145 /* Attribute wait time */
4146 if (do_sleep) {
Jing Zhang87bcc5f2021-08-02 16:56:32 +00004147 vc->runner->stat.generic.halt_wait_ns +=
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004148 ktime_to_ns(cur) - ktime_to_ns(start_wait);
4149 /* Attribute failed poll time */
4150 if (vc->halt_poll_ns)
Jing Zhang0193cc92021-06-18 22:27:03 +00004151 vc->runner->stat.generic.halt_poll_fail_ns +=
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004152 ktime_to_ns(start_wait) -
4153 ktime_to_ns(start_poll);
4154 } else {
4155 /* Attribute successful poll time */
4156 if (vc->halt_poll_ns)
Jing Zhang0193cc92021-06-18 22:27:03 +00004157 vc->runner->stat.generic.halt_poll_success_ns +=
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004158 ktime_to_ns(cur) -
4159 ktime_to_ns(start_poll);
4160 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004161
4162 /* Adjust poll time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11004163 if (halt_poll_ns) {
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004164 if (block_ns <= vc->halt_poll_ns)
4165 ;
4166 /* We slept and blocked for longer than the max halt time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11004167 else if (vc->halt_poll_ns && block_ns > halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004168 shrink_halt_poll_ns(vc);
4169 /* We slept and our poll time is too small */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11004170 else if (vc->halt_poll_ns < halt_poll_ns &&
4171 block_ns < halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004172 grow_halt_poll_ns(vc);
Suraj Jitindar Singhe03f3922016-10-14 11:53:21 +11004173 if (vc->halt_poll_ns > halt_poll_ns)
4174 vc->halt_poll_ns = halt_poll_ns;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004175 } else
4176 vc->halt_poll_ns = 0;
4177
4178 trace_kvmppc_vcore_wakeup(do_sleep, block_ns);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004179}
4180
Paul Mackerras360cae32018-10-08 16:31:04 +11004181/*
4182 * This never fails for a radix guest, as none of the operations it does
4183 * for a radix guest can fail or have a way to report failure.
Paul Mackerras360cae32018-10-08 16:31:04 +11004184 */
Paul Mackerras432953b2017-11-09 15:37:10 +11004185static int kvmhv_setup_mmu(struct kvm_vcpu *vcpu)
4186{
4187 int r = 0;
4188 struct kvm *kvm = vcpu->kvm;
4189
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004190 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11004191 if (!kvm->arch.mmu_ready) {
4192 if (!kvm_is_radix(kvm))
4193 r = kvmppc_hv_setup_htab_rma(vcpu);
4194 if (!r) {
4195 if (cpu_has_feature(CPU_FTR_ARCH_300))
4196 kvmppc_setup_partition_table(kvm);
4197 kvm->arch.mmu_ready = 1;
4198 }
4199 }
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004200 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11004201 return r;
4202}
4203
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004204static int kvmppc_run_vcpu(struct kvm_vcpu *vcpu)
Paul Mackerras19ccb762011-07-23 17:42:46 +10004205{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004206 struct kvm_run *run = vcpu->run;
Paul Mackerras38c53af2017-11-08 14:44:04 +11004207 int n_ceded, i, r;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004208 struct kvmppc_vcore *vc;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004209 struct kvm_vcpu *v;
Paul Mackerras9e368f22011-06-29 00:40:08 +00004210
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004211 trace_kvmppc_run_vcpu_enter(vcpu);
4212
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004213 run->exit_reason = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004214 vcpu->arch.ret = RESUME_GUEST;
4215 vcpu->arch.trap = 0;
Paul Mackerras2f12f032012-10-15 01:17:17 +00004216 kvmppc_update_vpas(vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004217
Paul Mackerras371fefd2011-06-29 00:23:08 +00004218 /*
4219 * Synchronize with other threads in this virtual core
4220 */
4221 vc = vcpu->arch.vcore;
4222 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004223 vcpu->arch.ceded = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004224 vcpu->arch.run_task = current;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004225 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
Paul Mackerras19ccb762011-07-23 17:42:46 +10004226 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004227 vcpu->arch.busy_preempt = TB_NIL;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004228 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004229 ++vc->n_runnable;
4230
Paul Mackerras19ccb762011-07-23 17:42:46 +10004231 /*
4232 * This happens the first time this is called for a vcpu.
4233 * If the vcore is already running, we may be able to start
4234 * this thread straight away and have it join in.
4235 */
Paul Mackerras8455d792012-10-15 01:17:42 +00004236 if (!signal_pending(current)) {
Paul Mackerrasc0093f12017-11-20 16:12:25 +11004237 if ((vc->vcore_state == VCORE_PIGGYBACK ||
4238 vc->vcore_state == VCORE_RUNNING) &&
Paul Mackerrasec257162015-06-24 21:18:03 +10004239 !VCORE_IS_EXITING(vc)) {
Paul Mackerras2f12f032012-10-15 01:17:17 +00004240 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10004241 kvmppc_start_thread(vcpu, vc);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004242 trace_kvm_guest_enter(vcpu);
Paul Mackerras8455d792012-10-15 01:17:42 +00004243 } else if (vc->vcore_state == VCORE_SLEEPING) {
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004244 rcuwait_wake_up(&vc->wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004245 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00004246
Paul Mackerras8455d792012-10-15 01:17:42 +00004247 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10004248
4249 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
4250 !signal_pending(current)) {
Paul Mackerras072df812017-11-09 14:30:24 +11004251 /* See if the MMU is ready to go */
4252 if (!vcpu->kvm->arch.mmu_ready) {
Paul Mackerras38c53af2017-11-08 14:44:04 +11004253 spin_unlock(&vc->lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11004254 r = kvmhv_setup_mmu(vcpu);
Paul Mackerras38c53af2017-11-08 14:44:04 +11004255 spin_lock(&vc->lock);
4256 if (r) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004257 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4258 run->fail_entry.
Paul Mackerras432953b2017-11-09 15:37:10 +11004259 hardware_entry_failure_reason = 0;
Paul Mackerras38c53af2017-11-08 14:44:04 +11004260 vcpu->arch.ret = r;
4261 break;
4262 }
4263 }
4264
Paul Mackerrasec257162015-06-24 21:18:03 +10004265 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
4266 kvmppc_vcore_end_preempt(vc);
4267
Paul Mackerras8455d792012-10-15 01:17:42 +00004268 if (vc->vcore_state != VCORE_INACTIVE) {
Paul Mackerrasec257162015-06-24 21:18:03 +10004269 kvmppc_wait_for_exec(vc, vcpu, TASK_INTERRUPTIBLE);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004270 continue;
4271 }
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004272 for_each_runnable_thread(i, v, vc) {
Scott Wood7e28e60e2011-11-08 18:23:20 -06004273 kvmppc_core_prepare_to_enter(v);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004274 if (signal_pending(v->arch.run_task)) {
4275 kvmppc_remove_runnable(vc, v);
4276 v->stat.signal_exits++;
Tianjia Zhang2610a572020-04-27 12:35:10 +08004277 v->run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004278 v->arch.ret = -EINTR;
4279 wake_up(&v->arch.cpu_run);
4280 }
4281 }
Paul Mackerras8455d792012-10-15 01:17:42 +00004282 if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
4283 break;
Paul Mackerras8455d792012-10-15 01:17:42 +00004284 n_ceded = 0;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004285 for_each_runnable_thread(i, v, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10004286 if (!kvmppc_vcpu_woken(v))
Paul Mackerras8455d792012-10-15 01:17:42 +00004287 n_ceded += v->arch.ceded;
Paul Mackerras4619ac82013-04-17 20:31:41 +00004288 else
4289 v->arch.ceded = 0;
4290 }
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004291 vc->runner = vcpu;
4292 if (n_ceded == vc->n_runnable) {
Paul Mackerras8455d792012-10-15 01:17:42 +00004293 kvmppc_vcore_blocked(vc);
Konstantin Khlebnikovc56dadf2015-07-15 12:52:03 +03004294 } else if (need_resched()) {
Paul Mackerrasec257162015-06-24 21:18:03 +10004295 kvmppc_vcore_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004296 /* Let something else run */
4297 cond_resched_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10004298 if (vc->vcore_state == VCORE_PREEMPT)
4299 kvmppc_vcore_end_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004300 } else {
Paul Mackerras8455d792012-10-15 01:17:42 +00004301 kvmppc_run_core(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004302 }
Paul Mackerras0456ec42012-02-03 00:56:21 +00004303 vc->runner = NULL;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004304 }
4305
Paul Mackerras8455d792012-10-15 01:17:42 +00004306 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
4307 (vc->vcore_state == VCORE_RUNNING ||
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004308 vc->vcore_state == VCORE_EXITING ||
4309 vc->vcore_state == VCORE_PIGGYBACK))
Paul Mackerrasec257162015-06-24 21:18:03 +10004310 kvmppc_wait_for_exec(vc, vcpu, TASK_UNINTERRUPTIBLE);
Paul Mackerras8455d792012-10-15 01:17:42 +00004311
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004312 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
4313 kvmppc_vcore_end_preempt(vc);
4314
Paul Mackerras8455d792012-10-15 01:17:42 +00004315 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
4316 kvmppc_remove_runnable(vc, vcpu);
4317 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004318 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras8455d792012-10-15 01:17:42 +00004319 vcpu->arch.ret = -EINTR;
4320 }
4321
4322 if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) {
4323 /* Wake up some vcpu to run the core */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004324 i = -1;
4325 v = next_runnable_thread(vc, &i);
Paul Mackerras8455d792012-10-15 01:17:42 +00004326 wake_up(&v->arch.cpu_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004327 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00004328
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004329 trace_kvmppc_run_vcpu_exit(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004330 spin_unlock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004331 return vcpu->arch.ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004332}
4333
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004334int kvmhv_run_single_vcpu(struct kvm_vcpu *vcpu, u64 time_limit,
Paul Mackerras360cae32018-10-08 16:31:04 +11004335 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11004336{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004337 struct kvm_run *run = vcpu->run;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11004338 int trap, r, pcpu;
Nicholas Piggin48013cb2021-05-28 19:07:32 +10004339 int srcu_idx;
Paul Mackerras95a64322018-10-08 16:30:55 +11004340 struct kvmppc_vcore *vc;
4341 struct kvm *kvm = vcpu->kvm;
Paul Mackerras360cae32018-10-08 16:31:04 +11004342 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras95a64322018-10-08 16:30:55 +11004343
4344 trace_kvmppc_run_vcpu_enter(vcpu);
4345
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004346 run->exit_reason = 0;
Paul Mackerras95a64322018-10-08 16:30:55 +11004347 vcpu->arch.ret = RESUME_GUEST;
4348 vcpu->arch.trap = 0;
4349
4350 vc = vcpu->arch.vcore;
4351 vcpu->arch.ceded = 0;
4352 vcpu->arch.run_task = current;
Paul Mackerras95a64322018-10-08 16:30:55 +11004353 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
4354 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
4355 vcpu->arch.busy_preempt = TB_NIL;
4356 vcpu->arch.last_inst = KVM_INST_FETCH_FAILED;
4357 vc->runnable_threads[0] = vcpu;
4358 vc->n_runnable = 1;
4359 vc->runner = vcpu;
4360
4361 /* See if the MMU is ready to go */
Nicholas Piggin079a09a2021-05-28 19:07:50 +10004362 if (!kvm->arch.mmu_ready) {
4363 r = kvmhv_setup_mmu(vcpu);
4364 if (r) {
4365 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4366 run->fail_entry.hardware_entry_failure_reason = 0;
4367 vcpu->arch.ret = r;
4368 return r;
4369 }
4370 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004371
4372 if (need_resched())
4373 cond_resched();
4374
4375 kvmppc_update_vpas(vcpu);
4376
4377 init_vcore_to_run(vc);
4378 vc->preempt_tb = TB_NIL;
4379
4380 preempt_disable();
4381 pcpu = smp_processor_id();
4382 vc->pcpu = pcpu;
Nicholas Piggin079a09a2021-05-28 19:07:50 +10004383 if (kvm_is_radix(kvm))
4384 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004385
4386 local_irq_disable();
4387 hard_irq_disable();
4388 if (signal_pending(current))
4389 goto sigpend;
4390 if (lazy_irq_pending() || need_resched() || !kvm->arch.mmu_ready)
4391 goto out;
4392
Paul Mackerras360cae32018-10-08 16:31:04 +11004393 if (!nested) {
4394 kvmppc_core_prepare_to_enter(vcpu);
4395 if (vcpu->arch.doorbell_request) {
4396 vc->dpdes = 1;
4397 smp_wmb();
4398 vcpu->arch.doorbell_request = 0;
4399 }
4400 if (test_bit(BOOK3S_IRQPRIO_EXTERNAL,
4401 &vcpu->arch.pending_exceptions))
4402 lpcr |= LPCR_MER;
4403 } else if (vcpu->arch.pending_exceptions ||
4404 vcpu->arch.doorbell_request ||
4405 xive_interrupt_pending(vcpu)) {
4406 vcpu->arch.ret = RESUME_HOST;
4407 goto out;
4408 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004409
4410 kvmppc_clear_host_core(pcpu);
4411
Paul Mackerras95a64322018-10-08 16:30:55 +11004412 local_paca->kvm_hstate.napping = 0;
4413 local_paca->kvm_hstate.kvm_split_mode = NULL;
4414 kvmppc_start_thread(vcpu, vc);
4415 kvmppc_create_dtl_entry(vcpu, vc);
4416 trace_kvm_guest_enter(vcpu);
4417
4418 vc->vcore_state = VCORE_RUNNING;
4419 trace_kvmppc_run_core(vc, 0);
4420
Paul Mackerras95a64322018-10-08 16:30:55 +11004421 guest_enter_irqoff();
4422
4423 srcu_idx = srcu_read_lock(&kvm->srcu);
4424
4425 this_cpu_disable_ftrace();
4426
Paul Mackerras1b28d552019-05-28 15:01:59 +10004427 /* Tell lockdep that we're about to enable interrupts */
4428 trace_hardirqs_on();
4429
Paul Mackerras360cae32018-10-08 16:31:04 +11004430 trap = kvmhv_p9_guest_entry(vcpu, time_limit, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004431 vcpu->arch.trap = trap;
4432
Paul Mackerras1b28d552019-05-28 15:01:59 +10004433 trace_hardirqs_off();
4434
Paul Mackerras95a64322018-10-08 16:30:55 +11004435 this_cpu_enable_ftrace();
4436
4437 srcu_read_unlock(&kvm->srcu, srcu_idx);
4438
Paul Mackerras95a64322018-10-08 16:30:55 +11004439 set_irq_happened(trap);
4440
4441 kvmppc_set_host_core(pcpu);
4442
Nicholas Piggin11266522021-01-30 23:08:12 +10004443 guest_exit_irqoff();
4444
Paul Mackerras95a64322018-10-08 16:30:55 +11004445 local_irq_enable();
Paul Mackerras95a64322018-10-08 16:30:55 +11004446
4447 cpumask_clear_cpu(pcpu, &kvm->arch.cpu_in_guest);
4448
4449 preempt_enable();
4450
Suraj Jitindar Singh3c25ab32019-06-20 11:46:51 +10004451 /*
4452 * cancel pending decrementer exception if DEC is now positive, or if
4453 * entering a nested guest in which case the decrementer is now owned
4454 * by L2 and the L1 decrementer is provided in hdec_expires
4455 */
4456 if (kvmppc_core_pending_dec(vcpu) &&
4457 ((get_tb() < vcpu->arch.dec_expires) ||
4458 (trap == BOOK3S_INTERRUPT_SYSCALL &&
4459 kvmppc_get_gpr(vcpu, 3) == H_ENTER_NESTED)))
Paul Mackerras95a64322018-10-08 16:30:55 +11004460 kvmppc_core_dequeue_dec(vcpu);
4461
4462 trace_kvm_guest_exit(vcpu);
4463 r = RESUME_GUEST;
Paul Mackerras360cae32018-10-08 16:31:04 +11004464 if (trap) {
4465 if (!nested)
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004466 r = kvmppc_handle_exit_hv(vcpu, current);
Paul Mackerras360cae32018-10-08 16:31:04 +11004467 else
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004468 r = kvmppc_handle_nested_exit(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11004469 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004470 vcpu->arch.ret = r;
4471
4472 if (is_kvmppc_resume_guest(r) && vcpu->arch.ceded &&
4473 !kvmppc_vcpu_woken(vcpu)) {
4474 kvmppc_set_timer(vcpu);
4475 while (vcpu->arch.ceded && !kvmppc_vcpu_woken(vcpu)) {
4476 if (signal_pending(current)) {
4477 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004478 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras95a64322018-10-08 16:30:55 +11004479 vcpu->arch.ret = -EINTR;
4480 break;
4481 }
4482 spin_lock(&vc->lock);
4483 kvmppc_vcore_blocked(vc);
4484 spin_unlock(&vc->lock);
4485 }
4486 }
4487 vcpu->arch.ceded = 0;
4488
4489 vc->vcore_state = VCORE_INACTIVE;
4490 trace_kvmppc_run_core(vc, 1);
4491
4492 done:
4493 kvmppc_remove_runnable(vc, vcpu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004494 trace_kvmppc_run_vcpu_exit(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004495
4496 return vcpu->arch.ret;
4497
4498 sigpend:
4499 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004500 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras95a64322018-10-08 16:30:55 +11004501 vcpu->arch.ret = -EINTR;
4502 out:
4503 local_irq_enable();
4504 preempt_enable();
4505 goto done;
4506}
4507
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004508static int kvmppc_vcpu_run_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004509{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004510 struct kvm_run *run = vcpu->run;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004511 int r;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004512 int srcu_idx;
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004513 unsigned long ebb_regs[3] = {}; /* shut up GCC */
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004514 unsigned long user_tar = 0;
4515 unsigned int user_vrsave;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004516 struct kvm *kvm;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004517
Alexander Grafaf8f38b2011-08-10 13:57:08 +02004518 if (!vcpu->arch.sane) {
4519 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4520 return -EINVAL;
4521 }
4522
Paul Mackerras46a704f2017-06-15 16:10:27 +10004523 /*
4524 * Don't allow entry with a suspended transaction, because
4525 * the guest entry/exit code will lose it.
4526 * If the guest has TM enabled, save away their TM-related SPRs
4527 * (they will get restored by the TM unavailable interrupt).
4528 */
4529#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
4530 if (cpu_has_feature(CPU_FTR_TM) && current->thread.regs &&
4531 (current->thread.regs->msr & MSR_TM)) {
4532 if (MSR_TM_ACTIVE(current->thread.regs->msr)) {
4533 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4534 run->fail_entry.hardware_entry_failure_reason = 0;
4535 return -EINVAL;
4536 }
Paul Mackerrase4705712017-07-21 13:57:14 +10004537 /* Enable TM so we can read the TM SPRs */
4538 mtmsr(mfmsr() | MSR_TM);
Paul Mackerras46a704f2017-06-15 16:10:27 +10004539 current->thread.tm_tfhar = mfspr(SPRN_TFHAR);
4540 current->thread.tm_tfiar = mfspr(SPRN_TFIAR);
4541 current->thread.tm_texasr = mfspr(SPRN_TEXASR);
4542 current->thread.regs->msr &= ~MSR_TM;
4543 }
4544#endif
4545
Paul Mackerras7aa15842018-04-20 19:53:22 +10004546 /*
4547 * Force online to 1 for the sake of old userspace which doesn't
4548 * set it.
4549 */
4550 if (!vcpu->arch.online) {
4551 atomic_inc(&vcpu->arch.vcore->online_count);
4552 vcpu->arch.online = 1;
4553 }
4554
Scott Wood25051b5a2011-11-08 18:23:23 -06004555 kvmppc_core_prepare_to_enter(vcpu);
4556
Paul Mackerras19ccb762011-07-23 17:42:46 +10004557 /* No need to go into the guest when all we'll do is come back out */
4558 if (signal_pending(current)) {
4559 run->exit_reason = KVM_EXIT_INTR;
4560 return -EINTR;
4561 }
4562
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004563 kvm = vcpu->kvm;
4564 atomic_inc(&kvm->arch.vcpus_running);
4565 /* Order vcpus_running vs. mmu_ready, see kvmppc_alloc_reset_hpt */
Paul Mackerras32fad282012-05-04 02:32:53 +00004566 smp_mb();
4567
Anton Blanchard579e6332015-10-29 11:44:09 +11004568 flush_all_to_thread(current);
4569
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004570 /* Save userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004571 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4572 ebb_regs[0] = mfspr(SPRN_EBBHR);
4573 ebb_regs[1] = mfspr(SPRN_EBBRR);
4574 ebb_regs[2] = mfspr(SPRN_BESCR);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004575 user_tar = mfspr(SPRN_TAR);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004576 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004577 user_vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004578
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004579 vcpu->arch.waitp = &vcpu->arch.vcore->wait;
Leonardo Bras8a9c8922019-11-26 19:36:30 -03004580 vcpu->arch.pgdir = kvm->mm->pgd;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004581 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004582
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004583 do {
Nicholas Piggin0bf7e1b2021-05-28 19:07:51 +10004584 if (cpu_has_feature(CPU_FTR_ARCH_300))
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004585 r = kvmhv_run_single_vcpu(vcpu, ~(u64)0,
Paul Mackerras360cae32018-10-08 16:31:04 +11004586 vcpu->arch.vcore->lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004587 else
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004588 r = kvmppc_run_vcpu(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004589
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10004590 if (run->exit_reason == KVM_EXIT_PAPR_HCALL) {
4591 if (WARN_ON_ONCE(vcpu->arch.shregs.msr & MSR_PR)) {
4592 /*
4593 * These should have been caught reflected
4594 * into the guest by now. Final sanity check:
4595 * don't allow userspace to execute hcalls in
4596 * the hypervisor.
4597 */
4598 r = RESUME_GUEST;
4599 continue;
4600 }
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004601 trace_kvm_hcall_enter(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004602 r = kvmppc_pseries_do_hcall(vcpu);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004603 trace_kvm_hcall_exit(vcpu, r);
Scott Wood7e28e60e2011-11-08 18:23:20 -06004604 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004605 } else if (r == RESUME_PAGE_FAULT) {
Paul Mackerras432953b2017-11-09 15:37:10 +11004606 srcu_idx = srcu_read_lock(&kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004607 r = kvmppc_book3s_hv_page_fault(vcpu,
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004608 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
Paul Mackerras432953b2017-11-09 15:37:10 +11004609 srcu_read_unlock(&kvm->srcu, srcu_idx);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004610 } else if (r == RESUME_PASSTHROUGH) {
Paul Mackerras03f95332019-02-04 22:07:20 +11004611 if (WARN_ON(xics_on_xive()))
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004612 r = H_SUCCESS;
4613 else
4614 r = kvmppc_xics_rm_complete(vcpu, 0);
4615 }
Greg Kurze59d24e2014-02-06 17:36:56 +01004616 } while (is_kvmppc_resume_guest(r));
Paul Mackerras32fad282012-05-04 02:32:53 +00004617
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004618 /* Restore userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004619 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4620 mtspr(SPRN_EBBHR, ebb_regs[0]);
4621 mtspr(SPRN_EBBRR, ebb_regs[1]);
4622 mtspr(SPRN_BESCR, ebb_regs[2]);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004623 mtspr(SPRN_TAR, user_tar);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004624 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004625 mtspr(SPRN_VRSAVE, user_vrsave);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004626
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004627 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras432953b2017-11-09 15:37:10 +11004628 atomic_dec(&kvm->arch.vcpus_running);
Nicholas Piggin59dc5bf2021-06-18 01:51:03 +10004629
4630 srr_regs_clobbered();
4631
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004632 return r;
4633}
4634
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004635static void kvmppc_add_seg_page_size(struct kvm_ppc_one_seg_page_size **sps,
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004636 int shift, int sllp)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004637{
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004638 (*sps)->page_shift = shift;
4639 (*sps)->slb_enc = sllp;
4640 (*sps)->enc[0].page_shift = shift;
4641 (*sps)->enc[0].pte_enc = kvmppc_pgsize_lp_encoding(shift, shift);
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304642 /*
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004643 * Add 16MB MPSS support (may get filtered out by userspace)
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304644 */
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004645 if (shift != 24) {
4646 int penc = kvmppc_pgsize_lp_encoding(shift, 24);
4647 if (penc != -1) {
4648 (*sps)->enc[1].page_shift = 24;
4649 (*sps)->enc[1].pte_enc = penc;
4650 }
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304651 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004652 (*sps)++;
4653}
4654
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304655static int kvm_vm_ioctl_get_smmu_info_hv(struct kvm *kvm,
4656 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004657{
4658 struct kvm_ppc_one_seg_page_size *sps;
4659
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004660 /*
Paul Mackerrase3bfed12017-08-25 19:53:39 +10004661 * POWER7, POWER8 and POWER9 all support 32 storage keys for data.
4662 * POWER7 doesn't support keys for instruction accesses,
4663 * POWER8 and POWER9 do.
4664 */
4665 info->data_keys = 32;
4666 info->instr_keys = cpu_has_feature(CPU_FTR_ARCH_207S) ? 32 : 0;
4667
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004668 /* POWER7, 8 and 9 all have 1T segments and 32-entry SLB */
4669 info->flags = KVM_PPC_PAGE_SIZES_REAL | KVM_PPC_1T_SEGMENTS;
4670 info->slb_size = 32;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004671
4672 /* We only support these sizes for now, and no muti-size segments */
4673 sps = &info->sps[0];
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004674 kvmppc_add_seg_page_size(&sps, 12, 0);
4675 kvmppc_add_seg_page_size(&sps, 16, SLB_VSID_L | SLB_VSID_LP_01);
4676 kvmppc_add_seg_page_size(&sps, 24, SLB_VSID_L);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004677
Paul Mackerras901f8c32018-10-08 14:24:30 +11004678 /* If running as a nested hypervisor, we don't support HPT guests */
4679 if (kvmhv_on_pseries())
4680 info->flags |= KVM_PPC_NO_HASH;
4681
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004682 return 0;
4683}
4684
Paul Mackerras82ed3612011-12-15 02:03:22 +00004685/*
4686 * Get (and clear) the dirty memory log for a memory slot.
4687 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304688static int kvm_vm_ioctl_get_dirty_log_hv(struct kvm *kvm,
4689 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004690{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004691 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004692 struct kvm_memory_slot *memslot;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004693 int i, r;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004694 unsigned long n;
Paul Mackerrase641a312017-10-26 16:39:19 +11004695 unsigned long *buf, *p;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004696 struct kvm_vcpu *vcpu;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004697
4698 mutex_lock(&kvm->slots_lock);
4699
4700 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07004701 if (log->slot >= KVM_USER_MEM_SLOTS)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004702 goto out;
4703
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004704 slots = kvm_memslots(kvm);
4705 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004706 r = -ENOENT;
Sean Christopherson0577d1a2020-02-18 13:07:31 -08004707 if (!memslot || !memslot->dirty_bitmap)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004708 goto out;
4709
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004710 /*
Paul Mackerrase641a312017-10-26 16:39:19 +11004711 * Use second half of bitmap area because both HPT and radix
4712 * accumulate bits in the first half.
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004713 */
Paul Mackerras82ed3612011-12-15 02:03:22 +00004714 n = kvm_dirty_bitmap_bytes(memslot);
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004715 buf = memslot->dirty_bitmap + n / sizeof(long);
4716 memset(buf, 0, n);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004717
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004718 if (kvm_is_radix(kvm))
4719 r = kvmppc_hv_get_dirty_log_radix(kvm, memslot, buf);
4720 else
4721 r = kvmppc_hv_get_dirty_log_hpt(kvm, memslot, buf);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004722 if (r)
4723 goto out;
4724
Paul Mackerrase641a312017-10-26 16:39:19 +11004725 /*
4726 * We accumulate dirty bits in the first half of the
4727 * memslot's dirty_bitmap area, for when pages are paged
4728 * out or modified by the host directly. Pick up these
4729 * bits and add them to the map.
4730 */
4731 p = memslot->dirty_bitmap;
4732 for (i = 0; i < n / sizeof(long); ++i)
4733 buf[i] |= xchg(&p[i], 0);
4734
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004735 /* Harvest dirty bits from VPA and DTL updates */
4736 /* Note: we never modify the SLB shadow buffer areas */
4737 kvm_for_each_vcpu(i, vcpu, kvm) {
4738 spin_lock(&vcpu->arch.vpa_update_lock);
4739 kvmppc_harvest_vpa_dirty(&vcpu->arch.vpa, memslot, buf);
4740 kvmppc_harvest_vpa_dirty(&vcpu->arch.dtl, memslot, buf);
4741 spin_unlock(&vcpu->arch.vpa_update_lock);
4742 }
4743
Paul Mackerras82ed3612011-12-15 02:03:22 +00004744 r = -EFAULT;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004745 if (copy_to_user(log->dirty_bitmap, buf, n))
Paul Mackerras82ed3612011-12-15 02:03:22 +00004746 goto out;
4747
4748 r = 0;
4749out:
4750 mutex_unlock(&kvm->slots_lock);
4751 return r;
4752}
4753
Sean Christophersone96c81e2020-02-18 13:07:27 -08004754static void kvmppc_core_free_memslot_hv(struct kvm_memory_slot *slot)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004755{
Sean Christophersone96c81e2020-02-18 13:07:27 -08004756 vfree(slot->arch.rmap);
4757 slot->arch.rmap = NULL;
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004758}
4759
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304760static int kvmppc_core_prepare_memory_region_hv(struct kvm *kvm,
Sean Christopherson82307e62020-02-18 13:07:18 -08004761 struct kvm_memory_slot *slot,
4762 const struct kvm_userspace_memory_region *mem,
4763 enum kvm_mr_change change)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004764{
Sean Christopherson82307e62020-02-18 13:07:18 -08004765 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
4766
4767 if (change == KVM_MR_CREATE) {
4768 slot->arch.rmap = vzalloc(array_size(npages,
4769 sizeof(*slot->arch.rmap)));
4770 if (!slot->arch.rmap)
4771 return -ENOMEM;
4772 }
4773
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004774 return 0;
4775}
4776
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304777static void kvmppc_core_commit_memory_region_hv(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02004778 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004779 const struct kvm_memory_slot *old,
Bharata B Raof032b732018-12-12 15:15:30 +11004780 const struct kvm_memory_slot *new,
4781 enum kvm_mr_change change)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004782{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004783 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004784
Yongji Xiea56ee9f2016-11-04 13:55:12 +08004785 /*
4786 * If we are making a new memslot, it might make
4787 * some address that was previously cached as emulated
4788 * MMIO be no longer emulated MMIO, so invalidate
4789 * all the caches of emulated MMIO translations.
4790 */
4791 if (npages)
4792 atomic64_inc(&kvm->arch.mmio_update);
Paul Mackerras5af3e9d2018-12-12 15:17:17 +11004793
4794 /*
4795 * For change == KVM_MR_MOVE or KVM_MR_DELETE, higher levels
4796 * have already called kvm_arch_flush_shadow_memslot() to
4797 * flush shadow mappings. For KVM_MR_CREATE we have no
4798 * previous mappings. So the only case to handle is
4799 * KVM_MR_FLAGS_ONLY when the KVM_MEM_LOG_DIRTY_PAGES bit
4800 * has been changed.
4801 * For radix guests, we flush on setting KVM_MEM_LOG_DIRTY_PAGES
4802 * to get rid of any THP PTEs in the partition-scoped page tables
4803 * so we can track dirtiness at the page level; we flush when
4804 * clearing KVM_MEM_LOG_DIRTY_PAGES so that we can go back to
4805 * using THP PTEs.
4806 */
4807 if (change == KVM_MR_FLAGS_ONLY && kvm_is_radix(kvm) &&
4808 ((new->flags ^ old->flags) & KVM_MEM_LOG_DIRTY_PAGES))
4809 kvmppc_radix_flush_memslot(kvm, old);
Bharata B Raoc3262252019-11-25 08:36:29 +05304810 /*
4811 * If UV hasn't yet called H_SVM_INIT_START, don't register memslots.
4812 */
4813 if (!kvm->arch.secure_guest)
4814 return;
4815
4816 switch (change) {
4817 case KVM_MR_CREATE:
Laurent Dufoura2ce7202020-07-27 11:07:18 -07004818 /*
4819 * @TODO kvmppc_uvmem_memslot_create() can fail and
4820 * return error. Fix this.
4821 */
4822 kvmppc_uvmem_memslot_create(kvm, new);
Bharata B Raoc3262252019-11-25 08:36:29 +05304823 break;
4824 case KVM_MR_DELETE:
Laurent Dufoura2ce7202020-07-27 11:07:18 -07004825 kvmppc_uvmem_memslot_delete(kvm, old);
Bharata B Raoc3262252019-11-25 08:36:29 +05304826 break;
4827 default:
4828 /* TODO: Handle KVM_MR_MOVE */
4829 break;
4830 }
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004831}
4832
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004833/*
4834 * Update LPCR values in kvm->arch and in vcores.
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004835 * Caller must hold kvm->arch.mmu_setup_lock (for mutual exclusion
4836 * of kvm->arch.lpcr update).
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004837 */
4838void kvmppc_update_lpcr(struct kvm *kvm, unsigned long lpcr, unsigned long mask)
4839{
4840 long int i;
4841 u32 cores_done = 0;
4842
4843 if ((kvm->arch.lpcr & mask) == lpcr)
4844 return;
4845
4846 kvm->arch.lpcr = (kvm->arch.lpcr & ~mask) | lpcr;
4847
4848 for (i = 0; i < KVM_MAX_VCORES; ++i) {
4849 struct kvmppc_vcore *vc = kvm->arch.vcores[i];
4850 if (!vc)
4851 continue;
Nicholas Piggin67145ef2021-04-12 11:48:36 +10004852
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004853 spin_lock(&vc->lock);
4854 vc->lpcr = (vc->lpcr & ~mask) | lpcr;
Nicholas Piggin67145ef2021-04-12 11:48:36 +10004855 verify_lpcr(kvm, vc->lpcr);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004856 spin_unlock(&vc->lock);
4857 if (++cores_done >= kvm->arch.online_vcores)
4858 break;
4859 }
4860}
4861
Paul Mackerrasded13fc2017-11-22 14:38:53 +11004862void kvmppc_setup_partition_table(struct kvm *kvm)
Paul Mackerras7a840842016-11-16 22:25:20 +11004863{
4864 unsigned long dw0, dw1;
4865
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004866 if (!kvm_is_radix(kvm)) {
4867 /* PS field - page size for VRMA */
4868 dw0 = ((kvm->arch.vrma_slb_v & SLB_VSID_L) >> 1) |
4869 ((kvm->arch.vrma_slb_v & SLB_VSID_LP) << 1);
4870 /* HTABSIZE and HTABORG fields */
4871 dw0 |= kvm->arch.sdr1;
Paul Mackerras7a840842016-11-16 22:25:20 +11004872
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004873 /* Second dword as set by userspace */
4874 dw1 = kvm->arch.process_table;
4875 } else {
4876 dw0 = PATB_HR | radix__get_tree_size() |
4877 __pa(kvm->arch.pgtable) | RADIX_PGD_INDEX_SIZE;
4878 dw1 = PATB_GR | kvm->arch.process_table;
4879 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004880 kvmhv_set_ptbl_entry(kvm->arch.lpid, dw0, dw1);
Paul Mackerras7a840842016-11-16 22:25:20 +11004881}
4882
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004883/*
4884 * Set up HPT (hashed page table) and RMA (real-mode area).
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004885 * Must be called with kvm->arch.mmu_setup_lock held.
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004886 */
Paul Mackerras32fad282012-05-04 02:32:53 +00004887static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004888{
4889 int err = 0;
4890 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004891 unsigned long hva;
4892 struct kvm_memory_slot *memslot;
4893 struct vm_area_struct *vma;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004894 unsigned long lpcr = 0, senc;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004895 unsigned long psize, porder;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004896 int srcu_idx;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004897
Paul Mackerras32fad282012-05-04 02:32:53 +00004898 /* Allocate hashed page table (if not done already) and reset it */
David Gibson3f9d4f52016-12-20 16:49:00 +11004899 if (!kvm->arch.hpt.virt) {
David Gibsonaae07772016-12-20 16:49:02 +11004900 int order = KVM_DEFAULT_HPT_ORDER;
4901 struct kvm_hpt_info info;
4902
4903 err = kvmppc_allocate_hpt(&info, order);
4904 /* If we get here, it means userspace didn't specify a
4905 * size explicitly. So, try successively smaller
4906 * sizes if the default failed. */
4907 while ((err == -ENOMEM) && --order >= PPC_MIN_HPT_ORDER)
4908 err = kvmppc_allocate_hpt(&info, order);
4909
4910 if (err < 0) {
Paul Mackerras32fad282012-05-04 02:32:53 +00004911 pr_err("KVM: Couldn't alloc HPT\n");
4912 goto out;
4913 }
David Gibsonaae07772016-12-20 16:49:02 +11004914
4915 kvmppc_set_hpt(kvm, &info);
Paul Mackerras32fad282012-05-04 02:32:53 +00004916 }
4917
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004918 /* Look up the memslot for guest physical address 0 */
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004919 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004920 memslot = gfn_to_memslot(kvm, 0);
4921
4922 /* We must have some memory at 0 by now */
4923 err = -EINVAL;
4924 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004925 goto out_srcu;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004926
4927 /* Look up the VMA for the start of this memory slot */
4928 hva = memslot->userspace_addr;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07004929 mmap_read_lock(kvm->mm);
Liam Howlett900c83f2021-06-28 19:39:05 -07004930 vma = vma_lookup(kvm->mm, hva);
4931 if (!vma || (vma->vm_flags & VM_IO))
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004932 goto up_out;
4933
4934 psize = vma_kernel_pagesize(vma);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004935
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07004936 mmap_read_unlock(kvm->mm);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004937
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004938 /* We can handle 4k, 64k or 16M pages in the VRMA */
Paul Mackerrasdebd5742018-03-02 15:38:04 +11004939 if (psize >= 0x1000000)
4940 psize = 0x1000000;
4941 else if (psize >= 0x10000)
4942 psize = 0x10000;
4943 else
4944 psize = 0x1000;
4945 porder = __ilog2(psize);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004946
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004947 senc = slb_pgsize_encoding(psize);
4948 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
4949 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004950 /* Create HPTEs in the hash page table for the VRMA */
4951 kvmppc_map_vrma(vcpu, memslot, porder);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004952
Paul Mackerras7a840842016-11-16 22:25:20 +11004953 /* Update VRMASD field in the LPCR */
4954 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
4955 /* the -4 is to account for senc values starting at 0x10 */
4956 lpcr = senc << (LPCR_VRMASD_SH - 4);
4957 kvmppc_update_lpcr(kvm, lpcr, LPCR_VRMASD);
Paul Mackerras7a840842016-11-16 22:25:20 +11004958 }
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004959
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004960 /* Order updates to kvm->arch.lpcr etc. vs. mmu_ready */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004961 smp_wmb();
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004962 err = 0;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004963 out_srcu:
4964 srcu_read_unlock(&kvm->srcu, srcu_idx);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004965 out:
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004966 return err;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004967
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004968 up_out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07004969 mmap_read_unlock(kvm->mm);
Lai Jiangshan505d6422013-03-16 00:50:49 +08004970 goto out_srcu;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004971}
4972
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004973/*
4974 * Must be called with kvm->arch.mmu_setup_lock held and
4975 * mmu_ready = 0 and no vcpus running.
4976 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004977int kvmppc_switch_mmu_to_hpt(struct kvm *kvm)
4978{
Paul Mackerrasaa069a92018-09-21 20:02:01 +10004979 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004980 kvmhv_release_all_nested(kvm);
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004981 kvmppc_rmap_reset(kvm);
4982 kvm->arch.process_table = 0;
Sean Christophersonb1c53562021-04-01 17:56:53 -07004983 /* Mutual exclusion with kvm_unmap_gfn_range etc. */
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004984 spin_lock(&kvm->mmu_lock);
4985 kvm->arch.radix = 0;
4986 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10004987 kvmppc_free_radix(kvm);
4988 kvmppc_update_lpcr(kvm, LPCR_VPM1,
4989 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Paul Mackerras18c36402017-09-13 16:00:10 +10004990 return 0;
4991}
4992
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004993/*
4994 * Must be called with kvm->arch.mmu_setup_lock held and
4995 * mmu_ready = 0 and no vcpus running.
4996 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004997int kvmppc_switch_mmu_to_radix(struct kvm *kvm)
4998{
4999 int err;
5000
5001 err = kvmppc_init_vm_radix(kvm);
5002 if (err)
5003 return err;
Paul Mackerras234ff0b2018-11-16 21:28:18 +11005004 kvmppc_rmap_reset(kvm);
Sean Christophersonb1c53562021-04-01 17:56:53 -07005005 /* Mutual exclusion with kvm_unmap_gfn_range etc. */
Paul Mackerras234ff0b2018-11-16 21:28:18 +11005006 spin_lock(&kvm->mmu_lock);
5007 kvm->arch.radix = 1;
5008 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005009 kvmppc_free_hpt(&kvm->arch.hpt);
5010 kvmppc_update_lpcr(kvm, LPCR_UPRT | LPCR_GTSE | LPCR_HR,
5011 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Paul Mackerras18c36402017-09-13 16:00:10 +10005012 return 0;
5013}
5014
Suresh Warrier79b6c242015-12-17 14:59:06 -06005015#ifdef CONFIG_KVM_XICS
5016/*
5017 * Allocate a per-core structure for managing state about which cores are
5018 * running in the host versus the guest and for exchanging data between
5019 * real mode KVM and CPU running in the host.
5020 * This is only done for the first VM.
5021 * The allocated structure stays even if all VMs have stopped.
5022 * It is only freed when the kvm-hv module is unloaded.
5023 * It's OK for this routine to fail, we just don't support host
5024 * core operations like redirecting H_IPI wakeups.
5025 */
5026void kvmppc_alloc_host_rm_ops(void)
5027{
5028 struct kvmppc_host_rm_ops *ops;
5029 unsigned long l_ops;
5030 int cpu, core;
5031 int size;
5032
5033 /* Not the first time here ? */
5034 if (kvmppc_host_rm_ops_hv != NULL)
5035 return;
5036
5037 ops = kzalloc(sizeof(struct kvmppc_host_rm_ops), GFP_KERNEL);
5038 if (!ops)
5039 return;
5040
5041 size = cpu_nr_cores() * sizeof(struct kvmppc_host_rm_core);
5042 ops->rm_core = kzalloc(size, GFP_KERNEL);
5043
5044 if (!ops->rm_core) {
5045 kfree(ops);
5046 return;
5047 }
5048
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02005049 cpus_read_lock();
Suresh Warrier6f3bb802015-12-17 14:59:08 -06005050
Suresh Warrier79b6c242015-12-17 14:59:06 -06005051 for (cpu = 0; cpu < nr_cpu_ids; cpu += threads_per_core) {
5052 if (!cpu_online(cpu))
5053 continue;
5054
5055 core = cpu >> threads_shift;
5056 ops->rm_core[core].rm_state.in_host = 1;
5057 }
5058
Suresh Warrier0c2a6602015-12-17 14:59:09 -06005059 ops->vcpu_kick = kvmppc_fast_vcpu_kick_hv;
5060
Suresh Warrier79b6c242015-12-17 14:59:06 -06005061 /*
5062 * Make the contents of the kvmppc_host_rm_ops structure visible
5063 * to other CPUs before we assign it to the global variable.
5064 * Do an atomic assignment (no locks used here), but if someone
5065 * beats us to it, just free our copy and return.
5066 */
5067 smp_wmb();
5068 l_ops = (unsigned long) ops;
5069
5070 if (cmpxchg64((unsigned long *)&kvmppc_host_rm_ops_hv, 0, l_ops)) {
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02005071 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06005072 kfree(ops->rm_core);
5073 kfree(ops);
Suresh Warrier6f3bb802015-12-17 14:59:08 -06005074 return;
Suresh Warrier79b6c242015-12-17 14:59:06 -06005075 }
Suresh Warrier6f3bb802015-12-17 14:59:08 -06005076
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02005077 cpuhp_setup_state_nocalls_cpuslocked(CPUHP_KVM_PPC_BOOK3S_PREPARE,
5078 "ppc/kvm_book3s:prepare",
5079 kvmppc_set_host_core,
5080 kvmppc_clear_host_core);
5081 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06005082}
5083
5084void kvmppc_free_host_rm_ops(void)
5085{
5086 if (kvmppc_host_rm_ops_hv) {
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01005087 cpuhp_remove_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE);
Suresh Warrier79b6c242015-12-17 14:59:06 -06005088 kfree(kvmppc_host_rm_ops_hv->rm_core);
5089 kfree(kvmppc_host_rm_ops_hv);
5090 kvmppc_host_rm_ops_hv = NULL;
5091 }
5092}
5093#endif
5094
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305095static int kvmppc_core_init_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005096{
Paul Mackerras32fad282012-05-04 02:32:53 +00005097 unsigned long lpcr, lpid;
Paul Mackerrase23a8082015-03-28 14:21:01 +11005098 char buf[32];
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005099 int ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005100
Bharata B Raoca9f4942019-11-25 08:36:26 +05305101 mutex_init(&kvm->arch.uvmem_lock);
5102 INIT_LIST_HEAD(&kvm->arch.uvmem_pfns);
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005103 mutex_init(&kvm->arch.mmu_setup_lock);
5104
Paul Mackerras32fad282012-05-04 02:32:53 +00005105 /* Allocate the guest's logical partition ID */
5106
5107 lpid = kvmppc_alloc_lpid();
Chen Gang5d226ae2013-07-22 14:32:35 +08005108 if ((long)lpid < 0)
Paul Mackerras32fad282012-05-04 02:32:53 +00005109 return -ENOMEM;
5110 kvm->arch.lpid = lpid;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005111
Suresh Warrier79b6c242015-12-17 14:59:06 -06005112 kvmppc_alloc_host_rm_ops();
5113
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005114 kvmhv_vm_nested_init(kvm);
5115
Paul Mackerras1b400ba2012-11-21 23:28:08 +00005116 /*
5117 * Since we don't flush the TLB when tearing down a VM,
5118 * and this lpid might have previously been used,
5119 * make sure we flush on each core before running the new VM.
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005120 * On POWER9, the tlbie in mmu_partition_table_set_entry()
5121 * does this flush for us.
Paul Mackerras1b400ba2012-11-21 23:28:08 +00005122 */
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005123 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5124 cpumask_setall(&kvm->arch.need_tlb_flush);
Paul Mackerras1b400ba2012-11-21 23:28:08 +00005125
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005126 /* Start out with the default set of hcalls enabled */
5127 memcpy(kvm->arch.enabled_hcalls, default_enabled_hcalls,
5128 sizeof(kvm->arch.enabled_hcalls));
5129
Paul Mackerras7a840842016-11-16 22:25:20 +11005130 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5131 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005132
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11005133 /* Init LPCR for virtual RMA mode */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11005134 if (cpu_has_feature(CPU_FTR_HVMODE)) {
5135 kvm->arch.host_lpid = mfspr(SPRN_LPID);
5136 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
5137 lpcr &= LPCR_PECE | LPCR_LPES;
5138 } else {
5139 lpcr = 0;
5140 }
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11005141 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
5142 LPCR_VPM0 | LPCR_VPM1;
5143 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
5144 (VRMA_VSID << SLB_VSID_SHIFT_1T);
5145 /* On POWER8 turn on online bit to enable PURR/SPURR */
5146 if (cpu_has_feature(CPU_FTR_ARCH_207S))
5147 lpcr |= LPCR_ONL;
Paul Mackerras84f71392016-11-22 14:30:14 +11005148 /*
5149 * On POWER9, VPM0 bit is reserved (VPM0=1 behaviour is assumed)
5150 * Set HVICE bit to enable hypervisor virtualization interrupts.
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005151 * Set HEIC to prevent OS interrupts to go to hypervisor (should
5152 * be unnecessary but better safe than sorry in case we re-enable
5153 * EE in HV mode with this LPCR still set)
Paul Mackerras84f71392016-11-22 14:30:14 +11005154 */
5155 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerras7a840842016-11-16 22:25:20 +11005156 lpcr &= ~LPCR_VPM0;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005157 lpcr |= LPCR_HVICE | LPCR_HEIC;
5158
5159 /*
5160 * If xive is enabled, we route 0x500 interrupts directly
5161 * to the guest.
5162 */
Paul Mackerras03f95332019-02-04 22:07:20 +11005163 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005164 lpcr |= LPCR_LPES;
Paul Mackerras84f71392016-11-22 14:30:14 +11005165 }
5166
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005167 /*
Paul Mackerras18c36402017-09-13 16:00:10 +10005168 * If the host uses radix, the guest starts out as radix.
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005169 */
5170 if (radix_enabled()) {
5171 kvm->arch.radix = 1;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10005172 kvm->arch.mmu_ready = 1;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005173 lpcr &= ~LPCR_VPM1;
5174 lpcr |= LPCR_UPRT | LPCR_GTSE | LPCR_HR;
5175 ret = kvmppc_init_vm_radix(kvm);
5176 if (ret) {
5177 kvmppc_free_lpid(kvm->arch.lpid);
5178 return ret;
5179 }
5180 kvmppc_setup_partition_table(kvm);
5181 }
5182
Nicholas Piggin67145ef2021-04-12 11:48:36 +10005183 verify_lpcr(kvm, lpcr);
Paul Mackerras9e368f22011-06-29 00:40:08 +00005184 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005185
David Gibson5e985962016-12-20 16:49:05 +11005186 /* Initialization for future HPT resizes */
5187 kvm->arch.resize_hpt = NULL;
5188
Paul Mackerras512691d2012-10-15 01:15:41 +00005189 /*
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005190 * Work out how many sets the TLB has, for the use of
5191 * the TLB invalidation loop in book3s_hv_rmhandlers.S.
5192 */
Aneesh Kumar K.Ve8063942020-10-07 11:03:05 +05305193 if (cpu_has_feature(CPU_FTR_ARCH_31)) {
5194 /*
5195 * P10 will flush all the congruence class with a single tlbiel
5196 */
5197 kvm->arch.tlb_sets = 1;
5198 } else if (radix_enabled())
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005199 kvm->arch.tlb_sets = POWER9_TLB_SETS_RADIX; /* 128 */
5200 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005201 kvm->arch.tlb_sets = POWER9_TLB_SETS_HASH; /* 256 */
5202 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
5203 kvm->arch.tlb_sets = POWER8_TLB_SETS; /* 512 */
5204 else
5205 kvm->arch.tlb_sets = POWER7_TLB_SETS; /* 128 */
5206
5207 /*
Michael Ellerman441c19c2014-05-23 18:15:25 +10005208 * Track that we now have a HV mode VM active. This blocks secondary
5209 * CPU threads from coming online.
Paul Mackerras512691d2012-10-15 01:15:41 +00005210 */
Nicholas Pigginaaae8c72021-05-28 19:07:42 +10005211 if (!cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005212 kvm_hv_vm_activated();
Paul Mackerras512691d2012-10-15 01:15:41 +00005213
Paul Mackerrase23a8082015-03-28 14:21:01 +11005214 /*
Paul Mackerras3c313522017-02-06 13:24:41 +11005215 * Initialize smt_mode depending on processor.
5216 * POWER8 and earlier have to use "strict" threading, where
5217 * all vCPUs in a vcore have to run on the same (sub)core,
5218 * whereas on POWER9 the threads can each run a different
5219 * guest.
5220 */
5221 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5222 kvm->arch.smt_mode = threads_per_subcore;
5223 else
5224 kvm->arch.smt_mode = 1;
Paul Mackerras57900692017-05-16 16:41:20 +10005225 kvm->arch.emul_smt_mode = 1;
Paul Mackerras3c313522017-02-06 13:24:41 +11005226
5227 /*
Paul Mackerrase23a8082015-03-28 14:21:01 +11005228 * Create a debugfs directory for the VM
5229 */
5230 snprintf(buf, sizeof(buf), "vm%d", current->pid);
5231 kvm->arch.debugfs_dir = debugfs_create_dir(buf, kvm_debugfs_dir);
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02005232 kvmppc_mmu_debugfs_init(kvm);
Paul Mackerras9a94d3e2018-10-08 16:30:57 +11005233 if (radix_enabled())
5234 kvmhv_radix_debugfs_init(kvm);
Paul Mackerrase23a8082015-03-28 14:21:01 +11005235
David Gibson54738c02011-06-29 00:22:41 +00005236 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005237}
5238
Paul Mackerrasf1378b12013-09-27 15:33:43 +05305239static void kvmppc_free_vcores(struct kvm *kvm)
5240{
5241 long int i;
5242
Paul Mackerras23316312015-10-21 16:03:14 +11005243 for (i = 0; i < KVM_MAX_VCORES; ++i)
Paul Mackerrasf1378b12013-09-27 15:33:43 +05305244 kfree(kvm->arch.vcores[i]);
5245 kvm->arch.online_vcores = 0;
5246}
5247
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305248static void kvmppc_core_destroy_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005249{
Paul Mackerrase23a8082015-03-28 14:21:01 +11005250 debugfs_remove_recursive(kvm->arch.debugfs_dir);
5251
Nicholas Pigginaaae8c72021-05-28 19:07:42 +10005252 if (!cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005253 kvm_hv_vm_deactivated();
Paul Mackerras512691d2012-10-15 01:15:41 +00005254
Paul Mackerrasf1378b12013-09-27 15:33:43 +05305255 kvmppc_free_vcores(kvm);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005256
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005257
Paul Mackerras5a319352017-01-30 21:21:46 +11005258 if (kvm_is_radix(kvm))
5259 kvmppc_free_radix(kvm);
5260 else
David Gibsonaae07772016-12-20 16:49:02 +11005261 kvmppc_free_hpt(&kvm->arch.hpt);
Suresh Warrierc57875f2016-08-19 15:35:50 +10005262
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005263 /* Perform global invalidation and return lpid to the pool */
5264 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005265 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005266 kvmhv_release_all_nested(kvm);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005267 kvm->arch.process_table = 0;
Paul Mackerrasd89c69f2019-12-18 11:43:06 +11005268 if (kvm->arch.secure_guest)
5269 uv_svm_terminate(kvm->arch.lpid);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005270 kvmhv_set_ptbl_entry(kvm->arch.lpid, 0, 0);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005271 }
Bharata B Raoca9f4942019-11-25 08:36:26 +05305272
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005273 kvmppc_free_lpid(kvm->arch.lpid);
5274
Suresh Warrierc57875f2016-08-19 15:35:50 +10005275 kvmppc_free_pimap(kvm);
Paul Mackerrasde56a942011-06-29 00:21:34 +00005276}
5277
5278/* We don't need to emulate any privileged instructions or dcbz */
Tianjia Zhang8c99d342020-04-27 12:35:11 +08005279static int kvmppc_core_emulate_op_hv(struct kvm_vcpu *vcpu,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305280 unsigned int inst, int *advance)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005281{
5282 return EMULATE_FAIL;
5283}
5284
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305285static int kvmppc_core_emulate_mtspr_hv(struct kvm_vcpu *vcpu, int sprn,
5286 ulong spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005287{
5288 return EMULATE_FAIL;
5289}
5290
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305291static int kvmppc_core_emulate_mfspr_hv(struct kvm_vcpu *vcpu, int sprn,
5292 ulong *spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005293{
5294 return EMULATE_FAIL;
5295}
5296
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305297static int kvmppc_core_check_processor_compat_hv(void)
5298{
Paul Mackerrasde760db2018-10-08 16:31:16 +11005299 if (cpu_has_feature(CPU_FTR_HVMODE) &&
5300 cpu_has_feature(CPU_FTR_ARCH_206))
5301 return 0;
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10005302
Paul Mackerrasde760db2018-10-08 16:31:16 +11005303 /* POWER9 in radix mode is capable of being a nested hypervisor. */
5304 if (cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled())
5305 return 0;
5306
5307 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305308}
5309
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005310#ifdef CONFIG_KVM_XICS
5311
5312void kvmppc_free_pimap(struct kvm *kvm)
5313{
5314 kfree(kvm->arch.pimap);
5315}
5316
Suresh Warrierc57875f2016-08-19 15:35:50 +10005317static struct kvmppc_passthru_irqmap *kvmppc_alloc_pimap(void)
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005318{
5319 return kzalloc(sizeof(struct kvmppc_passthru_irqmap), GFP_KERNEL);
5320}
Suresh Warrierc57875f2016-08-19 15:35:50 +10005321
5322static int kvmppc_set_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
5323{
5324 struct irq_desc *desc;
5325 struct kvmppc_irq_map *irq_map;
5326 struct kvmppc_passthru_irqmap *pimap;
5327 struct irq_chip *chip;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005328 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005329
Suresh Warrier644abbb2016-08-19 15:35:54 +10005330 if (!kvm_irq_bypass)
5331 return 1;
5332
Suresh Warrierc57875f2016-08-19 15:35:50 +10005333 desc = irq_to_desc(host_irq);
5334 if (!desc)
5335 return -EIO;
5336
5337 mutex_lock(&kvm->lock);
5338
5339 pimap = kvm->arch.pimap;
5340 if (pimap == NULL) {
5341 /* First call, allocate structure to hold IRQ map */
5342 pimap = kvmppc_alloc_pimap();
5343 if (pimap == NULL) {
5344 mutex_unlock(&kvm->lock);
5345 return -ENOMEM;
5346 }
5347 kvm->arch.pimap = pimap;
5348 }
5349
5350 /*
5351 * For now, we only support interrupts for which the EOI operation
5352 * is an OPAL call followed by a write to XIRR, since that's
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005353 * what our real-mode EOI code does, or a XIVE interrupt
Suresh Warrierc57875f2016-08-19 15:35:50 +10005354 */
5355 chip = irq_data_get_irq_chip(&desc->irq_data);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005356 if (!chip || !(is_pnv_opal_msi(chip) || is_xive_irq(chip))) {
Suresh Warrierc57875f2016-08-19 15:35:50 +10005357 pr_warn("kvmppc_set_passthru_irq_hv: Could not assign IRQ map for (%d,%d)\n",
5358 host_irq, guest_gsi);
5359 mutex_unlock(&kvm->lock);
5360 return -ENOENT;
5361 }
5362
5363 /*
5364 * See if we already have an entry for this guest IRQ number.
5365 * If it's mapped to a hardware IRQ number, that's an error,
5366 * otherwise re-use this entry.
5367 */
5368 for (i = 0; i < pimap->n_mapped; i++) {
5369 if (guest_gsi == pimap->mapped[i].v_hwirq) {
5370 if (pimap->mapped[i].r_hwirq) {
5371 mutex_unlock(&kvm->lock);
5372 return -EINVAL;
5373 }
5374 break;
5375 }
5376 }
5377
5378 if (i == KVMPPC_PIRQ_MAPPED) {
5379 mutex_unlock(&kvm->lock);
5380 return -EAGAIN; /* table is full */
5381 }
5382
5383 irq_map = &pimap->mapped[i];
5384
5385 irq_map->v_hwirq = guest_gsi;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005386 irq_map->desc = desc;
5387
Suresh Warriere3c13e52016-08-19 15:35:51 +10005388 /*
5389 * Order the above two stores before the next to serialize with
5390 * the KVM real mode handler.
5391 */
5392 smp_wmb();
5393 irq_map->r_hwirq = desc->irq_data.hwirq;
5394
Suresh Warrierc57875f2016-08-19 15:35:50 +10005395 if (i == pimap->n_mapped)
5396 pimap->n_mapped++;
5397
Paul Mackerras03f95332019-02-04 22:07:20 +11005398 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005399 rc = kvmppc_xive_set_mapped(kvm, guest_gsi, desc);
5400 else
5401 kvmppc_xics_set_mapped(kvm, guest_gsi, desc->irq_data.hwirq);
5402 if (rc)
5403 irq_map->r_hwirq = 0;
Paul Mackerras5d375192016-08-19 15:35:56 +10005404
Suresh Warrierc57875f2016-08-19 15:35:50 +10005405 mutex_unlock(&kvm->lock);
5406
5407 return 0;
5408}
5409
5410static int kvmppc_clr_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
5411{
5412 struct irq_desc *desc;
5413 struct kvmppc_passthru_irqmap *pimap;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005414 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005415
Suresh Warrier644abbb2016-08-19 15:35:54 +10005416 if (!kvm_irq_bypass)
5417 return 0;
5418
Suresh Warrierc57875f2016-08-19 15:35:50 +10005419 desc = irq_to_desc(host_irq);
5420 if (!desc)
5421 return -EIO;
5422
5423 mutex_lock(&kvm->lock);
Markus Elfringa1c52e12017-01-20 11:00:08 +01005424 if (!kvm->arch.pimap)
5425 goto unlock;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005426
Suresh Warrierc57875f2016-08-19 15:35:50 +10005427 pimap = kvm->arch.pimap;
5428
5429 for (i = 0; i < pimap->n_mapped; i++) {
5430 if (guest_gsi == pimap->mapped[i].v_hwirq)
5431 break;
5432 }
5433
5434 if (i == pimap->n_mapped) {
5435 mutex_unlock(&kvm->lock);
5436 return -ENODEV;
5437 }
5438
Paul Mackerras03f95332019-02-04 22:07:20 +11005439 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005440 rc = kvmppc_xive_clr_mapped(kvm, guest_gsi, pimap->mapped[i].desc);
5441 else
5442 kvmppc_xics_clr_mapped(kvm, guest_gsi, pimap->mapped[i].r_hwirq);
Paul Mackerras5d375192016-08-19 15:35:56 +10005443
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005444 /* invalidate the entry (what do do on error from the above ?) */
Suresh Warrierc57875f2016-08-19 15:35:50 +10005445 pimap->mapped[i].r_hwirq = 0;
5446
5447 /*
5448 * We don't free this structure even when the count goes to
5449 * zero. The structure is freed when we destroy the VM.
5450 */
Markus Elfringa1c52e12017-01-20 11:00:08 +01005451 unlock:
Suresh Warrierc57875f2016-08-19 15:35:50 +10005452 mutex_unlock(&kvm->lock);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005453 return rc;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005454}
5455
5456static int kvmppc_irq_bypass_add_producer_hv(struct irq_bypass_consumer *cons,
5457 struct irq_bypass_producer *prod)
5458{
5459 int ret = 0;
5460 struct kvm_kernel_irqfd *irqfd =
5461 container_of(cons, struct kvm_kernel_irqfd, consumer);
5462
5463 irqfd->producer = prod;
5464
5465 ret = kvmppc_set_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5466 if (ret)
5467 pr_info("kvmppc_set_passthru_irq (irq %d, gsi %d) fails: %d\n",
5468 prod->irq, irqfd->gsi, ret);
5469
5470 return ret;
5471}
5472
5473static void kvmppc_irq_bypass_del_producer_hv(struct irq_bypass_consumer *cons,
5474 struct irq_bypass_producer *prod)
5475{
5476 int ret;
5477 struct kvm_kernel_irqfd *irqfd =
5478 container_of(cons, struct kvm_kernel_irqfd, consumer);
5479
5480 irqfd->producer = NULL;
5481
5482 /*
5483 * When producer of consumer is unregistered, we change back to
5484 * default external interrupt handling mode - KVM real mode
5485 * will switch back to host.
5486 */
5487 ret = kvmppc_clr_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5488 if (ret)
5489 pr_warn("kvmppc_clr_passthru_irq (irq %d, gsi %d) fails: %d\n",
5490 prod->irq, irqfd->gsi, ret);
5491}
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005492#endif
5493
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305494static long kvm_arch_vm_ioctl_hv(struct file *filp,
5495 unsigned int ioctl, unsigned long arg)
5496{
5497 struct kvm *kvm __maybe_unused = filp->private_data;
5498 void __user *argp = (void __user *)arg;
5499 long r;
5500
5501 switch (ioctl) {
5502
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305503 case KVM_PPC_ALLOCATE_HTAB: {
5504 u32 htab_order;
5505
Fabiano Rosas05e62952020-09-11 01:16:07 -03005506 /* If we're a nested hypervisor, we currently only support radix */
5507 if (kvmhv_on_pseries()) {
5508 r = -EOPNOTSUPP;
5509 break;
5510 }
5511
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305512 r = -EFAULT;
5513 if (get_user(htab_order, (u32 __user *)argp))
5514 break;
David Gibsonf98a8bf2016-12-20 16:49:03 +11005515 r = kvmppc_alloc_reset_hpt(kvm, htab_order);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305516 if (r)
5517 break;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305518 r = 0;
5519 break;
5520 }
5521
5522 case KVM_PPC_GET_HTAB_FD: {
5523 struct kvm_get_htab_fd ghf;
5524
5525 r = -EFAULT;
5526 if (copy_from_user(&ghf, argp, sizeof(ghf)))
5527 break;
5528 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
5529 break;
5530 }
5531
David Gibson5e985962016-12-20 16:49:05 +11005532 case KVM_PPC_RESIZE_HPT_PREPARE: {
5533 struct kvm_ppc_resize_hpt rhpt;
5534
5535 r = -EFAULT;
5536 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5537 break;
5538
5539 r = kvm_vm_ioctl_resize_hpt_prepare(kvm, &rhpt);
5540 break;
5541 }
5542
5543 case KVM_PPC_RESIZE_HPT_COMMIT: {
5544 struct kvm_ppc_resize_hpt rhpt;
5545
5546 r = -EFAULT;
5547 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5548 break;
5549
5550 r = kvm_vm_ioctl_resize_hpt_commit(kvm, &rhpt);
5551 break;
5552 }
5553
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305554 default:
5555 r = -ENOTTY;
5556 }
5557
5558 return r;
5559}
5560
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005561/*
5562 * List of hcall numbers to enable by default.
5563 * For compatibility with old userspace, we enable by default
5564 * all hcalls that were implemented before the hcall-enabling
5565 * facility was added. Note this list should not include H_RTAS.
5566 */
5567static unsigned int default_hcall_list[] = {
5568 H_REMOVE,
5569 H_ENTER,
5570 H_READ,
5571 H_PROTECT,
5572 H_BULK_REMOVE,
Nicholas Piggin0fd85cb82021-04-12 11:48:41 +10005573#ifdef CONFIG_SPAPR_TCE_IOMMU
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005574 H_GET_TCE,
5575 H_PUT_TCE,
Nicholas Piggin0fd85cb82021-04-12 11:48:41 +10005576#endif
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005577 H_SET_DABR,
5578 H_SET_XDABR,
5579 H_CEDE,
5580 H_PROD,
5581 H_CONFER,
5582 H_REGISTER_VPA,
5583#ifdef CONFIG_KVM_XICS
5584 H_EOI,
5585 H_CPPR,
5586 H_IPI,
5587 H_IPOLL,
5588 H_XIRR,
5589 H_XIRR_X,
5590#endif
5591 0
5592};
5593
5594static void init_default_hcalls(void)
5595{
5596 int i;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005597 unsigned int hcall;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005598
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005599 for (i = 0; default_hcall_list[i]; ++i) {
5600 hcall = default_hcall_list[i];
5601 WARN_ON(!kvmppc_hcall_impl_hv(hcall));
5602 __set_bit(hcall / 4, default_enabled_hcalls);
5603 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005604}
5605
Paul Mackerrasc9270132017-01-30 21:21:41 +11005606static int kvmhv_configure_mmu(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
5607{
Paul Mackerras468808b2017-01-30 21:21:42 +11005608 unsigned long lpcr;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005609 int radix;
Paul Mackerras18c36402017-09-13 16:00:10 +10005610 int err;
Paul Mackerras468808b2017-01-30 21:21:42 +11005611
5612 /* If not on a POWER9, reject it */
5613 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5614 return -ENODEV;
5615
5616 /* If any unknown flags set, reject it */
5617 if (cfg->flags & ~(KVM_PPC_MMUV3_RADIX | KVM_PPC_MMUV3_GTSE))
5618 return -EINVAL;
5619
Paul Mackerras468808b2017-01-30 21:21:42 +11005620 /* GR (guest radix) bit in process_table field must match */
Paul Mackerras18c36402017-09-13 16:00:10 +10005621 radix = !!(cfg->flags & KVM_PPC_MMUV3_RADIX);
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005622 if (!!(cfg->process_table & PATB_GR) != radix)
Paul Mackerras468808b2017-01-30 21:21:42 +11005623 return -EINVAL;
5624
5625 /* Process table size field must be reasonable, i.e. <= 24 */
5626 if ((cfg->process_table & PRTS_MASK) > 24)
5627 return -EINVAL;
5628
Paul Mackerras18c36402017-09-13 16:00:10 +10005629 /* We can change a guest to/from radix now, if the host is radix */
5630 if (radix && !radix_enabled())
5631 return -EINVAL;
5632
Paul Mackerrasde760db2018-10-08 16:31:16 +11005633 /* If we're a nested hypervisor, we currently only support radix */
5634 if (kvmhv_on_pseries() && !radix)
5635 return -EINVAL;
5636
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005637 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005638 if (radix != kvm_is_radix(kvm)) {
5639 if (kvm->arch.mmu_ready) {
5640 kvm->arch.mmu_ready = 0;
5641 /* order mmu_ready vs. vcpus_running */
5642 smp_mb();
5643 if (atomic_read(&kvm->arch.vcpus_running)) {
5644 kvm->arch.mmu_ready = 1;
5645 err = -EBUSY;
5646 goto out_unlock;
5647 }
5648 }
5649 if (radix)
5650 err = kvmppc_switch_mmu_to_radix(kvm);
5651 else
5652 err = kvmppc_switch_mmu_to_hpt(kvm);
5653 if (err)
5654 goto out_unlock;
5655 }
5656
Paul Mackerras468808b2017-01-30 21:21:42 +11005657 kvm->arch.process_table = cfg->process_table;
5658 kvmppc_setup_partition_table(kvm);
5659
5660 lpcr = (cfg->flags & KVM_PPC_MMUV3_GTSE) ? LPCR_GTSE : 0;
5661 kvmppc_update_lpcr(kvm, lpcr, LPCR_GTSE);
Paul Mackerras18c36402017-09-13 16:00:10 +10005662 err = 0;
Paul Mackerras468808b2017-01-30 21:21:42 +11005663
Paul Mackerras18c36402017-09-13 16:00:10 +10005664 out_unlock:
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005665 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005666 return err;
Paul Mackerrasc9270132017-01-30 21:21:41 +11005667}
5668
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005669static int kvmhv_enable_nested(struct kvm *kvm)
5670{
5671 if (!nested)
5672 return -EPERM;
Nicholas Piggincbcff8b2021-05-28 19:07:46 +10005673 if (!cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005674 return -ENODEV;
Nicholas Piggin0bf7e1b2021-05-28 19:07:51 +10005675 if (!radix_enabled())
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005676 return -ENODEV;
5677
5678 /* kvm == NULL means the caller is testing if the capability exists */
5679 if (kvm)
5680 kvm->arch.nested_enable = true;
5681 return 0;
5682}
5683
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11005684static int kvmhv_load_from_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5685 int size)
5686{
5687 int rc = -EINVAL;
5688
5689 if (kvmhv_vcpu_is_radix(vcpu)) {
5690 rc = kvmhv_copy_from_guest_radix(vcpu, *eaddr, ptr, size);
5691
5692 if (rc > 0)
5693 rc = -EINVAL;
5694 }
5695
5696 /* For now quadrants are the only way to access nested guest memory */
5697 if (rc && vcpu->arch.nested)
5698 rc = -EAGAIN;
5699
5700 return rc;
5701}
5702
5703static int kvmhv_store_to_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5704 int size)
5705{
5706 int rc = -EINVAL;
5707
5708 if (kvmhv_vcpu_is_radix(vcpu)) {
5709 rc = kvmhv_copy_to_guest_radix(vcpu, *eaddr, ptr, size);
5710
5711 if (rc > 0)
5712 rc = -EINVAL;
5713 }
5714
5715 /* For now quadrants are the only way to access nested guest memory */
5716 if (rc && vcpu->arch.nested)
5717 rc = -EAGAIN;
5718
5719 return rc;
5720}
5721
Bharata B Rao22945682019-11-25 08:36:30 +05305722static void unpin_vpa_reset(struct kvm *kvm, struct kvmppc_vpa *vpa)
5723{
5724 unpin_vpa(kvm, vpa);
5725 vpa->gpa = 0;
5726 vpa->pinned_addr = NULL;
5727 vpa->dirty = false;
5728 vpa->update_pending = 0;
5729}
5730
5731/*
Paul Mackerras9a5788c2020-03-19 15:29:55 +11005732 * Enable a guest to become a secure VM, or test whether
5733 * that could be enabled.
5734 * Called when the KVM_CAP_PPC_SECURE_GUEST capability is
5735 * tested (kvm == NULL) or enabled (kvm != NULL).
5736 */
5737static int kvmhv_enable_svm(struct kvm *kvm)
5738{
5739 if (!kvmppc_uvmem_available())
5740 return -EINVAL;
5741 if (kvm)
5742 kvm->arch.svm_enabled = 1;
5743 return 0;
5744}
5745
5746/*
Bharata B Rao22945682019-11-25 08:36:30 +05305747 * IOCTL handler to turn off secure mode of guest
5748 *
5749 * - Release all device pages
5750 * - Issue ucall to terminate the guest on the UV side
5751 * - Unpin the VPA pages.
5752 * - Reinit the partition scoped page tables
5753 */
5754static int kvmhv_svm_off(struct kvm *kvm)
5755{
5756 struct kvm_vcpu *vcpu;
5757 int mmu_was_ready;
5758 int srcu_idx;
5759 int ret = 0;
5760 int i;
5761
5762 if (!(kvm->arch.secure_guest & KVMPPC_SECURE_INIT_START))
5763 return ret;
5764
5765 mutex_lock(&kvm->arch.mmu_setup_lock);
5766 mmu_was_ready = kvm->arch.mmu_ready;
5767 if (kvm->arch.mmu_ready) {
5768 kvm->arch.mmu_ready = 0;
5769 /* order mmu_ready vs. vcpus_running */
5770 smp_mb();
5771 if (atomic_read(&kvm->arch.vcpus_running)) {
5772 kvm->arch.mmu_ready = 1;
5773 ret = -EBUSY;
5774 goto out;
5775 }
5776 }
5777
5778 srcu_idx = srcu_read_lock(&kvm->srcu);
5779 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
5780 struct kvm_memory_slot *memslot;
5781 struct kvm_memslots *slots = __kvm_memslots(kvm, i);
5782
5783 if (!slots)
5784 continue;
5785
5786 kvm_for_each_memslot(memslot, slots) {
Sukadev Bhattiproluce477a72019-12-19 13:51:45 -08005787 kvmppc_uvmem_drop_pages(memslot, kvm, true);
Bharata B Rao22945682019-11-25 08:36:30 +05305788 uv_unregister_mem_slot(kvm->arch.lpid, memslot->id);
5789 }
5790 }
5791 srcu_read_unlock(&kvm->srcu, srcu_idx);
5792
5793 ret = uv_svm_terminate(kvm->arch.lpid);
5794 if (ret != U_SUCCESS) {
5795 ret = -EINVAL;
5796 goto out;
5797 }
5798
5799 /*
5800 * When secure guest is reset, all the guest pages are sent
5801 * to UV via UV_PAGE_IN before the non-boot vcpus get a
5802 * chance to run and unpin their VPA pages. Unpinning of all
5803 * VPA pages is done here explicitly so that VPA pages
5804 * can be migrated to the secure side.
5805 *
5806 * This is required to for the secure SMP guest to reboot
5807 * correctly.
5808 */
5809 kvm_for_each_vcpu(i, vcpu, kvm) {
5810 spin_lock(&vcpu->arch.vpa_update_lock);
5811 unpin_vpa_reset(kvm, &vcpu->arch.dtl);
5812 unpin_vpa_reset(kvm, &vcpu->arch.slb_shadow);
5813 unpin_vpa_reset(kvm, &vcpu->arch.vpa);
5814 spin_unlock(&vcpu->arch.vpa_update_lock);
5815 }
5816
5817 kvmppc_setup_partition_table(kvm);
5818 kvm->arch.secure_guest = 0;
5819 kvm->arch.mmu_ready = mmu_was_ready;
5820out:
5821 mutex_unlock(&kvm->arch.mmu_setup_lock);
5822 return ret;
5823}
5824
Ravi Bangoriad9a47ed2020-12-16 16:12:19 +05305825static int kvmhv_enable_dawr1(struct kvm *kvm)
5826{
5827 if (!cpu_has_feature(CPU_FTR_DAWR1))
5828 return -ENODEV;
5829
5830 /* kvm == NULL means the caller is testing if the capability exists */
5831 if (kvm)
5832 kvm->arch.dawr1_enabled = true;
5833 return 0;
5834}
5835
Fabiano Rosasa7220762021-02-05 13:41:54 -03005836static bool kvmppc_hash_v3_possible(void)
5837{
Nicholas Pigginfae5c9f2021-05-28 19:07:52 +10005838 if (!cpu_has_feature(CPU_FTR_ARCH_300))
Fabiano Rosasa7220762021-02-05 13:41:54 -03005839 return false;
5840
Nicholas Pigginfae5c9f2021-05-28 19:07:52 +10005841 if (!cpu_has_feature(CPU_FTR_HVMODE))
5842 return false;
5843
5844 /*
5845 * POWER9 chips before version 2.02 can't have some threads in
5846 * HPT mode and some in radix mode on the same core.
5847 */
5848 if (radix_enabled()) {
5849 unsigned int pvr = mfspr(SPRN_PVR);
5850 if ((pvr >> 16) == PVR_POWER9 &&
5851 (((pvr & 0xe000) == 0 && (pvr & 0xfff) < 0x202) ||
5852 ((pvr & 0xe000) == 0x2000 && (pvr & 0xfff) < 0x101)))
5853 return false;
5854 }
5855
5856 return true;
Fabiano Rosasa7220762021-02-05 13:41:54 -03005857}
5858
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305859static struct kvmppc_ops kvm_ops_hv = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305860 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_hv,
5861 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_hv,
5862 .get_one_reg = kvmppc_get_one_reg_hv,
5863 .set_one_reg = kvmppc_set_one_reg_hv,
5864 .vcpu_load = kvmppc_core_vcpu_load_hv,
5865 .vcpu_put = kvmppc_core_vcpu_put_hv,
Nicholas Piggin87a45e02019-10-02 16:00:22 +10005866 .inject_interrupt = kvmppc_inject_interrupt_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305867 .set_msr = kvmppc_set_msr_hv,
5868 .vcpu_run = kvmppc_vcpu_run_hv,
5869 .vcpu_create = kvmppc_core_vcpu_create_hv,
5870 .vcpu_free = kvmppc_core_vcpu_free_hv,
5871 .check_requests = kvmppc_core_check_requests_hv,
5872 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_hv,
5873 .flush_memslot = kvmppc_core_flush_memslot_hv,
5874 .prepare_memory_region = kvmppc_core_prepare_memory_region_hv,
5875 .commit_memory_region = kvmppc_core_commit_memory_region_hv,
Sean Christophersonb1c53562021-04-01 17:56:53 -07005876 .unmap_gfn_range = kvm_unmap_gfn_range_hv,
5877 .age_gfn = kvm_age_gfn_hv,
5878 .test_age_gfn = kvm_test_age_gfn_hv,
5879 .set_spte_gfn = kvm_set_spte_gfn_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305880 .free_memslot = kvmppc_core_free_memslot_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305881 .init_vm = kvmppc_core_init_vm_hv,
5882 .destroy_vm = kvmppc_core_destroy_vm_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305883 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_hv,
5884 .emulate_op = kvmppc_core_emulate_op_hv,
5885 .emulate_mtspr = kvmppc_core_emulate_mtspr_hv,
5886 .emulate_mfspr = kvmppc_core_emulate_mfspr_hv,
5887 .fast_vcpu_kick = kvmppc_fast_vcpu_kick_hv,
5888 .arch_vm_ioctl = kvm_arch_vm_ioctl_hv,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005889 .hcall_implemented = kvmppc_hcall_impl_hv,
Suresh Warrierc57875f2016-08-19 15:35:50 +10005890#ifdef CONFIG_KVM_XICS
5891 .irq_bypass_add_producer = kvmppc_irq_bypass_add_producer_hv,
5892 .irq_bypass_del_producer = kvmppc_irq_bypass_del_producer_hv,
5893#endif
Paul Mackerrasc9270132017-01-30 21:21:41 +11005894 .configure_mmu = kvmhv_configure_mmu,
5895 .get_rmmu_info = kvmhv_get_rmmu_info,
Paul Mackerras3c313522017-02-06 13:24:41 +11005896 .set_smt_mode = kvmhv_set_smt_mode,
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005897 .enable_nested = kvmhv_enable_nested,
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11005898 .load_from_eaddr = kvmhv_load_from_eaddr,
5899 .store_to_eaddr = kvmhv_store_to_eaddr,
Paul Mackerras9a5788c2020-03-19 15:29:55 +11005900 .enable_svm = kvmhv_enable_svm,
Bharata B Rao22945682019-11-25 08:36:30 +05305901 .svm_off = kvmhv_svm_off,
Ravi Bangoriad9a47ed2020-12-16 16:12:19 +05305902 .enable_dawr1 = kvmhv_enable_dawr1,
Fabiano Rosasa7220762021-02-05 13:41:54 -03005903 .hash_v3_possible = kvmppc_hash_v3_possible,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305904};
5905
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305906static int kvm_init_subcore_bitmap(void)
5907{
5908 int i, j;
5909 int nr_cores = cpu_nr_cores();
5910 struct sibling_subcore_state *sibling_subcore_state;
5911
5912 for (i = 0; i < nr_cores; i++) {
5913 int first_cpu = i * threads_per_core;
5914 int node = cpu_to_node(first_cpu);
5915
5916 /* Ignore if it is already allocated. */
Nicholas Piggind2e60072018-02-14 01:08:12 +10005917 if (paca_ptrs[first_cpu]->sibling_subcore_state)
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305918 continue;
5919
5920 sibling_subcore_state =
wangbo08434ab2019-01-07 20:15:52 +08005921 kzalloc_node(sizeof(struct sibling_subcore_state),
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305922 GFP_KERNEL, node);
5923 if (!sibling_subcore_state)
5924 return -ENOMEM;
5925
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305926
5927 for (j = 0; j < threads_per_core; j++) {
5928 int cpu = first_cpu + j;
5929
Nicholas Piggind2e60072018-02-14 01:08:12 +10005930 paca_ptrs[cpu]->sibling_subcore_state =
5931 sibling_subcore_state;
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305932 }
5933 }
5934 return 0;
5935}
5936
Paul Mackerras5a319352017-01-30 21:21:46 +11005937static int kvmppc_radix_possible(void)
5938{
5939 return cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled();
5940}
5941
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305942static int kvmppc_book3s_init_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005943{
5944 int r;
Nicholas Piggin2275d7b2019-09-03 01:29:31 +10005945
5946 if (!tlbie_capable) {
5947 pr_err("KVM-HV: Host does not support TLBIE\n");
5948 return -ENODEV;
5949 }
5950
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305951 /*
5952 * FIXME!! Do we need to check on all cpus ?
5953 */
5954 r = kvmppc_core_check_processor_compat_hv();
5955 if (r < 0)
Paul Mackerras739e2422014-03-25 10:47:05 +11005956 return -ENODEV;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005957
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005958 r = kvmhv_nested_init();
5959 if (r)
5960 return r;
5961
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305962 r = kvm_init_subcore_bitmap();
5963 if (r)
5964 return r;
5965
Paul Mackerrasf7257582016-11-18 09:02:08 +11005966 /*
5967 * We need a way of accessing the XICS interrupt controller,
Nicholas Piggind2e60072018-02-14 01:08:12 +10005968 * either directly, via paca_ptrs[cpu]->kvm_hstate.xics_phys, or
Paul Mackerrasf7257582016-11-18 09:02:08 +11005969 * indirectly, via OPAL.
5970 */
5971#ifdef CONFIG_SMP
Paul Mackerras03f95332019-02-04 22:07:20 +11005972 if (!xics_on_xive() && !kvmhv_on_pseries() &&
Paul Mackerrasf3c18e92018-10-08 16:31:05 +11005973 !local_paca->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +11005974 struct device_node *np;
5975
5976 np = of_find_compatible_node(NULL, NULL, "ibm,opal-intc");
5977 if (!np) {
5978 pr_err("KVM-HV: Cannot determine method for accessing XICS\n");
5979 return -ENODEV;
5980 }
Nicholas Mc Guire51eaa082018-07-07 08:53:07 +02005981 /* presence of intc confirmed - node can be dropped again */
5982 of_node_put(np);
Paul Mackerrasf7257582016-11-18 09:02:08 +11005983 }
5984#endif
5985
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305986 kvm_ops_hv.owner = THIS_MODULE;
5987 kvmppc_hv_ops = &kvm_ops_hv;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005988
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005989 init_default_hcalls();
5990
Paul Mackerrasec257162015-06-24 21:18:03 +10005991 init_vcore_lists();
5992
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305993 r = kvmppc_mmu_hv_init();
Paul Mackerras5a319352017-01-30 21:21:46 +11005994 if (r)
5995 return r;
5996
5997 if (kvmppc_radix_possible())
5998 r = kvmppc_radix_init();
Paul Mackerras00608e12018-01-11 16:54:26 +11005999
Bharata B Raoca9f4942019-11-25 08:36:26 +05306000 r = kvmppc_uvmem_init();
6001 if (r < 0)
6002 pr_err("KVM-HV: kvmppc_uvmem_init failed %d\n", r);
6003
Paul Mackerrasde56a942011-06-29 00:21:34 +00006004 return r;
6005}
6006
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05306007static void kvmppc_book3s_exit_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00006008{
Bharata B Raoca9f4942019-11-25 08:36:26 +05306009 kvmppc_uvmem_free();
Suresh Warrier79b6c242015-12-17 14:59:06 -06006010 kvmppc_free_host_rm_ops();
Paul Mackerras5a319352017-01-30 21:21:46 +11006011 if (kvmppc_radix_possible())
6012 kvmppc_radix_exit();
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05306013 kvmppc_hv_ops = NULL;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11006014 kvmhv_nested_exit();
Paul Mackerrasde56a942011-06-29 00:21:34 +00006015}
6016
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05306017module_init(kvmppc_book3s_init_hv);
6018module_exit(kvmppc_book3s_exit_hv);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05306019MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01006020MODULE_ALIAS_MISCDEV(KVM_MINOR);
6021MODULE_ALIAS("devname:kvm");