blob: d1817cd9a691f4c1634d53433a75fd57694c4ab3 [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>
Nicholas Piggin17826632021-08-12 02:00:43 +100062#include <asm/pmc.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000063#include <asm/processor.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000064#include <asm/cputhreads.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000065#include <asm/page.h>
Michael Neulingde1d9242011-11-09 20:39:49 +000066#include <asm/hvcall.h>
David Howellsae3a1972012-03-28 18:30:02 +010067#include <asm/switch_to.h>
Paul Mackerras512691d2012-10-15 01:15:41 +000068#include <asm/smp.h>
Paul Mackerras66feed62015-03-28 14:21:12 +110069#include <asm/dbell.h>
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +053070#include <asm/hmi.h>
Suresh Warrierc57875f2016-08-19 15:35:50 +100071#include <asm/pnv-pci.h>
Paul Mackerras7a840842016-11-16 22:25:20 +110072#include <asm/mmu.h>
Paul Mackerrasf7257582016-11-18 09:02:08 +110073#include <asm/opal.h>
74#include <asm/xics.h>
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +100075#include <asm/xive.h>
Michael Neulingc1fe1902019-04-01 17:03:12 +110076#include <asm/hw_breakpoint.h>
Bharata B Raoca9f4942019-11-25 08:36:26 +053077#include <asm/kvm_book3s_uvmem.h>
Bharata B Raoc3262252019-11-25 08:36:29 +053078#include <asm/ultravisor.h>
Peter Zijlstrad6bdceb2020-05-29 22:41:01 +020079#include <asm/dtl.h>
Bharata B Raof0c6fbb2021-06-21 14:20:00 +053080#include <asm/plpar_wrappers.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000081
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053082#include "book3s.h"
Nicholas Pigginaabcaf62021-11-23 19:52:07 +100083#include "book3s_hv.h"
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053084
Suresh E. Warrier3c78f782014-12-03 18:48:10 -060085#define CREATE_TRACE_POINTS
86#include "trace_hv.h"
87
Paul Mackerrasde56a942011-06-29 00:21:34 +000088/* #define EXIT_DEBUG */
89/* #define EXIT_DEBUG_SIMPLE */
90/* #define EXIT_DEBUG_INT */
91
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000092/* Used to indicate that a guest page fault needs to be handled */
93#define RESUME_PAGE_FAULT (RESUME_GUEST | RESUME_FLAG_ARCH1)
Suresh Warrierf7af5202016-08-19 15:35:52 +100094/* Used to indicate that a guest passthrough interrupt needs to be handled */
95#define RESUME_PASSTHROUGH (RESUME_GUEST | RESUME_FLAG_ARCH2)
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000096
Paul Mackerrasc7b67672012-10-15 01:18:07 +000097/* Used as a "null" value for timebase values */
98#define TB_NIL (~(u64)0)
99
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000100static DECLARE_BITMAP(default_enabled_hcalls, MAX_HCALL_OPCODE/4 + 1);
101
Paul Mackerrasb4deba52015-07-02 20:38:16 +1000102static int dynamic_mt_modes = 6;
Russell Currey57ad583f2017-01-12 14:54:13 +1100103module_param(dynamic_mt_modes, int, 0644);
Paul Mackerrasb4deba52015-07-02 20:38:16 +1000104MODULE_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 +1000105static int target_smt_mode;
Russell Currey57ad583f2017-01-12 14:54:13 +1100106module_param(target_smt_mode, int, 0644);
Paul Mackerrasec257162015-06-24 21:18:03 +1000107MODULE_PARM_DESC(target_smt_mode, "Target threads per core (0 = max)");
Stewart Smith9678cda2014-07-18 14:18:43 +1000108
Paul Mackerrasaa227862018-09-12 10:42:12 +1000109static bool one_vm_per_core;
110module_param(one_vm_per_core, bool, S_IRUGO | S_IWUSR);
Nicholas Pigginaaae8c72021-05-28 19:07:42 +1000111MODULE_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 +1000112
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600113#ifdef CONFIG_KVM_XICS
Joe Perchesa4f1d942020-10-03 17:18:06 -0700114static const struct kernel_param_ops module_param_ops = {
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600115 .set = param_set_int,
116 .get = param_get_int,
117};
118
Russell Currey57ad583f2017-01-12 14:54:13 +1100119module_param_cb(kvm_irq_bypass, &module_param_ops, &kvm_irq_bypass, 0644);
Suresh Warrier644abbb2016-08-19 15:35:54 +1000120MODULE_PARM_DESC(kvm_irq_bypass, "Bypass passthrough interrupt optimization");
121
Russell Currey57ad583f2017-01-12 14:54:13 +1100122module_param_cb(h_ipi_redirect, &module_param_ops, &h_ipi_redirect, 0644);
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600123MODULE_PARM_DESC(h_ipi_redirect, "Redirect H_IPI wakeup to a free host core");
124#endif
125
Paul Mackerrasaa069a92018-09-21 20:02:01 +1000126/* If set, guests are allowed to create and control nested guests */
127static bool nested = true;
128module_param(nested, bool, S_IRUGO | S_IWUSR);
129MODULE_PARM_DESC(nested, "Enable nested virtualization (only on POWER9)");
130
Paul Mackerras32fad282012-05-04 02:32:53 +0000131static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000132
Paul Mackerras7aa15842018-04-20 19:53:22 +1000133/*
134 * RWMR values for POWER8. These control the rate at which PURR
135 * and SPURR count and should be set according to the number of
136 * online threads in the vcore being run.
137 */
Nicholas Mc Guire0abb75b2018-07-07 11:07:25 +0200138#define RWMR_RPA_P8_1THREAD 0x164520C62609AECAUL
139#define RWMR_RPA_P8_2THREAD 0x7FFF2908450D8DA9UL
140#define RWMR_RPA_P8_3THREAD 0x164520C62609AECAUL
141#define RWMR_RPA_P8_4THREAD 0x199A421245058DA9UL
142#define RWMR_RPA_P8_5THREAD 0x164520C62609AECAUL
143#define RWMR_RPA_P8_6THREAD 0x164520C62609AECAUL
144#define RWMR_RPA_P8_7THREAD 0x164520C62609AECAUL
145#define RWMR_RPA_P8_8THREAD 0x164520C62609AECAUL
Paul Mackerras7aa15842018-04-20 19:53:22 +1000146
147static unsigned long p8_rwmr_values[MAX_SMT_THREADS + 1] = {
148 RWMR_RPA_P8_1THREAD,
149 RWMR_RPA_P8_1THREAD,
150 RWMR_RPA_P8_2THREAD,
151 RWMR_RPA_P8_3THREAD,
152 RWMR_RPA_P8_4THREAD,
153 RWMR_RPA_P8_5THREAD,
154 RWMR_RPA_P8_6THREAD,
155 RWMR_RPA_P8_7THREAD,
156 RWMR_RPA_P8_8THREAD,
157};
158
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +1000159static inline struct kvm_vcpu *next_runnable_thread(struct kvmppc_vcore *vc,
160 int *ip)
161{
162 int i = *ip;
163 struct kvm_vcpu *vcpu;
164
165 while (++i < MAX_SMT_THREADS) {
166 vcpu = READ_ONCE(vc->runnable_threads[i]);
167 if (vcpu) {
168 *ip = i;
169 return vcpu;
170 }
171 }
172 return NULL;
173}
174
175/* Used to traverse the list of runnable threads for a given vcore */
176#define for_each_runnable_thread(i, vcpu, vc) \
177 for (i = -1; (vcpu = next_runnable_thread(vc, &i)); )
178
Paul Mackerras66feed62015-03-28 14:21:12 +1100179static bool kvmppc_ipi_thread(int cpu)
180{
Paul Mackerras1704a812016-11-18 08:47:08 +1100181 unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER);
182
Paul Mackerrasf3c18e92018-10-08 16:31:05 +1100183 /* If we're a nested hypervisor, fall back to ordinary IPIs for now */
184 if (kvmhv_on_pseries())
185 return false;
186
Paul Mackerras1704a812016-11-18 08:47:08 +1100187 /* On POWER9 we can use msgsnd to IPI any cpu */
188 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
189 msg |= get_hard_smp_processor_id(cpu);
190 smp_mb();
191 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
192 return true;
193 }
194
Paul Mackerras66feed62015-03-28 14:21:12 +1100195 /* On POWER8 for IPIs to threads in the same core, use msgsnd */
196 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
197 preempt_disable();
198 if (cpu_first_thread_sibling(cpu) ==
199 cpu_first_thread_sibling(smp_processor_id())) {
Paul Mackerras66feed62015-03-28 14:21:12 +1100200 msg |= cpu_thread_in_core(cpu);
201 smp_mb();
202 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
203 preempt_enable();
204 return true;
205 }
206 preempt_enable();
207 }
208
209#if defined(CONFIG_PPC_ICP_NATIVE) && defined(CONFIG_SMP)
Paul Mackerrasf7257582016-11-18 09:02:08 +1100210 if (cpu >= 0 && cpu < nr_cpu_ids) {
Nicholas Piggind2e60072018-02-14 01:08:12 +1000211 if (paca_ptrs[cpu]->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +1100212 xics_wake_cpu(cpu);
213 return true;
214 }
215 opal_int_set_mfrr(get_hard_smp_processor_id(cpu), IPI_PRIORITY);
Paul Mackerras66feed62015-03-28 14:21:12 +1100216 return true;
217 }
218#endif
219
220 return false;
221}
222
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530223static void kvmppc_fast_vcpu_kick_hv(struct kvm_vcpu *vcpu)
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000224{
Paul Mackerrasec257162015-06-24 21:18:03 +1000225 int cpu;
Davidlohr Buesoda4ad882020-04-23 22:48:37 -0700226 struct rcuwait *waitp;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000227
Davidlohr Buesoda4ad882020-04-23 22:48:37 -0700228 waitp = kvm_arch_vcpu_get_wait(vcpu);
229 if (rcuwait_wake_up(waitp))
Jing Zhang0193cc92021-06-18 22:27:03 +0000230 ++vcpu->stat.generic.halt_wakeup;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000231
Paul Mackerras3deda5e2016-12-20 14:02:29 +1100232 cpu = READ_ONCE(vcpu->arch.thread_cpu);
233 if (cpu >= 0 && kvmppc_ipi_thread(cpu))
Paul Mackerras66feed62015-03-28 14:21:12 +1100234 return;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000235
236 /* CPU points to the first thread of the core */
Paul Mackerrasec257162015-06-24 21:18:03 +1000237 cpu = vcpu->cpu;
Paul Mackerras66feed62015-03-28 14:21:12 +1100238 if (cpu >= 0 && cpu < nr_cpu_ids && cpu_online(cpu))
239 smp_send_reschedule(cpu);
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000240}
241
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000242/*
243 * We use the vcpu_load/put functions to measure stolen time.
244 * Stolen time is counted as time when either the vcpu is able to
245 * run as part of a virtual core, but the task running the vcore
246 * is preempted or sleeping, or when the vcpu needs something done
247 * in the kernel by the task running the vcpu, but that task is
248 * preempted or sleeping. Those two things have to be counted
249 * separately, since one of the vcpu tasks will take on the job
250 * of running the core, and the other vcpu tasks in the vcore will
251 * sleep waiting for it to do that, but that sleep shouldn't count
252 * as stolen time.
253 *
254 * Hence we accumulate stolen time when the vcpu can run as part of
255 * a vcore using vc->stolen_tb, and the stolen time when the vcpu
256 * needs its task to do other things in the kernel (for example,
257 * service a page fault) in busy_stolen. We don't accumulate
258 * stolen time for a vcore when it is inactive, or for a vcpu
259 * when it is in state RUNNING or NOTREADY. NOTREADY is a bit of
260 * a misnomer; it means that the vcpu task is not executing in
261 * the KVM_VCPU_RUN ioctl, i.e. it is in userspace or elsewhere in
262 * the kernel. We don't have any way of dividing up that time
263 * between time that the vcpu is genuinely stopped, time that
264 * the task is actively working on behalf of the vcpu, and time
265 * that the task is preempted, so we don't count any of it as
266 * stolen.
267 *
268 * Updates to busy_stolen are protected by arch.tbacct_lock;
Paul Mackerras2711e242014-12-04 16:43:28 +1100269 * updates to vc->stolen_tb are protected by the vcore->stoltb_lock
270 * lock. The stolen times are measured in units of timebase ticks.
271 * (Note that the != TB_NIL checks below are purely defensive;
272 * they should never fail.)
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000273 */
274
Nicholas Piggincb2553a2021-11-23 19:52:02 +1000275static void kvmppc_core_start_stolen(struct kvmppc_vcore *vc, u64 tb)
Paul Mackerrasec257162015-06-24 21:18:03 +1000276{
277 unsigned long flags;
278
Nicholas Pigginecb6a722021-11-23 19:52:28 +1000279 WARN_ON_ONCE(cpu_has_feature(CPU_FTR_ARCH_300));
280
Paul Mackerrasec257162015-06-24 21:18:03 +1000281 spin_lock_irqsave(&vc->stoltb_lock, flags);
Nicholas Piggincb2553a2021-11-23 19:52:02 +1000282 vc->preempt_tb = tb;
Paul Mackerrasec257162015-06-24 21:18:03 +1000283 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
284}
285
Nicholas Piggincb2553a2021-11-23 19:52:02 +1000286static void kvmppc_core_end_stolen(struct kvmppc_vcore *vc, u64 tb)
Paul Mackerrasec257162015-06-24 21:18:03 +1000287{
288 unsigned long flags;
289
Nicholas Pigginecb6a722021-11-23 19:52:28 +1000290 WARN_ON_ONCE(cpu_has_feature(CPU_FTR_ARCH_300));
291
Paul Mackerrasec257162015-06-24 21:18:03 +1000292 spin_lock_irqsave(&vc->stoltb_lock, flags);
293 if (vc->preempt_tb != TB_NIL) {
Nicholas Piggincb2553a2021-11-23 19:52:02 +1000294 vc->stolen_tb += tb - vc->preempt_tb;
Paul Mackerrasec257162015-06-24 21:18:03 +1000295 vc->preempt_tb = TB_NIL;
296 }
297 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
298}
299
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530300static void kvmppc_core_vcpu_load_hv(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000301{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000302 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100303 unsigned long flags;
Nicholas Pigginecb6a722021-11-23 19:52:28 +1000304 u64 now;
305
306 if (cpu_has_feature(CPU_FTR_ARCH_300))
307 return;
308
309 now = mftb();
Paul Mackerras0456ec42012-02-03 00:56:21 +0000310
Paul Mackerras2711e242014-12-04 16:43:28 +1100311 /*
312 * We can test vc->runner without taking the vcore lock,
313 * because only this task ever sets vc->runner to this
314 * vcpu, and once it is set to this vcpu, only this task
315 * ever sets it to NULL.
316 */
Paul Mackerrasec257162015-06-24 21:18:03 +1000317 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
Nicholas Piggincb2553a2021-11-23 19:52:02 +1000318 kvmppc_core_end_stolen(vc, now);
Paul Mackerrasec257162015-06-24 21:18:03 +1000319
Paul Mackerras2711e242014-12-04 16:43:28 +1100320 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000321 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST &&
322 vcpu->arch.busy_preempt != TB_NIL) {
Nicholas Piggincb2553a2021-11-23 19:52:02 +1000323 vcpu->arch.busy_stolen += now - vcpu->arch.busy_preempt;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000324 vcpu->arch.busy_preempt = TB_NIL;
325 }
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100326 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000327}
328
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530329static void kvmppc_core_vcpu_put_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000330{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000331 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100332 unsigned long flags;
Nicholas Pigginecb6a722021-11-23 19:52:28 +1000333 u64 now;
334
335 if (cpu_has_feature(CPU_FTR_ARCH_300))
336 return;
337
338 now = mftb();
Paul Mackerras0456ec42012-02-03 00:56:21 +0000339
Paul Mackerrasec257162015-06-24 21:18:03 +1000340 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
Nicholas Piggincb2553a2021-11-23 19:52:02 +1000341 kvmppc_core_start_stolen(vc, now);
Paul Mackerrasec257162015-06-24 21:18:03 +1000342
Paul Mackerras2711e242014-12-04 16:43:28 +1100343 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000344 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST)
Nicholas Piggincb2553a2021-11-23 19:52:02 +1000345 vcpu->arch.busy_preempt = now;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100346 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000347}
348
Thomas Huth5358a962015-05-22 09:25:02 +0200349static void kvmppc_set_pvr_hv(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000350{
351 vcpu->arch.pvr = pvr;
352}
353
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000354/* Dummy value used in computing PCR value below */
355#define PCR_ARCH_31 (PCR_ARCH_300 << 1)
356
Thomas Huth5358a962015-05-22 09:25:02 +0200357static int kvmppc_set_arch_compat(struct kvm_vcpu *vcpu, u32 arch_compat)
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000358{
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100359 unsigned long host_pcr_bit = 0, guest_pcr_bit = 0;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000360 struct kvmppc_vcore *vc = vcpu->arch.vcore;
361
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100362 /* We can (emulate) our own architecture version and anything older */
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000363 if (cpu_has_feature(CPU_FTR_ARCH_31))
364 host_pcr_bit = PCR_ARCH_31;
365 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100366 host_pcr_bit = PCR_ARCH_300;
367 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
368 host_pcr_bit = PCR_ARCH_207;
369 else if (cpu_has_feature(CPU_FTR_ARCH_206))
370 host_pcr_bit = PCR_ARCH_206;
371 else
372 host_pcr_bit = PCR_ARCH_205;
373
374 /* Determine lowest PCR bit needed to run guest in given PVR level */
375 guest_pcr_bit = host_pcr_bit;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000376 if (arch_compat) {
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000377 switch (arch_compat) {
378 case PVR_ARCH_205:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100379 guest_pcr_bit = PCR_ARCH_205;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000380 break;
381 case PVR_ARCH_206:
382 case PVR_ARCH_206p:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100383 guest_pcr_bit = PCR_ARCH_206;
Paul Mackerras5557ae02014-01-08 21:25:24 +1100384 break;
385 case PVR_ARCH_207:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100386 guest_pcr_bit = PCR_ARCH_207;
387 break;
388 case PVR_ARCH_300:
389 guest_pcr_bit = PCR_ARCH_300;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000390 break;
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000391 case PVR_ARCH_31:
392 guest_pcr_bit = PCR_ARCH_31;
393 break;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000394 default:
395 return -EINVAL;
396 }
397 }
398
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100399 /* Check requested PCR bits don't exceed our capabilities */
400 if (guest_pcr_bit > host_pcr_bit)
401 return -EINVAL;
402
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000403 spin_lock(&vc->lock);
404 vc->arch_compat = arch_compat;
Jordan Niethe13c7bb32019-09-17 10:46:05 +1000405 /*
406 * Set all PCR bits for which guest_pcr_bit <= bit < host_pcr_bit
407 * Also set all reserved PCR bits
408 */
409 vc->pcr = (host_pcr_bit - guest_pcr_bit) | PCR_MASK;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000410 spin_unlock(&vc->lock);
411
412 return 0;
413}
414
Thomas Huth5358a962015-05-22 09:25:02 +0200415static void kvmppc_dump_regs(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000416{
417 int r;
418
419 pr_err("vcpu %p (%d):\n", vcpu, vcpu->vcpu_id);
420 pr_err("pc = %.16lx msr = %.16llx trap = %x\n",
Simon Guo173c5202018-05-07 14:20:08 +0800421 vcpu->arch.regs.nip, vcpu->arch.shregs.msr, vcpu->arch.trap);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000422 for (r = 0; r < 16; ++r)
423 pr_err("r%2d = %.16lx r%d = %.16lx\n",
424 r, kvmppc_get_gpr(vcpu, r),
425 r+16, kvmppc_get_gpr(vcpu, r+16));
426 pr_err("ctr = %.16lx lr = %.16lx\n",
Simon Guo173c5202018-05-07 14:20:08 +0800427 vcpu->arch.regs.ctr, vcpu->arch.regs.link);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000428 pr_err("srr0 = %.16llx srr1 = %.16llx\n",
429 vcpu->arch.shregs.srr0, vcpu->arch.shregs.srr1);
430 pr_err("sprg0 = %.16llx sprg1 = %.16llx\n",
431 vcpu->arch.shregs.sprg0, vcpu->arch.shregs.sprg1);
432 pr_err("sprg2 = %.16llx sprg3 = %.16llx\n",
433 vcpu->arch.shregs.sprg2, vcpu->arch.shregs.sprg3);
Paul Mackerrasfd0944b2018-10-08 16:30:58 +1100434 pr_err("cr = %.8lx xer = %.16lx dsisr = %.8x\n",
435 vcpu->arch.regs.ccr, vcpu->arch.regs.xer, vcpu->arch.shregs.dsisr);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000436 pr_err("dar = %.16llx\n", vcpu->arch.shregs.dar);
437 pr_err("fault dar = %.16lx dsisr = %.8x\n",
438 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
439 pr_err("SLB (%d entries):\n", vcpu->arch.slb_max);
440 for (r = 0; r < vcpu->arch.slb_max; ++r)
441 pr_err(" ESID = %.16llx VSID = %.16llx\n",
442 vcpu->arch.slb[r].orige, vcpu->arch.slb[r].origv);
443 pr_err("lpcr = %.16lx sdr1 = %.16lx last_inst = %.8x\n",
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000444 vcpu->arch.vcore->lpcr, vcpu->kvm->arch.sdr1,
Paul Mackerrasde56a942011-06-29 00:21:34 +0000445 vcpu->arch.last_inst);
446}
447
Thomas Huth5358a962015-05-22 09:25:02 +0200448static struct kvm_vcpu *kvmppc_find_vcpu(struct kvm *kvm, int id)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000449{
Paul Mackerras5a3f4932019-05-23 16:36:32 +1000450 return kvm_get_vcpu_by_id(kvm, id);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000451}
452
453static void init_vpa(struct kvm_vcpu *vcpu, struct lppaca *vpa)
454{
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000455 vpa->__old_status |= LPPACA_OLD_SHARED_PROC;
Alexander Graf02407552014-06-11 10:34:19 +0200456 vpa->yield_count = cpu_to_be32(1);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000457}
458
Paul Mackerras55b665b2012-09-25 20:33:06 +0000459static int set_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *v,
460 unsigned long addr, unsigned long len)
461{
462 /* check address is cacheline aligned */
463 if (addr & (L1_CACHE_BYTES - 1))
464 return -EINVAL;
465 spin_lock(&vcpu->arch.vpa_update_lock);
466 if (v->next_gpa != addr || v->len != len) {
467 v->next_gpa = addr;
468 v->len = addr ? len : 0;
469 v->update_pending = 1;
470 }
471 spin_unlock(&vcpu->arch.vpa_update_lock);
472 return 0;
473}
474
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000475/* Length for a per-processor buffer is passed in at offset 4 in the buffer */
476struct reg_vpa {
477 u32 dummy;
478 union {
Alexander Graf02407552014-06-11 10:34:19 +0200479 __be16 hword;
480 __be32 word;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000481 } length;
482};
483
484static int vpa_is_registered(struct kvmppc_vpa *vpap)
485{
486 if (vpap->update_pending)
487 return vpap->next_gpa != 0;
488 return vpap->pinned_addr != NULL;
489}
490
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000491static unsigned long do_h_register_vpa(struct kvm_vcpu *vcpu,
492 unsigned long flags,
493 unsigned long vcpuid, unsigned long vpa)
494{
495 struct kvm *kvm = vcpu->kvm;
Paul Mackerras93e60242011-12-12 12:28:55 +0000496 unsigned long len, nb;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000497 void *va;
498 struct kvm_vcpu *tvcpu;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000499 int err;
500 int subfunc;
501 struct kvmppc_vpa *vpap;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000502
503 tvcpu = kvmppc_find_vcpu(kvm, vcpuid);
504 if (!tvcpu)
505 return H_PARAMETER;
506
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000507 subfunc = (flags >> H_VPA_FUNC_SHIFT) & H_VPA_FUNC_MASK;
508 if (subfunc == H_VPA_REG_VPA || subfunc == H_VPA_REG_DTL ||
509 subfunc == H_VPA_REG_SLB) {
510 /* Registering new area - address must be cache-line aligned */
511 if ((vpa & (L1_CACHE_BYTES - 1)) || !vpa)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000512 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000513
514 /* convert logical addr to kernel addr and read length */
Paul Mackerras93e60242011-12-12 12:28:55 +0000515 va = kvmppc_pin_guest_page(kvm, vpa, &nb);
516 if (va == NULL)
Paul Mackerrasb2b2f162011-12-12 12:28:21 +0000517 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000518 if (subfunc == H_VPA_REG_VPA)
Alexander Graf02407552014-06-11 10:34:19 +0200519 len = be16_to_cpu(((struct reg_vpa *)va)->length.hword);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000520 else
Alexander Graf02407552014-06-11 10:34:19 +0200521 len = be32_to_cpu(((struct reg_vpa *)va)->length.word);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000522 kvmppc_unpin_guest_page(kvm, va, vpa, false);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000523
524 /* Check length */
525 if (len > nb || len < sizeof(struct reg_vpa))
526 return H_PARAMETER;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000527 } else {
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000528 vpa = 0;
529 len = 0;
530 }
531
532 err = H_PARAMETER;
533 vpap = NULL;
534 spin_lock(&tvcpu->arch.vpa_update_lock);
535
536 switch (subfunc) {
537 case H_VPA_REG_VPA: /* register VPA */
Nicholas Piggineaac112e2017-08-13 11:33:38 +1000538 /*
539 * The size of our lppaca is 1kB because of the way we align
540 * it for the guest to avoid crossing a 4kB boundary. We only
541 * use 640 bytes of the structure though, so we should accept
542 * clients that set a size of 640.
543 */
Nicholas Piggin499dcd42018-02-14 01:08:13 +1000544 BUILD_BUG_ON(sizeof(struct lppaca) != 640);
545 if (len < sizeof(struct lppaca))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000546 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000547 vpap = &tvcpu->arch.vpa;
548 err = 0;
549 break;
550
551 case H_VPA_REG_DTL: /* register DTL */
552 if (len < sizeof(struct dtl_entry))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000553 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000554 len -= len % sizeof(struct dtl_entry);
555
556 /* Check that they have previously registered a VPA */
557 err = H_RESOURCE;
558 if (!vpa_is_registered(&tvcpu->arch.vpa))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000559 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000560
561 vpap = &tvcpu->arch.dtl;
562 err = 0;
563 break;
564
565 case H_VPA_REG_SLB: /* register SLB shadow buffer */
566 /* Check that they have previously registered a VPA */
567 err = H_RESOURCE;
568 if (!vpa_is_registered(&tvcpu->arch.vpa))
569 break;
570
571 vpap = &tvcpu->arch.slb_shadow;
572 err = 0;
573 break;
574
575 case H_VPA_DEREG_VPA: /* deregister VPA */
576 /* Check they don't still have a DTL or SLB buf registered */
577 err = H_RESOURCE;
578 if (vpa_is_registered(&tvcpu->arch.dtl) ||
579 vpa_is_registered(&tvcpu->arch.slb_shadow))
580 break;
581
582 vpap = &tvcpu->arch.vpa;
583 err = 0;
584 break;
585
586 case H_VPA_DEREG_DTL: /* deregister DTL */
587 vpap = &tvcpu->arch.dtl;
588 err = 0;
589 break;
590
591 case H_VPA_DEREG_SLB: /* deregister SLB shadow buffer */
592 vpap = &tvcpu->arch.slb_shadow;
593 err = 0;
594 break;
595 }
596
597 if (vpap) {
598 vpap->next_gpa = vpa;
599 vpap->len = len;
600 vpap->update_pending = 1;
601 }
602
603 spin_unlock(&tvcpu->arch.vpa_update_lock);
604
605 return err;
606}
607
Paul Mackerras081f3232012-06-01 20:20:24 +1000608static void kvmppc_update_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *vpap)
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000609{
Paul Mackerras081f3232012-06-01 20:20:24 +1000610 struct kvm *kvm = vcpu->kvm;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000611 void *va;
612 unsigned long nb;
Paul Mackerras081f3232012-06-01 20:20:24 +1000613 unsigned long gpa;
614
615 /*
616 * We need to pin the page pointed to by vpap->next_gpa,
617 * but we can't call kvmppc_pin_guest_page under the lock
618 * as it does get_user_pages() and down_read(). So we
619 * have to drop the lock, pin the page, then get the lock
620 * again and check that a new area didn't get registered
621 * in the meantime.
622 */
623 for (;;) {
624 gpa = vpap->next_gpa;
625 spin_unlock(&vcpu->arch.vpa_update_lock);
626 va = NULL;
627 nb = 0;
628 if (gpa)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000629 va = kvmppc_pin_guest_page(kvm, gpa, &nb);
Paul Mackerras081f3232012-06-01 20:20:24 +1000630 spin_lock(&vcpu->arch.vpa_update_lock);
631 if (gpa == vpap->next_gpa)
632 break;
633 /* sigh... unpin that one and try again */
634 if (va)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000635 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000636 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000637
638 vpap->update_pending = 0;
Paul Mackerras081f3232012-06-01 20:20:24 +1000639 if (va && nb < vpap->len) {
640 /*
641 * If it's now too short, it must be that userspace
642 * has changed the mappings underlying guest memory,
643 * so unregister the region.
644 */
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000645 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000646 va = NULL;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000647 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000648 if (vpap->pinned_addr)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000649 kvmppc_unpin_guest_page(kvm, vpap->pinned_addr, vpap->gpa,
650 vpap->dirty);
651 vpap->gpa = gpa;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000652 vpap->pinned_addr = va;
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000653 vpap->dirty = false;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000654 if (va)
655 vpap->pinned_end = va + vpap->len;
656}
Paul Mackerras93e60242011-12-12 12:28:55 +0000657
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000658static void kvmppc_update_vpas(struct kvm_vcpu *vcpu)
659{
Paul Mackerras2f12f032012-10-15 01:17:17 +0000660 if (!(vcpu->arch.vpa.update_pending ||
661 vcpu->arch.slb_shadow.update_pending ||
662 vcpu->arch.dtl.update_pending))
663 return;
664
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000665 spin_lock(&vcpu->arch.vpa_update_lock);
666 if (vcpu->arch.vpa.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000667 kvmppc_update_vpa(vcpu, &vcpu->arch.vpa);
Paul Mackerras55b665b2012-09-25 20:33:06 +0000668 if (vcpu->arch.vpa.pinned_addr)
669 init_vpa(vcpu, vcpu->arch.vpa.pinned_addr);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000670 }
671 if (vcpu->arch.dtl.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000672 kvmppc_update_vpa(vcpu, &vcpu->arch.dtl);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000673 vcpu->arch.dtl_ptr = vcpu->arch.dtl.pinned_addr;
674 vcpu->arch.dtl_index = 0;
675 }
676 if (vcpu->arch.slb_shadow.update_pending)
Paul Mackerras081f3232012-06-01 20:20:24 +1000677 kvmppc_update_vpa(vcpu, &vcpu->arch.slb_shadow);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000678 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000679}
680
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000681/*
682 * Return the accumulated stolen time for the vcore up until `now'.
683 * The caller should hold the vcore lock.
684 */
685static u64 vcore_stolen_time(struct kvmppc_vcore *vc, u64 now)
686{
687 u64 p;
Paul Mackerras2711e242014-12-04 16:43:28 +1100688 unsigned long flags;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000689
Nicholas Pigginecb6a722021-11-23 19:52:28 +1000690 WARN_ON_ONCE(cpu_has_feature(CPU_FTR_ARCH_300));
691
Paul Mackerras2711e242014-12-04 16:43:28 +1100692 spin_lock_irqsave(&vc->stoltb_lock, flags);
693 p = vc->stolen_tb;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000694 if (vc->vcore_state != VCORE_INACTIVE &&
Paul Mackerras2711e242014-12-04 16:43:28 +1100695 vc->preempt_tb != TB_NIL)
696 p += now - vc->preempt_tb;
697 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000698 return p;
699}
700
Nicholas Piggin617326f2021-11-23 19:52:29 +1000701static void __kvmppc_create_dtl_entry(struct kvm_vcpu *vcpu,
702 unsigned int pcpu, u64 now,
703 unsigned long stolen)
Paul Mackerras0456ec42012-02-03 00:56:21 +0000704{
705 struct dtl_entry *dt;
706 struct lppaca *vpa;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000707
708 dt = vcpu->arch.dtl_ptr;
709 vpa = vcpu->arch.vpa.pinned_addr;
Nicholas Pigginecb6a722021-11-23 19:52:28 +1000710
Paul Mackerras0456ec42012-02-03 00:56:21 +0000711 if (!dt || !vpa)
712 return;
Nicholas Piggin617326f2021-11-23 19:52:29 +1000713
Paul Mackerras0456ec42012-02-03 00:56:21 +0000714 dt->dispatch_reason = 7;
Nicholas Piggin617326f2021-11-23 19:52:29 +1000715 dt->preempt_reason = 0;
716 dt->processor_id = cpu_to_be16(pcpu + vcpu->arch.ptid);
Alexander Graf02407552014-06-11 10:34:19 +0200717 dt->enqueue_to_dispatch_time = cpu_to_be32(stolen);
Nicholas Piggin617326f2021-11-23 19:52:29 +1000718 dt->ready_to_enqueue_time = 0;
719 dt->waiting_to_ready_time = 0;
720 dt->timebase = cpu_to_be64(now);
721 dt->fault_addr = 0;
Alexander Graf02407552014-06-11 10:34:19 +0200722 dt->srr0 = cpu_to_be64(kvmppc_get_pc(vcpu));
723 dt->srr1 = cpu_to_be64(vcpu->arch.shregs.msr);
Nicholas Piggin617326f2021-11-23 19:52:29 +1000724
Paul Mackerras0456ec42012-02-03 00:56:21 +0000725 ++dt;
726 if (dt == vcpu->arch.dtl.pinned_end)
727 dt = vcpu->arch.dtl.pinned_addr;
728 vcpu->arch.dtl_ptr = dt;
729 /* order writing *dt vs. writing vpa->dtl_idx */
730 smp_wmb();
Alexander Graf02407552014-06-11 10:34:19 +0200731 vpa->dtl_idx = cpu_to_be64(++vcpu->arch.dtl_index);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000732 vcpu->arch.dtl.dirty = true;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000733}
734
Nicholas Piggin617326f2021-11-23 19:52:29 +1000735static void kvmppc_create_dtl_entry(struct kvm_vcpu *vcpu,
736 struct kvmppc_vcore *vc)
737{
738 unsigned long stolen;
739 unsigned long core_stolen;
740 u64 now;
741 unsigned long flags;
742
743 now = mftb();
744
745 core_stolen = vcore_stolen_time(vc, now);
746 stolen = core_stolen - vcpu->arch.stolen_logged;
747 vcpu->arch.stolen_logged = core_stolen;
748 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
749 stolen += vcpu->arch.busy_stolen;
750 vcpu->arch.busy_stolen = 0;
751 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
752
753 __kvmppc_create_dtl_entry(vcpu, vc->pcpu, now + vc->tb_offset, stolen);
754}
755
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000756/* See if there is a doorbell interrupt pending for a vcpu */
757static bool kvmppc_doorbell_pending(struct kvm_vcpu *vcpu)
758{
759 int thr;
760 struct kvmppc_vcore *vc;
761
Paul Mackerras57900692017-05-16 16:41:20 +1000762 if (vcpu->arch.doorbell_request)
763 return true;
Nicholas Piggin63983262021-11-23 19:52:30 +1000764 if (cpu_has_feature(CPU_FTR_ARCH_300))
765 return false;
Paul Mackerras57900692017-05-16 16:41:20 +1000766 /*
767 * Ensure that the read of vcore->dpdes comes after the read
768 * of vcpu->doorbell_request. This barrier matches the
Palmer Dabbelt6fabc9f2019-04-25 12:53:39 -0700769 * smp_wmb() in kvmppc_guest_entry_inject().
Paul Mackerras57900692017-05-16 16:41:20 +1000770 */
771 smp_rmb();
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000772 vc = vcpu->arch.vcore;
773 thr = vcpu->vcpu_id - vc->first_vcpuid;
774 return !!(vc->dpdes & (1 << thr));
775}
776
Michael Neuling96423822014-06-02 11:03:01 +1000777static bool kvmppc_power8_compatible(struct kvm_vcpu *vcpu)
778{
779 if (vcpu->arch.vcore->arch_compat >= PVR_ARCH_207)
780 return true;
781 if ((!vcpu->arch.vcore->arch_compat) &&
782 cpu_has_feature(CPU_FTR_ARCH_207S))
783 return true;
784 return false;
785}
786
787static int kvmppc_h_set_mode(struct kvm_vcpu *vcpu, unsigned long mflags,
788 unsigned long resource, unsigned long value1,
789 unsigned long value2)
790{
791 switch (resource) {
792 case H_SET_MODE_RESOURCE_SET_CIABR:
793 if (!kvmppc_power8_compatible(vcpu))
794 return H_P2;
795 if (value2)
796 return H_P4;
797 if (mflags)
798 return H_UNSUPPORTED_FLAG_START;
799 /* Guests can't breakpoint the hypervisor */
800 if ((value1 & CIABR_PRIV) == CIABR_PRIV_HYPER)
801 return H_P3;
802 vcpu->arch.ciabr = value1;
803 return H_SUCCESS;
Ravi Bangoria6f3fe292020-07-23 14:38:10 +0530804 case H_SET_MODE_RESOURCE_SET_DAWR0:
Michael Neuling96423822014-06-02 11:03:01 +1000805 if (!kvmppc_power8_compatible(vcpu))
806 return H_P2;
Michael Neuling398e7122018-03-27 15:37:20 +1100807 if (!ppc_breakpoint_available())
808 return H_P2;
Michael Neuling96423822014-06-02 11:03:01 +1000809 if (mflags)
810 return H_UNSUPPORTED_FLAG_START;
811 if (value2 & DABRX_HYP)
812 return H_P4;
Ravi Bangoria122954ed72020-12-16 16:12:17 +0530813 vcpu->arch.dawr0 = value1;
814 vcpu->arch.dawrx0 = value2;
Michael Neuling96423822014-06-02 11:03:01 +1000815 return H_SUCCESS;
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +0530816 case H_SET_MODE_RESOURCE_SET_DAWR1:
817 if (!kvmppc_power8_compatible(vcpu))
818 return H_P2;
819 if (!ppc_breakpoint_available())
820 return H_P2;
821 if (!cpu_has_feature(CPU_FTR_DAWR1))
822 return H_P2;
823 if (!vcpu->kvm->arch.dawr1_enabled)
824 return H_FUNCTION;
825 if (mflags)
826 return H_UNSUPPORTED_FLAG_START;
827 if (value2 & DABRX_HYP)
828 return H_P4;
829 vcpu->arch.dawr1 = value1;
830 vcpu->arch.dawrx1 = value2;
831 return H_SUCCESS;
Nicholas Piggin55d70042019-10-02 16:00:25 +1000832 case H_SET_MODE_RESOURCE_ADDR_TRANS_MODE:
Nicholas Pigginbcc92a02021-04-12 11:48:37 +1000833 /*
834 * KVM does not support mflags=2 (AIL=2) and AIL=1 is reserved.
835 * Keep this in synch with kvmppc_filter_guest_lpcr_hv.
836 */
Nicholas Piggin2e1ae9cd2021-05-28 19:07:41 +1000837 if (cpu_has_feature(CPU_FTR_P9_RADIX_PREFETCH_BUG) &&
838 kvmhv_vcpu_is_radix(vcpu) && mflags == 3)
Nicholas Piggin55d70042019-10-02 16:00:25 +1000839 return H_UNSUPPORTED_FLAG_START;
840 return H_TOO_HARD;
Michael Neuling96423822014-06-02 11:03:01 +1000841 default:
842 return H_TOO_HARD;
843 }
844}
845
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +1100846/* Copy guest memory in place - must reside within a single memslot */
847static int kvmppc_copy_guest(struct kvm *kvm, gpa_t to, gpa_t from,
848 unsigned long len)
849{
850 struct kvm_memory_slot *to_memslot = NULL;
851 struct kvm_memory_slot *from_memslot = NULL;
852 unsigned long to_addr, from_addr;
853 int r;
854
855 /* Get HPA for from address */
856 from_memslot = gfn_to_memslot(kvm, from >> PAGE_SHIFT);
857 if (!from_memslot)
858 return -EFAULT;
859 if ((from + len) >= ((from_memslot->base_gfn + from_memslot->npages)
860 << PAGE_SHIFT))
861 return -EINVAL;
862 from_addr = gfn_to_hva_memslot(from_memslot, from >> PAGE_SHIFT);
863 if (kvm_is_error_hva(from_addr))
864 return -EFAULT;
865 from_addr |= (from & (PAGE_SIZE - 1));
866
867 /* Get HPA for to address */
868 to_memslot = gfn_to_memslot(kvm, to >> PAGE_SHIFT);
869 if (!to_memslot)
870 return -EFAULT;
871 if ((to + len) >= ((to_memslot->base_gfn + to_memslot->npages)
872 << PAGE_SHIFT))
873 return -EINVAL;
874 to_addr = gfn_to_hva_memslot(to_memslot, to >> PAGE_SHIFT);
875 if (kvm_is_error_hva(to_addr))
876 return -EFAULT;
877 to_addr |= (to & (PAGE_SIZE - 1));
878
879 /* Perform copy */
880 r = raw_copy_in_user((void __user *)to_addr, (void __user *)from_addr,
881 len);
882 if (r)
883 return -EFAULT;
884 mark_page_dirty(kvm, to >> PAGE_SHIFT);
885 return 0;
886}
887
888static long kvmppc_h_page_init(struct kvm_vcpu *vcpu, unsigned long flags,
889 unsigned long dest, unsigned long src)
890{
891 u64 pg_sz = SZ_4K; /* 4K page size */
892 u64 pg_mask = SZ_4K - 1;
893 int ret;
894
895 /* Check for invalid flags (H_PAGE_SET_LOANED covers all CMO flags) */
896 if (flags & ~(H_ICACHE_INVALIDATE | H_ICACHE_SYNCHRONIZE |
897 H_ZERO_PAGE | H_COPY_PAGE | H_PAGE_SET_LOANED))
898 return H_PARAMETER;
899
900 /* dest (and src if copy_page flag set) must be page aligned */
901 if ((dest & pg_mask) || ((flags & H_COPY_PAGE) && (src & pg_mask)))
902 return H_PARAMETER;
903
904 /* zero and/or copy the page as determined by the flags */
905 if (flags & H_COPY_PAGE) {
906 ret = kvmppc_copy_guest(vcpu->kvm, dest, src, pg_sz);
907 if (ret < 0)
908 return H_PARAMETER;
909 } else if (flags & H_ZERO_PAGE) {
910 ret = kvm_clear_guest(vcpu->kvm, dest, pg_sz);
911 if (ret < 0)
912 return H_PARAMETER;
913 }
914
915 /* We can ignore the remaining flags */
916
917 return H_SUCCESS;
918}
919
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100920static int kvm_arch_vcpu_yield_to(struct kvm_vcpu *target)
921{
922 struct kvmppc_vcore *vcore = target->arch.vcore;
923
924 /*
925 * We expect to have been called by the real mode handler
926 * (kvmppc_rm_h_confer()) which would have directly returned
927 * H_SUCCESS if the source vcore wasn't idle (e.g. if it may
928 * have useful work to do and should not confer) so we don't
929 * recheck that here.
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +1000930 *
931 * In the case of the P9 single vcpu per vcore case, the real
932 * mode handler is not called but no other threads are in the
933 * source vcore.
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100934 */
Nicholas Pigginecb6a722021-11-23 19:52:28 +1000935 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
936 spin_lock(&vcore->lock);
937 if (target->arch.state == KVMPPC_VCPU_RUNNABLE &&
938 vcore->vcore_state != VCORE_INACTIVE &&
939 vcore->runner)
940 target = vcore->runner;
941 spin_unlock(&vcore->lock);
942 }
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100943
944 return kvm_vcpu_yield_to(target);
945}
946
947static int kvmppc_get_yield_count(struct kvm_vcpu *vcpu)
948{
949 int yield_count = 0;
950 struct lppaca *lppaca;
951
952 spin_lock(&vcpu->arch.vpa_update_lock);
953 lppaca = (struct lppaca *)vcpu->arch.vpa.pinned_addr;
954 if (lppaca)
Paul Mackerrasecb6d612015-03-20 20:39:39 +1100955 yield_count = be32_to_cpu(lppaca->yield_count);
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100956 spin_unlock(&vcpu->arch.vpa_update_lock);
957 return yield_count;
958}
959
Bharata B Rao53324b52021-06-21 14:20:01 +0530960/*
961 * H_RPT_INVALIDATE hcall handler for nested guests.
962 *
963 * Handles only nested process-scoped invalidation requests in L0.
964 */
965static int kvmppc_nested_h_rpt_invalidate(struct kvm_vcpu *vcpu)
966{
967 unsigned long type = kvmppc_get_gpr(vcpu, 6);
968 unsigned long pid, pg_sizes, start, end;
969
970 /*
971 * The partition-scoped invalidations aren't handled here in L0.
972 */
973 if (type & H_RPTI_TYPE_NESTED)
974 return RESUME_HOST;
975
976 pid = kvmppc_get_gpr(vcpu, 4);
977 pg_sizes = kvmppc_get_gpr(vcpu, 7);
978 start = kvmppc_get_gpr(vcpu, 8);
979 end = kvmppc_get_gpr(vcpu, 9);
980
981 do_h_rpt_invalidate_prt(pid, vcpu->arch.nested->shadow_lpid,
982 type, pg_sizes, start, end);
983
984 kvmppc_set_gpr(vcpu, 3, H_SUCCESS);
985 return RESUME_GUEST;
986}
987
Bharata B Raof0c6fbb2021-06-21 14:20:00 +0530988static long kvmppc_h_rpt_invalidate(struct kvm_vcpu *vcpu,
989 unsigned long id, unsigned long target,
990 unsigned long type, unsigned long pg_sizes,
991 unsigned long start, unsigned long end)
992{
993 if (!kvm_is_radix(vcpu->kvm))
994 return H_UNSUPPORTED;
995
996 if (end < start)
997 return H_P5;
998
999 /*
1000 * Partition-scoped invalidation for nested guests.
Bharata B Raof0c6fbb2021-06-21 14:20:00 +05301001 */
Bharata B Rao53324b52021-06-21 14:20:01 +05301002 if (type & H_RPTI_TYPE_NESTED) {
1003 if (!nesting_enabled(vcpu->kvm))
1004 return H_FUNCTION;
1005
1006 /* Support only cores as target */
1007 if (target != H_RPTI_TARGET_CMMU)
1008 return H_P2;
1009
1010 return do_h_rpt_invalidate_pat(vcpu, id, type, pg_sizes,
1011 start, end);
1012 }
Bharata B Raof0c6fbb2021-06-21 14:20:00 +05301013
1014 /*
1015 * Process-scoped invalidation for L1 guests.
1016 */
1017 do_h_rpt_invalidate_prt(id, vcpu->kvm->arch.lpid,
1018 type, pg_sizes, start, end);
1019 return H_SUCCESS;
1020}
1021
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001022int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
1023{
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001024 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001025 unsigned long req = kvmppc_get_gpr(vcpu, 3);
1026 unsigned long target, ret = H_SUCCESS;
Sam Bobroff90fd09f2014-12-03 13:30:40 +11001027 int yield_count;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001028 struct kvm_vcpu *tvcpu;
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001029 int idx, rc;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001030
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001031 if (req <= MAX_HCALL_OPCODE &&
1032 !test_bit(req/4, vcpu->kvm->arch.enabled_hcalls))
1033 return RESUME_HOST;
1034
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001035 switch (req) {
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001036 case H_REMOVE:
1037 ret = kvmppc_h_remove(vcpu, kvmppc_get_gpr(vcpu, 4),
1038 kvmppc_get_gpr(vcpu, 5),
1039 kvmppc_get_gpr(vcpu, 6));
1040 if (ret == H_TOO_HARD)
1041 return RESUME_HOST;
1042 break;
1043 case H_ENTER:
1044 ret = kvmppc_h_enter(vcpu, kvmppc_get_gpr(vcpu, 4),
1045 kvmppc_get_gpr(vcpu, 5),
1046 kvmppc_get_gpr(vcpu, 6),
1047 kvmppc_get_gpr(vcpu, 7));
1048 if (ret == H_TOO_HARD)
1049 return RESUME_HOST;
1050 break;
1051 case H_READ:
1052 ret = kvmppc_h_read(vcpu, kvmppc_get_gpr(vcpu, 4),
1053 kvmppc_get_gpr(vcpu, 5));
1054 if (ret == H_TOO_HARD)
1055 return RESUME_HOST;
1056 break;
1057 case H_CLEAR_MOD:
1058 ret = kvmppc_h_clear_mod(vcpu, kvmppc_get_gpr(vcpu, 4),
1059 kvmppc_get_gpr(vcpu, 5));
1060 if (ret == H_TOO_HARD)
1061 return RESUME_HOST;
1062 break;
1063 case H_CLEAR_REF:
1064 ret = kvmppc_h_clear_ref(vcpu, kvmppc_get_gpr(vcpu, 4),
1065 kvmppc_get_gpr(vcpu, 5));
1066 if (ret == H_TOO_HARD)
1067 return RESUME_HOST;
1068 break;
1069 case H_PROTECT:
1070 ret = kvmppc_h_protect(vcpu, kvmppc_get_gpr(vcpu, 4),
1071 kvmppc_get_gpr(vcpu, 5),
1072 kvmppc_get_gpr(vcpu, 6));
1073 if (ret == H_TOO_HARD)
1074 return RESUME_HOST;
1075 break;
1076 case H_BULK_REMOVE:
1077 ret = kvmppc_h_bulk_remove(vcpu);
1078 if (ret == H_TOO_HARD)
1079 return RESUME_HOST;
1080 break;
1081
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001082 case H_CEDE:
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001083 break;
1084 case H_PROD:
1085 target = kvmppc_get_gpr(vcpu, 4);
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001086 tvcpu = kvmppc_find_vcpu(kvm, target);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001087 if (!tvcpu) {
1088 ret = H_PARAMETER;
1089 break;
1090 }
1091 tvcpu->arch.prodded = 1;
1092 smp_mb();
Paul Mackerras8464c882016-12-06 20:42:05 +11001093 if (tvcpu->arch.ceded)
1094 kvmppc_fast_vcpu_kick_hv(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001095 break;
1096 case H_CONFER:
Paul Mackerras42d76042013-09-06 13:23:21 +10001097 target = kvmppc_get_gpr(vcpu, 4);
1098 if (target == -1)
1099 break;
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001100 tvcpu = kvmppc_find_vcpu(kvm, target);
Paul Mackerras42d76042013-09-06 13:23:21 +10001101 if (!tvcpu) {
1102 ret = H_PARAMETER;
1103 break;
1104 }
Sam Bobroff90fd09f2014-12-03 13:30:40 +11001105 yield_count = kvmppc_get_gpr(vcpu, 5);
1106 if (kvmppc_get_yield_count(tvcpu) != yield_count)
1107 break;
1108 kvm_arch_vcpu_yield_to(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001109 break;
1110 case H_REGISTER_VPA:
1111 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
1112 kvmppc_get_gpr(vcpu, 5),
1113 kvmppc_get_gpr(vcpu, 6));
1114 break;
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001115 case H_RTAS:
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001116 if (list_empty(&kvm->arch.rtas_tokens))
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001117 return RESUME_HOST;
1118
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001119 idx = srcu_read_lock(&kvm->srcu);
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001120 rc = kvmppc_rtas_hcall(vcpu);
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001121 srcu_read_unlock(&kvm->srcu, idx);
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001122
1123 if (rc == -ENOENT)
1124 return RESUME_HOST;
1125 else if (rc == 0)
1126 break;
1127
1128 /* Send the error out to userspace via KVM_RUN */
1129 return rc;
David Gibson99342cf82015-02-05 11:53:25 +11001130 case H_LOGICAL_CI_LOAD:
1131 ret = kvmppc_h_logical_ci_load(vcpu);
1132 if (ret == H_TOO_HARD)
1133 return RESUME_HOST;
1134 break;
1135 case H_LOGICAL_CI_STORE:
1136 ret = kvmppc_h_logical_ci_store(vcpu);
1137 if (ret == H_TOO_HARD)
1138 return RESUME_HOST;
1139 break;
Michael Neuling96423822014-06-02 11:03:01 +10001140 case H_SET_MODE:
1141 ret = kvmppc_h_set_mode(vcpu, kvmppc_get_gpr(vcpu, 4),
1142 kvmppc_get_gpr(vcpu, 5),
1143 kvmppc_get_gpr(vcpu, 6),
1144 kvmppc_get_gpr(vcpu, 7));
1145 if (ret == H_TOO_HARD)
1146 return RESUME_HOST;
1147 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +00001148 case H_XIRR:
1149 case H_CPPR:
1150 case H_EOI:
1151 case H_IPI:
Paul Mackerras8e44ddc2013-05-23 15:42:21 +00001152 case H_IPOLL:
1153 case H_XIRR_X:
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +00001154 if (kvmppc_xics_enabled(vcpu)) {
Paul Mackerras03f95332019-02-04 22:07:20 +11001155 if (xics_on_xive()) {
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001156 ret = H_NOT_AVAILABLE;
1157 return RESUME_GUEST;
1158 }
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +00001159 ret = kvmppc_xics_hcall(vcpu, req);
1160 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11001161 }
1162 return RESUME_HOST;
Paul Mackerras4bad7772018-10-08 16:31:06 +11001163 case H_SET_DABR:
1164 ret = kvmppc_h_set_dabr(vcpu, kvmppc_get_gpr(vcpu, 4));
1165 break;
1166 case H_SET_XDABR:
1167 ret = kvmppc_h_set_xdabr(vcpu, kvmppc_get_gpr(vcpu, 4),
1168 kvmppc_get_gpr(vcpu, 5));
1169 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001170#ifdef CONFIG_SPAPR_TCE_IOMMU
Paul Mackerras4bad7772018-10-08 16:31:06 +11001171 case H_GET_TCE:
1172 ret = kvmppc_h_get_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1173 kvmppc_get_gpr(vcpu, 5));
1174 if (ret == H_TOO_HARD)
1175 return RESUME_HOST;
1176 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11001177 case H_PUT_TCE:
1178 ret = kvmppc_h_put_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1179 kvmppc_get_gpr(vcpu, 5),
1180 kvmppc_get_gpr(vcpu, 6));
1181 if (ret == H_TOO_HARD)
1182 return RESUME_HOST;
1183 break;
1184 case H_PUT_TCE_INDIRECT:
1185 ret = kvmppc_h_put_tce_indirect(vcpu, kvmppc_get_gpr(vcpu, 4),
1186 kvmppc_get_gpr(vcpu, 5),
1187 kvmppc_get_gpr(vcpu, 6),
1188 kvmppc_get_gpr(vcpu, 7));
1189 if (ret == H_TOO_HARD)
1190 return RESUME_HOST;
1191 break;
1192 case H_STUFF_TCE:
1193 ret = kvmppc_h_stuff_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1194 kvmppc_get_gpr(vcpu, 5),
1195 kvmppc_get_gpr(vcpu, 6),
1196 kvmppc_get_gpr(vcpu, 7));
1197 if (ret == H_TOO_HARD)
1198 return RESUME_HOST;
1199 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001200#endif
Paul Mackerras4bad7772018-10-08 16:31:06 +11001201 case H_RANDOM:
Alexey Kardashevskiy2ac78e02021-08-05 17:56:49 +10001202 if (!arch_get_random_seed_long(&vcpu->arch.regs.gpr[4]))
Paul Mackerras4bad7772018-10-08 16:31:06 +11001203 ret = H_HARDWARE;
1204 break;
Bharata B Raof0c6fbb2021-06-21 14:20:00 +05301205 case H_RPT_INVALIDATE:
1206 ret = kvmppc_h_rpt_invalidate(vcpu, kvmppc_get_gpr(vcpu, 4),
1207 kvmppc_get_gpr(vcpu, 5),
1208 kvmppc_get_gpr(vcpu, 6),
1209 kvmppc_get_gpr(vcpu, 7),
1210 kvmppc_get_gpr(vcpu, 8),
1211 kvmppc_get_gpr(vcpu, 9));
1212 break;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001213
1214 case H_SET_PARTITION_TABLE:
1215 ret = H_FUNCTION;
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001216 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001217 ret = kvmhv_set_partition_table(vcpu);
1218 break;
1219 case H_ENTER_NESTED:
1220 ret = H_FUNCTION;
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001221 if (!nesting_enabled(kvm))
Paul Mackerras360cae32018-10-08 16:31:04 +11001222 break;
1223 ret = kvmhv_enter_nested_guest(vcpu);
1224 if (ret == H_INTERRUPT) {
1225 kvmppc_set_gpr(vcpu, 3, 0);
Michael Roth6c08ec12018-11-08 21:27:23 -06001226 vcpu->arch.hcall_needed = 0;
Paul Mackerras360cae32018-10-08 16:31:04 +11001227 return -EINTR;
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11001228 } else if (ret == H_TOO_HARD) {
1229 kvmppc_set_gpr(vcpu, 3, 0);
1230 vcpu->arch.hcall_needed = 0;
1231 return RESUME_HOST;
Paul Mackerras360cae32018-10-08 16:31:04 +11001232 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001233 break;
1234 case H_TLB_INVALIDATE:
1235 ret = H_FUNCTION;
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001236 if (nesting_enabled(kvm))
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001237 ret = kvmhv_do_nested_tlbie(vcpu);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001238 break;
Suraj Jitindar Singh6ff887b2018-12-14 16:29:09 +11001239 case H_COPY_TOFROM_GUEST:
1240 ret = H_FUNCTION;
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001241 if (nesting_enabled(kvm))
Suraj Jitindar Singh6ff887b2018-12-14 16:29:09 +11001242 ret = kvmhv_copy_tofrom_guest_nested(vcpu);
1243 break;
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001244 case H_PAGE_INIT:
1245 ret = kvmppc_h_page_init(vcpu, kvmppc_get_gpr(vcpu, 4),
1246 kvmppc_get_gpr(vcpu, 5),
1247 kvmppc_get_gpr(vcpu, 6));
1248 break;
Bharata B Raoca9f4942019-11-25 08:36:26 +05301249 case H_SVM_PAGE_IN:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001250 ret = H_UNSUPPORTED;
1251 if (kvmppc_get_srr1(vcpu) & MSR_S)
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001252 ret = kvmppc_h_svm_page_in(kvm,
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001253 kvmppc_get_gpr(vcpu, 4),
1254 kvmppc_get_gpr(vcpu, 5),
1255 kvmppc_get_gpr(vcpu, 6));
Bharata B Raoca9f4942019-11-25 08:36:26 +05301256 break;
1257 case H_SVM_PAGE_OUT:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001258 ret = H_UNSUPPORTED;
1259 if (kvmppc_get_srr1(vcpu) & MSR_S)
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001260 ret = kvmppc_h_svm_page_out(kvm,
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001261 kvmppc_get_gpr(vcpu, 4),
1262 kvmppc_get_gpr(vcpu, 5),
1263 kvmppc_get_gpr(vcpu, 6));
Bharata B Raoca9f4942019-11-25 08:36:26 +05301264 break;
1265 case H_SVM_INIT_START:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001266 ret = H_UNSUPPORTED;
1267 if (kvmppc_get_srr1(vcpu) & MSR_S)
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001268 ret = kvmppc_h_svm_init_start(kvm);
Bharata B Raoca9f4942019-11-25 08:36:26 +05301269 break;
1270 case H_SVM_INIT_DONE:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001271 ret = H_UNSUPPORTED;
1272 if (kvmppc_get_srr1(vcpu) & MSR_S)
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001273 ret = kvmppc_h_svm_init_done(kvm);
Bharata B Raoca9f4942019-11-25 08:36:26 +05301274 break;
Sukadev Bhattiprolu3a439702020-01-06 18:02:37 -08001275 case H_SVM_INIT_ABORT:
Laurent Dufoure3326ae2020-05-20 19:43:08 +02001276 /*
1277 * Even if that call is made by the Ultravisor, the SSR1 value
1278 * is the guest context one, with the secure bit clear as it has
1279 * not yet been secured. So we can't check it here.
1280 * Instead the kvm->arch.secure_guest flag is checked inside
1281 * kvmppc_h_svm_init_abort().
1282 */
Nicholas Piggina9aa86e2021-05-28 19:07:47 +10001283 ret = kvmppc_h_svm_init_abort(kvm);
Sukadev Bhattiprolu3a439702020-01-06 18:02:37 -08001284 break;
Bharata B Raoca9f4942019-11-25 08:36:26 +05301285
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001286 default:
1287 return RESUME_HOST;
1288 }
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001289 WARN_ON_ONCE(ret == H_TOO_HARD);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001290 kvmppc_set_gpr(vcpu, 3, ret);
1291 vcpu->arch.hcall_needed = 0;
1292 return RESUME_GUEST;
1293}
1294
Paul Mackerras4bad7772018-10-08 16:31:06 +11001295/*
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001296 * Handle H_CEDE in the P9 path where we don't call the real-mode hcall
1297 * handlers in book3s_hv_rmhandlers.S.
1298 *
Paul Mackerras4bad7772018-10-08 16:31:06 +11001299 * This has to be done early, not in kvmppc_pseries_do_hcall(), so
1300 * that the cede logic in kvmppc_run_single_vcpu() works properly.
1301 */
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001302static void kvmppc_cede(struct kvm_vcpu *vcpu)
Paul Mackerras4bad7772018-10-08 16:31:06 +11001303{
1304 vcpu->arch.shregs.msr |= MSR_EE;
1305 vcpu->arch.ceded = 1;
1306 smp_mb();
1307 if (vcpu->arch.prodded) {
1308 vcpu->arch.prodded = 0;
1309 smp_mb();
1310 vcpu->arch.ceded = 0;
1311 }
1312}
1313
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001314static int kvmppc_hcall_impl_hv(unsigned long cmd)
1315{
1316 switch (cmd) {
1317 case H_CEDE:
1318 case H_PROD:
1319 case H_CONFER:
1320 case H_REGISTER_VPA:
Michael Neuling96423822014-06-02 11:03:01 +10001321 case H_SET_MODE:
David Gibson99342cf82015-02-05 11:53:25 +11001322 case H_LOGICAL_CI_LOAD:
1323 case H_LOGICAL_CI_STORE:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001324#ifdef CONFIG_KVM_XICS
1325 case H_XIRR:
1326 case H_CPPR:
1327 case H_EOI:
1328 case H_IPI:
1329 case H_IPOLL:
1330 case H_XIRR_X:
1331#endif
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001332 case H_PAGE_INIT:
Bharata B Raof0c6fbb2021-06-21 14:20:00 +05301333 case H_RPT_INVALIDATE:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001334 return 1;
1335 }
1336
1337 /* See if it's in the real-mode table */
1338 return kvmppc_hcall_impl_hv_realmode(cmd);
1339}
1340
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001341static int kvmppc_emulate_debug_inst(struct kvm_vcpu *vcpu)
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301342{
1343 u32 last_inst;
1344
1345 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst) !=
1346 EMULATE_DONE) {
1347 /*
1348 * Fetch failed, so return to guest and
1349 * try executing it again.
1350 */
1351 return RESUME_GUEST;
1352 }
1353
1354 if (last_inst == KVMPPC_INST_SW_BREAKPOINT) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001355 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
1356 vcpu->run->debug.arch.address = kvmppc_get_pc(vcpu);
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301357 return RESUME_HOST;
1358 } else {
1359 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1360 return RESUME_GUEST;
1361 }
1362}
1363
Paul Mackerras57900692017-05-16 16:41:20 +10001364static void do_nothing(void *x)
1365{
1366}
1367
1368static unsigned long kvmppc_read_dpdes(struct kvm_vcpu *vcpu)
1369{
1370 int thr, cpu, pcpu, nthreads;
1371 struct kvm_vcpu *v;
1372 unsigned long dpdes;
1373
1374 nthreads = vcpu->kvm->arch.emul_smt_mode;
1375 dpdes = 0;
1376 cpu = vcpu->vcpu_id & ~(nthreads - 1);
1377 for (thr = 0; thr < nthreads; ++thr, ++cpu) {
1378 v = kvmppc_find_vcpu(vcpu->kvm, cpu);
1379 if (!v)
1380 continue;
1381 /*
1382 * If the vcpu is currently running on a physical cpu thread,
1383 * interrupt it in order to pull it out of the guest briefly,
1384 * which will update its vcore->dpdes value.
1385 */
1386 pcpu = READ_ONCE(v->cpu);
1387 if (pcpu >= 0)
1388 smp_call_function_single(pcpu, do_nothing, NULL, 1);
1389 if (kvmppc_doorbell_pending(v))
1390 dpdes |= 1 << thr;
1391 }
1392 return dpdes;
1393}
1394
1395/*
1396 * On POWER9, emulate doorbell-related instructions in order to
1397 * give the guest the illusion of running on a multi-threaded core.
1398 * The instructions emulated are msgsndp, msgclrp, mfspr TIR,
1399 * and mfspr DPDES.
1400 */
1401static int kvmppc_emulate_doorbell_instr(struct kvm_vcpu *vcpu)
1402{
1403 u32 inst, rb, thr;
1404 unsigned long arg;
1405 struct kvm *kvm = vcpu->kvm;
1406 struct kvm_vcpu *tvcpu;
1407
Paul Mackerras57900692017-05-16 16:41:20 +10001408 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &inst) != EMULATE_DONE)
1409 return RESUME_GUEST;
1410 if (get_op(inst) != 31)
1411 return EMULATE_FAIL;
1412 rb = get_rb(inst);
1413 thr = vcpu->vcpu_id & (kvm->arch.emul_smt_mode - 1);
1414 switch (get_xop(inst)) {
1415 case OP_31_XOP_MSGSNDP:
1416 arg = kvmppc_get_gpr(vcpu, rb);
Leonardo Bras87fb4972020-12-08 18:57:08 -03001417 if (((arg >> 27) & 0x1f) != PPC_DBELL_SERVER)
Paul Mackerras57900692017-05-16 16:41:20 +10001418 break;
Leonardo Bras87fb4972020-12-08 18:57:08 -03001419 arg &= 0x7f;
Paul Mackerras57900692017-05-16 16:41:20 +10001420 if (arg >= kvm->arch.emul_smt_mode)
1421 break;
1422 tvcpu = kvmppc_find_vcpu(kvm, vcpu->vcpu_id - thr + arg);
1423 if (!tvcpu)
1424 break;
1425 if (!tvcpu->arch.doorbell_request) {
1426 tvcpu->arch.doorbell_request = 1;
1427 kvmppc_fast_vcpu_kick_hv(tvcpu);
1428 }
1429 break;
1430 case OP_31_XOP_MSGCLRP:
1431 arg = kvmppc_get_gpr(vcpu, rb);
Leonardo Bras87fb4972020-12-08 18:57:08 -03001432 if (((arg >> 27) & 0x1f) != PPC_DBELL_SERVER)
Paul Mackerras57900692017-05-16 16:41:20 +10001433 break;
1434 vcpu->arch.vcore->dpdes = 0;
1435 vcpu->arch.doorbell_request = 0;
1436 break;
1437 case OP_31_XOP_MFSPR:
1438 switch (get_sprn(inst)) {
1439 case SPRN_TIR:
1440 arg = thr;
1441 break;
1442 case SPRN_DPDES:
1443 arg = kvmppc_read_dpdes(vcpu);
1444 break;
1445 default:
1446 return EMULATE_FAIL;
1447 }
1448 kvmppc_set_gpr(vcpu, get_rt(inst), arg);
1449 break;
1450 default:
1451 return EMULATE_FAIL;
1452 }
1453 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
1454 return RESUME_GUEST;
1455}
1456
Nicholas Piggin9d3ddb82021-11-23 19:51:53 +10001457/*
1458 * If the lppaca had pmcregs_in_use clear when we exited the guest, then
1459 * HFSCR_PM is cleared for next entry. If the guest then tries to access
1460 * the PMU SPRs, we get this facility unavailable interrupt. Putting HFSCR_PM
1461 * back in the guest HFSCR will cause the next entry to load the PMU SPRs and
1462 * allow the guest access to continue.
1463 */
1464static int kvmppc_pmu_unavailable(struct kvm_vcpu *vcpu)
1465{
1466 if (!(vcpu->arch.hfscr_permitted & HFSCR_PM))
1467 return EMULATE_FAIL;
1468
1469 vcpu->arch.hfscr |= HFSCR_PM;
1470
1471 return RESUME_GUEST;
1472}
1473
Nicholas Piggina3e18ca2021-11-23 19:52:14 +10001474static int kvmppc_ebb_unavailable(struct kvm_vcpu *vcpu)
1475{
1476 if (!(vcpu->arch.hfscr_permitted & HFSCR_EBB))
1477 return EMULATE_FAIL;
1478
1479 vcpu->arch.hfscr |= HFSCR_EBB;
1480
1481 return RESUME_GUEST;
1482}
1483
Nicholas Piggin022ecb92021-11-23 19:52:15 +10001484static int kvmppc_tm_unavailable(struct kvm_vcpu *vcpu)
1485{
1486 if (!(vcpu->arch.hfscr_permitted & HFSCR_TM))
1487 return EMULATE_FAIL;
1488
1489 vcpu->arch.hfscr |= HFSCR_TM;
1490
1491 return RESUME_GUEST;
1492}
1493
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001494static int kvmppc_handle_exit_hv(struct kvm_vcpu *vcpu,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301495 struct task_struct *tsk)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001496{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001497 struct kvm_run *run = vcpu->run;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001498 int r = RESUME_HOST;
1499
1500 vcpu->stat.sum_exits++;
1501
Paul Mackerras1c9e3d52015-11-12 16:43:48 +11001502 /*
1503 * This can happen if an interrupt occurs in the last stages
1504 * of guest entry or the first stages of guest exit (i.e. after
1505 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1506 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1507 * That can happen due to a bug, or due to a machine check
1508 * occurring at just the wrong time.
1509 */
1510 if (vcpu->arch.shregs.msr & MSR_HV) {
1511 printk(KERN_EMERG "KVM trap in HV mode!\n");
1512 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1513 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1514 vcpu->arch.shregs.msr);
1515 kvmppc_dump_regs(vcpu);
1516 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1517 run->hw.hardware_exit_reason = vcpu->arch.trap;
1518 return RESUME_HOST;
1519 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001520 run->exit_reason = KVM_EXIT_UNKNOWN;
1521 run->ready_for_interrupt_injection = 1;
1522 switch (vcpu->arch.trap) {
1523 /* We're good on these - the host merely wanted to get our attention */
Nicholas Piggin46dea772021-11-23 19:52:22 +10001524 case BOOK3S_INTERRUPT_NESTED_HV_DECREMENTER:
1525 WARN_ON_ONCE(1); /* Should never happen */
1526 vcpu->arch.trap = BOOK3S_INTERRUPT_HV_DECREMENTER;
1527 fallthrough;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001528 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1529 vcpu->stat.dec_exits++;
1530 r = RESUME_GUEST;
1531 break;
1532 case BOOK3S_INTERRUPT_EXTERNAL:
Paul Mackerras5d00f662014-01-08 21:25:28 +11001533 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerras84f71392016-11-22 14:30:14 +11001534 case BOOK3S_INTERRUPT_H_VIRT:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001535 vcpu->stat.ext_intr_exits++;
1536 r = RESUME_GUEST;
1537 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11001538 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
Mahesh Salgaonkardee6f242014-11-03 15:51:57 +11001539 case BOOK3S_INTERRUPT_HMI:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001540 case BOOK3S_INTERRUPT_PERFMON:
Nicholas Piggin6de66382017-11-05 23:33:55 +11001541 case BOOK3S_INTERRUPT_SYSTEM_RESET:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001542 r = RESUME_GUEST;
1543 break;
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001544 case BOOK3S_INTERRUPT_MACHINE_CHECK: {
1545 static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,
1546 DEFAULT_RATELIMIT_BURST);
1547 /*
1548 * Print the MCE event to host console. Ratelimit so the guest
1549 * can't flood the host log.
1550 */
1551 if (__ratelimit(&rs))
1552 machine_check_print_event_info(&vcpu->arch.mce_evt,false, true);
Paul Mackerras884dfb72019-02-21 13:38:49 +11001553
1554 /*
1555 * If the guest can do FWNMI, exit to userspace so it can
1556 * deliver a FWNMI to the guest.
1557 * Otherwise we synthesize a machine check for the guest
1558 * so that it knows that the machine check occurred.
1559 */
1560 if (!vcpu->kvm->arch.fwnmi_enabled) {
1561 ulong flags = vcpu->arch.shregs.msr & 0x083c0000;
1562 kvmppc_core_queue_machine_check(vcpu, flags);
1563 r = RESUME_GUEST;
1564 break;
1565 }
1566
Aravinda Prasade20bbd32017-05-11 16:33:37 +05301567 /* Exit to guest with KVM_EXIT_NMI as exit reason */
1568 run->exit_reason = KVM_EXIT_NMI;
1569 run->hw.hardware_exit_reason = vcpu->arch.trap;
1570 /* Clear out the old NMI status from run->flags */
1571 run->flags &= ~KVM_RUN_PPC_NMI_DISP_MASK;
1572 /* Now set the NMI status */
1573 if (vcpu->arch.mce_evt.disposition == MCE_DISPOSITION_RECOVERED)
1574 run->flags |= KVM_RUN_PPC_NMI_DISP_FULLY_RECOV;
1575 else
1576 run->flags |= KVM_RUN_PPC_NMI_DISP_NOT_RECOV;
1577
1578 r = RESUME_HOST;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001579 break;
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001580 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001581 case BOOK3S_INTERRUPT_PROGRAM:
1582 {
1583 ulong flags;
1584 /*
1585 * Normally program interrupts are delivered directly
1586 * to the guest by the hardware, but we can get here
1587 * as a result of a hypervisor emulation interrupt
1588 * (e40) getting turned into a 700 by BML RTAS.
1589 */
1590 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
1591 kvmppc_core_queue_program(vcpu, flags);
1592 r = RESUME_GUEST;
1593 break;
1594 }
1595 case BOOK3S_INTERRUPT_SYSCALL:
1596 {
Paul Mackerrasde56a942011-06-29 00:21:34 +00001597 int i;
1598
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001599 if (unlikely(vcpu->arch.shregs.msr & MSR_PR)) {
1600 /*
1601 * Guest userspace executed sc 1. This can only be
1602 * reached by the P9 path because the old path
1603 * handles this case in realmode hcall handlers.
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001604 */
Nicholas Pigginac3c8b42021-05-28 19:07:49 +10001605 if (!kvmhv_vcpu_is_radix(vcpu)) {
1606 /*
1607 * A guest could be running PR KVM, so this
1608 * may be a PR KVM hcall. It must be reflected
1609 * to the guest kernel as a sc interrupt.
1610 */
1611 kvmppc_core_queue_syscall(vcpu);
1612 } else {
1613 /*
1614 * Radix guests can not run PR KVM or nested HV
1615 * hash guests which might run PR KVM, so this
1616 * is always a privilege fault. Send a program
1617 * check to guest kernel.
1618 */
1619 kvmppc_core_queue_program(vcpu, SRR1_PROGPRIV);
1620 }
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001621 r = RESUME_GUEST;
1622 break;
1623 }
Liu Ping Fan27025a62013-11-19 14:12:48 +08001624
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001625 /*
1626 * hcall - gather args and set exit_reason. This will next be
1627 * handled by kvmppc_pseries_do_hcall which may be able to deal
1628 * with it and resume guest, or may punt to userspace.
1629 */
Paul Mackerrasde56a942011-06-29 00:21:34 +00001630 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
1631 for (i = 0; i < 9; ++i)
1632 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
1633 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1634 vcpu->arch.hcall_needed = 1;
1635 r = RESUME_HOST;
1636 break;
1637 }
1638 /*
Paul Mackerras342d3db2011-12-12 12:38:05 +00001639 * We get these next two if the guest accesses a page which it thinks
1640 * it has mapped but which is not actually present, either because
1641 * it is for an emulated I/O device or because the corresonding
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001642 * host page has been paged out.
1643 *
1644 * Any other HDSI/HISI interrupts have been handled already for P7/8
1645 * guests. For POWER9 hash guests not using rmhandlers, basic hash
1646 * fault handling is done here.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001647 */
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001648 case BOOK3S_INTERRUPT_H_DATA_STORAGE: {
1649 unsigned long vsid;
1650 long err;
1651
Nicholas Piggind55b1ec2021-11-23 19:52:12 +10001652 if (cpu_has_feature(CPU_FTR_P9_RADIX_PREFETCH_BUG) &&
1653 unlikely(vcpu->arch.fault_dsisr == HDSISR_CANARY)) {
Nicholas Piggin89d35b22021-05-28 19:07:34 +10001654 r = RESUME_GUEST; /* Just retry if it's the canary */
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001655 break;
1656 }
1657
1658 if (kvm_is_radix(vcpu->kvm) || !cpu_has_feature(CPU_FTR_ARCH_300)) {
1659 /*
1660 * Radix doesn't require anything, and pre-ISAv3.0 hash
1661 * already attempted to handle this in rmhandlers. The
1662 * hash fault handling below is v3 only (it uses ASDR
1663 * via fault_gpa).
1664 */
1665 r = RESUME_PAGE_FAULT;
1666 break;
1667 }
1668
1669 if (!(vcpu->arch.fault_dsisr & (DSISR_NOHPTE | DSISR_PROTFAULT))) {
1670 kvmppc_core_queue_data_storage(vcpu,
1671 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
1672 r = RESUME_GUEST;
1673 break;
1674 }
1675
1676 if (!(vcpu->arch.shregs.msr & MSR_DR))
1677 vsid = vcpu->kvm->arch.vrma_slb_v;
1678 else
1679 vsid = vcpu->arch.fault_gpa;
1680
1681 err = kvmppc_hpte_hv_fault(vcpu, vcpu->arch.fault_dar,
1682 vsid, vcpu->arch.fault_dsisr, true);
1683 if (err == 0) {
1684 r = RESUME_GUEST;
1685 } else if (err == -1 || err == -2) {
1686 r = RESUME_PAGE_FAULT;
1687 } else {
1688 kvmppc_core_queue_data_storage(vcpu,
1689 vcpu->arch.fault_dar, err);
1690 r = RESUME_GUEST;
1691 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001692 break;
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001693 }
1694 case BOOK3S_INTERRUPT_H_INST_STORAGE: {
1695 unsigned long vsid;
1696 long err;
1697
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001698 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
Paul Mackerras32eb1502018-10-08 16:30:56 +11001699 vcpu->arch.fault_dsisr = vcpu->arch.shregs.msr &
1700 DSISR_SRR1_MATCH_64S;
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001701 if (kvm_is_radix(vcpu->kvm) || !cpu_has_feature(CPU_FTR_ARCH_300)) {
1702 /*
1703 * Radix doesn't require anything, and pre-ISAv3.0 hash
1704 * already attempted to handle this in rmhandlers. The
1705 * hash fault handling below is v3 only (it uses ASDR
1706 * via fault_gpa).
1707 */
1708 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1709 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
1710 r = RESUME_PAGE_FAULT;
1711 break;
1712 }
1713
1714 if (!(vcpu->arch.fault_dsisr & SRR1_ISI_NOPT)) {
1715 kvmppc_core_queue_inst_storage(vcpu,
1716 vcpu->arch.fault_dsisr);
1717 r = RESUME_GUEST;
1718 break;
1719 }
1720
1721 if (!(vcpu->arch.shregs.msr & MSR_IR))
1722 vsid = vcpu->kvm->arch.vrma_slb_v;
1723 else
1724 vsid = vcpu->arch.fault_gpa;
1725
1726 err = kvmppc_hpte_hv_fault(vcpu, vcpu->arch.fault_dar,
1727 vsid, vcpu->arch.fault_dsisr, false);
1728 if (err == 0) {
1729 r = RESUME_GUEST;
1730 } else if (err == -1) {
1731 r = RESUME_PAGE_FAULT;
1732 } else {
1733 kvmppc_core_queue_inst_storage(vcpu, err);
1734 r = RESUME_GUEST;
1735 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001736 break;
Nicholas Piggin6165d5d2021-05-28 19:07:48 +10001737 }
1738
Paul Mackerrasde56a942011-06-29 00:21:34 +00001739 /*
1740 * This occurs if the guest executes an illegal instruction.
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301741 * If the guest debug is disabled, generate a program interrupt
1742 * to the guest. If guest debug is enabled, we need to check
1743 * whether the instruction is a software breakpoint instruction.
1744 * Accordingly return to Guest or Host.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001745 */
1746 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerras4a157d62014-12-03 13:30:39 +11001747 if (vcpu->arch.emul_inst != KVM_INST_FETCH_FAILED)
1748 vcpu->arch.last_inst = kvmppc_need_byteswap(vcpu) ?
1749 swab32(vcpu->arch.emul_inst) :
1750 vcpu->arch.emul_inst;
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301751 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001752 r = kvmppc_emulate_debug_inst(vcpu);
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301753 } else {
1754 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1755 r = RESUME_GUEST;
1756 }
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001757 break;
Nicholas Piggind82b3922021-08-12 02:00:38 +10001758
1759#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1760 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1761 /*
1762 * This occurs for various TM-related instructions that
1763 * we need to emulate on POWER9 DD2.2. We have already
1764 * handled the cases where the guest was in real-suspend
1765 * mode and was transitioning to transactional state.
1766 */
1767 r = kvmhv_p9_tm_emulation(vcpu);
1768 if (r != -1)
1769 break;
1770 fallthrough; /* go to facility unavailable handler */
1771#endif
1772
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001773 /*
1774 * This occurs if the guest (kernel or userspace), does something that
Paul Mackerras57900692017-05-16 16:41:20 +10001775 * is prohibited by HFSCR.
1776 * On POWER9, this could be a doorbell instruction that we need
1777 * to emulate.
1778 * Otherwise, we just generate a program interrupt to the guest.
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001779 */
Nicholas Piggin9d3ddb82021-11-23 19:51:53 +10001780 case BOOK3S_INTERRUPT_H_FAC_UNAVAIL: {
1781 u64 cause = vcpu->arch.hfscr >> 56;
1782
Paul Mackerras57900692017-05-16 16:41:20 +10001783 r = EMULATE_FAIL;
Nicholas Piggin9d3ddb82021-11-23 19:51:53 +10001784 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
1785 if (cause == FSCR_MSGP_LG)
1786 r = kvmppc_emulate_doorbell_instr(vcpu);
1787 if (cause == FSCR_PM_LG)
1788 r = kvmppc_pmu_unavailable(vcpu);
Nicholas Piggina3e18ca2021-11-23 19:52:14 +10001789 if (cause == FSCR_EBB_LG)
1790 r = kvmppc_ebb_unavailable(vcpu);
Nicholas Piggin022ecb92021-11-23 19:52:15 +10001791 if (cause == FSCR_TM_LG)
1792 r = kvmppc_tm_unavailable(vcpu);
Nicholas Piggin9d3ddb82021-11-23 19:51:53 +10001793 }
Paul Mackerras57900692017-05-16 16:41:20 +10001794 if (r == EMULATE_FAIL) {
1795 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1796 r = RESUME_GUEST;
1797 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001798 break;
Nicholas Piggin9d3ddb82021-11-23 19:51:53 +10001799 }
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11001800
Suresh Warrierf7af5202016-08-19 15:35:52 +10001801 case BOOK3S_INTERRUPT_HV_RM_HARD:
1802 r = RESUME_PASSTHROUGH;
1803 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001804 default:
1805 kvmppc_dump_regs(vcpu);
1806 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1807 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1808 vcpu->arch.shregs.msr);
Paul Mackerrasf3271d42013-09-20 14:52:41 +10001809 run->hw.hardware_exit_reason = vcpu->arch.trap;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001810 r = RESUME_HOST;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001811 break;
1812 }
1813
Paul Mackerrasde56a942011-06-29 00:21:34 +00001814 return r;
1815}
1816
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001817static int kvmppc_handle_nested_exit(struct kvm_vcpu *vcpu)
Paul Mackerras360cae32018-10-08 16:31:04 +11001818{
Fabiano Rosas7c3ded52021-08-12 02:00:41 +10001819 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras360cae32018-10-08 16:31:04 +11001820 int r;
1821 int srcu_idx;
1822
1823 vcpu->stat.sum_exits++;
1824
1825 /*
1826 * This can happen if an interrupt occurs in the last stages
1827 * of guest entry or the first stages of guest exit (i.e. after
1828 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1829 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1830 * That can happen due to a bug, or due to a machine check
1831 * occurring at just the wrong time.
1832 */
1833 if (vcpu->arch.shregs.msr & MSR_HV) {
1834 pr_emerg("KVM trap in HV mode while nested!\n");
1835 pr_emerg("trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1836 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1837 vcpu->arch.shregs.msr);
1838 kvmppc_dump_regs(vcpu);
1839 return RESUME_HOST;
1840 }
1841 switch (vcpu->arch.trap) {
1842 /* We're good on these - the host merely wanted to get our attention */
1843 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1844 vcpu->stat.dec_exits++;
1845 r = RESUME_GUEST;
1846 break;
1847 case BOOK3S_INTERRUPT_EXTERNAL:
1848 vcpu->stat.ext_intr_exits++;
1849 r = RESUME_HOST;
1850 break;
1851 case BOOK3S_INTERRUPT_H_DOORBELL:
1852 case BOOK3S_INTERRUPT_H_VIRT:
1853 vcpu->stat.ext_intr_exits++;
1854 r = RESUME_GUEST;
1855 break;
Nicholas Piggin46dea772021-11-23 19:52:22 +10001856 /* These need to go to the nested HV */
1857 case BOOK3S_INTERRUPT_NESTED_HV_DECREMENTER:
1858 vcpu->arch.trap = BOOK3S_INTERRUPT_HV_DECREMENTER;
1859 vcpu->stat.dec_exits++;
1860 r = RESUME_HOST;
1861 break;
Paul Mackerras360cae32018-10-08 16:31:04 +11001862 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
1863 case BOOK3S_INTERRUPT_HMI:
1864 case BOOK3S_INTERRUPT_PERFMON:
1865 case BOOK3S_INTERRUPT_SYSTEM_RESET:
1866 r = RESUME_GUEST;
1867 break;
1868 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001869 {
1870 static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,
1871 DEFAULT_RATELIMIT_BURST);
Paul Mackerras360cae32018-10-08 16:31:04 +11001872 /* Pass the machine check to the L1 guest */
1873 r = RESUME_HOST;
1874 /* Print the MCE event to host console. */
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001875 if (__ratelimit(&rs))
1876 machine_check_print_event_info(&vcpu->arch.mce_evt, false, true);
Paul Mackerras360cae32018-10-08 16:31:04 +11001877 break;
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001878 }
Paul Mackerras360cae32018-10-08 16:31:04 +11001879 /*
1880 * We get these next two if the guest accesses a page which it thinks
1881 * it has mapped but which is not actually present, either because
1882 * it is for an emulated I/O device or because the corresonding
1883 * host page has been paged out.
1884 */
1885 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
1886 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001887 r = kvmhv_nested_page_fault(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11001888 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1889 break;
1890 case BOOK3S_INTERRUPT_H_INST_STORAGE:
1891 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
1892 vcpu->arch.fault_dsisr = kvmppc_get_msr(vcpu) &
1893 DSISR_SRR1_MATCH_64S;
1894 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1895 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
1896 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001897 r = kvmhv_nested_page_fault(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11001898 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1899 break;
1900
1901#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1902 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1903 /*
1904 * This occurs for various TM-related instructions that
1905 * we need to emulate on POWER9 DD2.2. We have already
1906 * handled the cases where the guest was in real-suspend
1907 * mode and was transitioning to transactional state.
1908 */
1909 r = kvmhv_p9_tm_emulation(vcpu);
Nicholas Piggind82b3922021-08-12 02:00:38 +10001910 if (r != -1)
1911 break;
1912 fallthrough; /* go to facility unavailable handler */
Paul Mackerras360cae32018-10-08 16:31:04 +11001913#endif
1914
Fabiano Rosas7c3ded52021-08-12 02:00:41 +10001915 case BOOK3S_INTERRUPT_H_FAC_UNAVAIL: {
1916 u64 cause = vcpu->arch.hfscr >> 56;
1917
1918 /*
1919 * Only pass HFU interrupts to the L1 if the facility is
1920 * permitted but disabled by the L1's HFSCR, otherwise
1921 * the interrupt does not make sense to the L1 so turn
1922 * it into a HEAI.
1923 */
1924 if (!(vcpu->arch.hfscr_permitted & (1UL << cause)) ||
1925 (nested->hfscr & (1UL << cause))) {
1926 vcpu->arch.trap = BOOK3S_INTERRUPT_H_EMUL_ASSIST;
1927
1928 /*
1929 * If the fetch failed, return to guest and
1930 * try executing it again.
1931 */
1932 r = kvmppc_get_last_inst(vcpu, INST_GENERIC,
1933 &vcpu->arch.emul_inst);
1934 if (r != EMULATE_DONE)
1935 r = RESUME_GUEST;
1936 else
1937 r = RESUME_HOST;
1938 } else {
1939 r = RESUME_HOST;
1940 }
1941
Nicholas Piggind82b3922021-08-12 02:00:38 +10001942 break;
Fabiano Rosas7c3ded52021-08-12 02:00:41 +10001943 }
Nicholas Piggind82b3922021-08-12 02:00:38 +10001944
Paul Mackerras360cae32018-10-08 16:31:04 +11001945 case BOOK3S_INTERRUPT_HV_RM_HARD:
1946 vcpu->arch.trap = 0;
1947 r = RESUME_GUEST;
Paul Mackerras03f95332019-02-04 22:07:20 +11001948 if (!xics_on_xive())
Paul Mackerras360cae32018-10-08 16:31:04 +11001949 kvmppc_xics_rm_complete(vcpu, 0);
1950 break;
Bharata B Rao53324b52021-06-21 14:20:01 +05301951 case BOOK3S_INTERRUPT_SYSCALL:
1952 {
1953 unsigned long req = kvmppc_get_gpr(vcpu, 3);
1954
1955 /*
1956 * The H_RPT_INVALIDATE hcalls issued by nested
1957 * guests for process-scoped invalidations when
1958 * GTSE=0, are handled here in L0.
1959 */
1960 if (req == H_RPT_INVALIDATE) {
1961 r = kvmppc_nested_h_rpt_invalidate(vcpu);
1962 break;
1963 }
1964
1965 r = RESUME_HOST;
1966 break;
1967 }
Paul Mackerras360cae32018-10-08 16:31:04 +11001968 default:
1969 r = RESUME_HOST;
1970 break;
1971 }
1972
1973 return r;
1974}
1975
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301976static int kvm_arch_vcpu_ioctl_get_sregs_hv(struct kvm_vcpu *vcpu,
1977 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001978{
1979 int i;
1980
Paul Mackerrasde56a942011-06-29 00:21:34 +00001981 memset(sregs, 0, sizeof(struct kvm_sregs));
Aneesh Kumar K.V87916442013-08-22 17:08:39 +05301982 sregs->pvr = vcpu->arch.pvr;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001983 for (i = 0; i < vcpu->arch.slb_max; i++) {
1984 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
1985 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1986 }
1987
1988 return 0;
1989}
1990
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301991static int kvm_arch_vcpu_ioctl_set_sregs_hv(struct kvm_vcpu *vcpu,
1992 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001993{
1994 int i, j;
1995
Paul Mackerras9333e6c2014-09-02 16:14:43 +10001996 /* Only accept the same PVR as the host's, since we can't spoof it */
1997 if (sregs->pvr != vcpu->arch.pvr)
1998 return -EINVAL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001999
2000 j = 0;
2001 for (i = 0; i < vcpu->arch.slb_nr; i++) {
2002 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
2003 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
2004 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
2005 ++j;
2006 }
2007 }
2008 vcpu->arch.slb_max = j;
2009
2010 return 0;
2011}
2012
Nicholas Piggin67145ef2021-04-12 11:48:36 +10002013/*
2014 * Enforce limits on guest LPCR values based on hardware availability,
2015 * guest configuration, and possibly hypervisor support and security
2016 * concerns.
2017 */
2018unsigned long kvmppc_filter_lpcr_hv(struct kvm *kvm, unsigned long lpcr)
2019{
Nicholas Piggin72c15282021-04-12 11:48:38 +10002020 /* LPCR_TC only applies to HPT guests */
2021 if (kvm_is_radix(kvm))
2022 lpcr &= ~LPCR_TC;
2023
Nicholas Piggin67145ef2021-04-12 11:48:36 +10002024 /* On POWER8 and above, userspace can modify AIL */
2025 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
2026 lpcr &= ~LPCR_AIL;
Nicholas Pigginbcc92a02021-04-12 11:48:37 +10002027 if ((lpcr & LPCR_AIL) != LPCR_AIL_3)
2028 lpcr &= ~LPCR_AIL; /* LPCR[AIL]=1/2 is disallowed */
Nicholas Piggin2e1ae9cd2021-05-28 19:07:41 +10002029 /*
2030 * On some POWER9s we force AIL off for radix guests to prevent
2031 * executing in MSR[HV]=1 mode with the MMU enabled and PIDR set to
2032 * guest, which can result in Q0 translations with LPID=0 PID=PIDR to
2033 * be cached, which the host TLB management does not expect.
2034 */
2035 if (kvm_is_radix(kvm) && cpu_has_feature(CPU_FTR_P9_RADIX_PREFETCH_BUG))
2036 lpcr &= ~LPCR_AIL;
Nicholas Piggin67145ef2021-04-12 11:48:36 +10002037
2038 /*
2039 * On POWER9, allow userspace to enable large decrementer for the
2040 * guest, whether or not the host has it enabled.
2041 */
2042 if (!cpu_has_feature(CPU_FTR_ARCH_300))
2043 lpcr &= ~LPCR_LD;
2044
2045 return lpcr;
2046}
2047
2048static void verify_lpcr(struct kvm *kvm, unsigned long lpcr)
2049{
2050 if (lpcr != kvmppc_filter_lpcr_hv(kvm, lpcr)) {
2051 WARN_ONCE(1, "lpcr 0x%lx differs from filtered 0x%lx\n",
2052 lpcr, kvmppc_filter_lpcr_hv(kvm, lpcr));
2053 }
2054}
2055
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10002056static void kvmppc_set_lpcr(struct kvm_vcpu *vcpu, u64 new_lpcr,
2057 bool preserve_top32)
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002058{
Paul Mackerras8f902b02015-03-20 20:39:38 +11002059 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002060 struct kvmppc_vcore *vc = vcpu->arch.vcore;
2061 u64 mask;
2062
2063 spin_lock(&vc->lock);
Nicholas Piggin67145ef2021-04-12 11:48:36 +10002064
2065 /*
2066 * Userspace can only modify
2067 * DPFD (default prefetch depth), ILE (interrupt little-endian),
2068 * TC (translation control), AIL (alternate interrupt location),
2069 * LD (large decrementer).
2070 * These are subject to restrictions from kvmppc_filter_lcpr_hv().
2071 */
2072 mask = LPCR_DPFD | LPCR_ILE | LPCR_TC | LPCR_AIL | LPCR_LD;
2073
2074 /* Broken 32-bit version of LPCR must not clear top bits */
2075 if (preserve_top32)
2076 mask &= 0xFFFFFFFF;
2077
2078 new_lpcr = kvmppc_filter_lpcr_hv(kvm,
2079 (vc->lpcr & ~mask) | (new_lpcr & mask));
2080
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002081 /*
Anton Blanchardd6829162014-01-08 21:25:30 +11002082 * If ILE (interrupt little-endian) has changed, update the
2083 * MSR_LE bit in the intr_msr for each vcpu in this vcore.
2084 */
2085 if ((new_lpcr & LPCR_ILE) != (vc->lpcr & LPCR_ILE)) {
Anton Blanchardd6829162014-01-08 21:25:30 +11002086 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00002087 unsigned long i;
Anton Blanchardd6829162014-01-08 21:25:30 +11002088
Anton Blanchardd6829162014-01-08 21:25:30 +11002089 kvm_for_each_vcpu(i, vcpu, kvm) {
2090 if (vcpu->arch.vcore != vc)
2091 continue;
2092 if (new_lpcr & LPCR_ILE)
2093 vcpu->arch.intr_msr |= MSR_LE;
2094 else
2095 vcpu->arch.intr_msr &= ~MSR_LE;
2096 }
Anton Blanchardd6829162014-01-08 21:25:30 +11002097 }
2098
Nicholas Piggin67145ef2021-04-12 11:48:36 +10002099 vc->lpcr = new_lpcr;
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10002100
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002101 spin_unlock(&vc->lock);
2102}
2103
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302104static int kvmppc_get_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
2105 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00002106{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002107 int r = 0;
2108 long int i;
Paul Mackerras31f34382011-12-12 12:26:50 +00002109
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002110 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05302111 case KVM_REG_PPC_DEBUG_INST:
2112 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
2113 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00002114 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002115 *val = get_reg_val(id, 0);
2116 break;
2117 case KVM_REG_PPC_DABR:
2118 *val = get_reg_val(id, vcpu->arch.dabr);
2119 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11002120 case KVM_REG_PPC_DABRX:
2121 *val = get_reg_val(id, vcpu->arch.dabrx);
2122 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002123 case KVM_REG_PPC_DSCR:
2124 *val = get_reg_val(id, vcpu->arch.dscr);
2125 break;
2126 case KVM_REG_PPC_PURR:
2127 *val = get_reg_val(id, vcpu->arch.purr);
2128 break;
2129 case KVM_REG_PPC_SPURR:
2130 *val = get_reg_val(id, vcpu->arch.spurr);
2131 break;
2132 case KVM_REG_PPC_AMR:
2133 *val = get_reg_val(id, vcpu->arch.amr);
2134 break;
2135 case KVM_REG_PPC_UAMOR:
2136 *val = get_reg_val(id, vcpu->arch.uamor);
2137 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04002138 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCR1:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002139 i = id - KVM_REG_PPC_MMCR0;
2140 *val = get_reg_val(id, vcpu->arch.mmcr[i]);
2141 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04002142 case KVM_REG_PPC_MMCR2:
2143 *val = get_reg_val(id, vcpu->arch.mmcr[2]);
2144 break;
2145 case KVM_REG_PPC_MMCRA:
2146 *val = get_reg_val(id, vcpu->arch.mmcra);
2147 break;
2148 case KVM_REG_PPC_MMCRS:
2149 *val = get_reg_val(id, vcpu->arch.mmcrs);
2150 break;
Athira Rajeev5752fe02020-07-17 10:38:17 -04002151 case KVM_REG_PPC_MMCR3:
2152 *val = get_reg_val(id, vcpu->arch.mmcr[3]);
2153 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002154 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
2155 i = id - KVM_REG_PPC_PMC1;
2156 *val = get_reg_val(id, vcpu->arch.pmc[i]);
Paul Mackerras31f34382011-12-12 12:26:50 +00002157 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002158 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
2159 i = id - KVM_REG_PPC_SPMC1;
2160 *val = get_reg_val(id, vcpu->arch.spmc[i]);
2161 break;
Paul Mackerras14941782013-09-06 13:11:18 +10002162 case KVM_REG_PPC_SIAR:
2163 *val = get_reg_val(id, vcpu->arch.siar);
2164 break;
2165 case KVM_REG_PPC_SDAR:
2166 *val = get_reg_val(id, vcpu->arch.sdar);
2167 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002168 case KVM_REG_PPC_SIER:
Athira Rajeev5752fe02020-07-17 10:38:17 -04002169 *val = get_reg_val(id, vcpu->arch.sier[0]);
2170 break;
2171 case KVM_REG_PPC_SIER2:
2172 *val = get_reg_val(id, vcpu->arch.sier[1]);
2173 break;
2174 case KVM_REG_PPC_SIER3:
2175 *val = get_reg_val(id, vcpu->arch.sier[2]);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00002176 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002177 case KVM_REG_PPC_IAMR:
2178 *val = get_reg_val(id, vcpu->arch.iamr);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00002179 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002180 case KVM_REG_PPC_PSPB:
2181 *val = get_reg_val(id, vcpu->arch.pspb);
2182 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002183 case KVM_REG_PPC_DPDES:
Paul Mackerrasff42df42019-08-27 11:35:40 +10002184 /*
2185 * On POWER9, where we are emulating msgsndp etc.,
2186 * we return 1 bit for each vcpu, which can come from
2187 * either vcore->dpdes or doorbell_request.
2188 * On POWER8, doorbell_request is 0.
2189 */
Nicholas Piggin63983262021-11-23 19:52:30 +10002190 if (cpu_has_feature(CPU_FTR_ARCH_300))
2191 *val = get_reg_val(id, vcpu->arch.doorbell_request);
2192 else
2193 *val = get_reg_val(id, vcpu->arch.vcore->dpdes);
Michael Neulingb005255e2014-01-08 21:25:21 +11002194 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10002195 case KVM_REG_PPC_VTB:
2196 *val = get_reg_val(id, vcpu->arch.vcore->vtb);
2197 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002198 case KVM_REG_PPC_DAWR:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05302199 *val = get_reg_val(id, vcpu->arch.dawr0);
Michael Neulingb005255e2014-01-08 21:25:21 +11002200 break;
2201 case KVM_REG_PPC_DAWRX:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05302202 *val = get_reg_val(id, vcpu->arch.dawrx0);
Michael Neulingb005255e2014-01-08 21:25:21 +11002203 break;
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +05302204 case KVM_REG_PPC_DAWR1:
2205 *val = get_reg_val(id, vcpu->arch.dawr1);
2206 break;
2207 case KVM_REG_PPC_DAWRX1:
2208 *val = get_reg_val(id, vcpu->arch.dawrx1);
2209 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002210 case KVM_REG_PPC_CIABR:
2211 *val = get_reg_val(id, vcpu->arch.ciabr);
2212 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002213 case KVM_REG_PPC_CSIGR:
2214 *val = get_reg_val(id, vcpu->arch.csigr);
2215 break;
2216 case KVM_REG_PPC_TACR:
2217 *val = get_reg_val(id, vcpu->arch.tacr);
2218 break;
2219 case KVM_REG_PPC_TCSCR:
2220 *val = get_reg_val(id, vcpu->arch.tcscr);
2221 break;
2222 case KVM_REG_PPC_PID:
2223 *val = get_reg_val(id, vcpu->arch.pid);
2224 break;
2225 case KVM_REG_PPC_ACOP:
2226 *val = get_reg_val(id, vcpu->arch.acop);
2227 break;
2228 case KVM_REG_PPC_WORT:
2229 *val = get_reg_val(id, vcpu->arch.wort);
2230 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11002231 case KVM_REG_PPC_TIDR:
2232 *val = get_reg_val(id, vcpu->arch.tid);
2233 break;
2234 case KVM_REG_PPC_PSSCR:
2235 *val = get_reg_val(id, vcpu->arch.psscr);
2236 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00002237 case KVM_REG_PPC_VPA_ADDR:
2238 spin_lock(&vcpu->arch.vpa_update_lock);
2239 *val = get_reg_val(id, vcpu->arch.vpa.next_gpa);
2240 spin_unlock(&vcpu->arch.vpa_update_lock);
2241 break;
2242 case KVM_REG_PPC_VPA_SLB:
2243 spin_lock(&vcpu->arch.vpa_update_lock);
2244 val->vpaval.addr = vcpu->arch.slb_shadow.next_gpa;
2245 val->vpaval.length = vcpu->arch.slb_shadow.len;
2246 spin_unlock(&vcpu->arch.vpa_update_lock);
2247 break;
2248 case KVM_REG_PPC_VPA_DTL:
2249 spin_lock(&vcpu->arch.vpa_update_lock);
2250 val->vpaval.addr = vcpu->arch.dtl.next_gpa;
2251 val->vpaval.length = vcpu->arch.dtl.len;
2252 spin_unlock(&vcpu->arch.vpa_update_lock);
2253 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10002254 case KVM_REG_PPC_TB_OFFSET:
2255 *val = get_reg_val(id, vcpu->arch.vcore->tb_offset);
2256 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002257 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10002258 case KVM_REG_PPC_LPCR_64:
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002259 *val = get_reg_val(id, vcpu->arch.vcore->lpcr);
2260 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10002261 case KVM_REG_PPC_PPR:
2262 *val = get_reg_val(id, vcpu->arch.ppr);
2263 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002264#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
2265 case KVM_REG_PPC_TFHAR:
2266 *val = get_reg_val(id, vcpu->arch.tfhar);
2267 break;
2268 case KVM_REG_PPC_TFIAR:
2269 *val = get_reg_val(id, vcpu->arch.tfiar);
2270 break;
2271 case KVM_REG_PPC_TEXASR:
2272 *val = get_reg_val(id, vcpu->arch.texasr);
2273 break;
2274 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
2275 i = id - KVM_REG_PPC_TM_GPR0;
2276 *val = get_reg_val(id, vcpu->arch.gpr_tm[i]);
2277 break;
2278 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
2279 {
2280 int j;
2281 i = id - KVM_REG_PPC_TM_VSR0;
2282 if (i < 32)
2283 for (j = 0; j < TS_FPRWIDTH; j++)
2284 val->vsxval[j] = vcpu->arch.fp_tm.fpr[i][j];
2285 else {
2286 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2287 val->vval = vcpu->arch.vr_tm.vr[i-32];
2288 else
2289 r = -ENXIO;
2290 }
2291 break;
2292 }
2293 case KVM_REG_PPC_TM_CR:
2294 *val = get_reg_val(id, vcpu->arch.cr_tm);
2295 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11002296 case KVM_REG_PPC_TM_XER:
2297 *val = get_reg_val(id, vcpu->arch.xer_tm);
2298 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002299 case KVM_REG_PPC_TM_LR:
2300 *val = get_reg_val(id, vcpu->arch.lr_tm);
2301 break;
2302 case KVM_REG_PPC_TM_CTR:
2303 *val = get_reg_val(id, vcpu->arch.ctr_tm);
2304 break;
2305 case KVM_REG_PPC_TM_FPSCR:
2306 *val = get_reg_val(id, vcpu->arch.fp_tm.fpscr);
2307 break;
2308 case KVM_REG_PPC_TM_AMR:
2309 *val = get_reg_val(id, vcpu->arch.amr_tm);
2310 break;
2311 case KVM_REG_PPC_TM_PPR:
2312 *val = get_reg_val(id, vcpu->arch.ppr_tm);
2313 break;
2314 case KVM_REG_PPC_TM_VRSAVE:
2315 *val = get_reg_val(id, vcpu->arch.vrsave_tm);
2316 break;
2317 case KVM_REG_PPC_TM_VSCR:
2318 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2319 *val = get_reg_val(id, vcpu->arch.vr_tm.vscr.u[3]);
2320 else
2321 r = -ENXIO;
2322 break;
2323 case KVM_REG_PPC_TM_DSCR:
2324 *val = get_reg_val(id, vcpu->arch.dscr_tm);
2325 break;
2326 case KVM_REG_PPC_TM_TAR:
2327 *val = get_reg_val(id, vcpu->arch.tar_tm);
2328 break;
2329#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10002330 case KVM_REG_PPC_ARCH_COMPAT:
2331 *val = get_reg_val(id, vcpu->arch.vcore->arch_compat);
2332 break;
Paul Mackerras58555642018-01-12 20:55:20 +11002333 case KVM_REG_PPC_DEC_EXPIRY:
Nicholas Piggin3c1a43222021-11-23 19:52:00 +10002334 *val = get_reg_val(id, vcpu->arch.dec_expires);
Paul Mackerras58555642018-01-12 20:55:20 +11002335 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002336 case KVM_REG_PPC_ONLINE:
2337 *val = get_reg_val(id, vcpu->arch.online);
2338 break;
Paul Mackerras30323412018-10-08 16:31:13 +11002339 case KVM_REG_PPC_PTCR:
2340 *val = get_reg_val(id, vcpu->kvm->arch.l1_ptcr);
2341 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00002342 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002343 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00002344 break;
2345 }
2346
2347 return r;
2348}
2349
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302350static int kvmppc_set_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
2351 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00002352{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002353 int r = 0;
2354 long int i;
Paul Mackerras55b665b2012-09-25 20:33:06 +00002355 unsigned long addr, len;
Paul Mackerras31f34382011-12-12 12:26:50 +00002356
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002357 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00002358 case KVM_REG_PPC_HIOR:
Paul Mackerras31f34382011-12-12 12:26:50 +00002359 /* Only allow this to be set to zero */
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002360 if (set_reg_val(id, *val))
Paul Mackerras31f34382011-12-12 12:26:50 +00002361 r = -EINVAL;
2362 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002363 case KVM_REG_PPC_DABR:
2364 vcpu->arch.dabr = set_reg_val(id, *val);
2365 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11002366 case KVM_REG_PPC_DABRX:
2367 vcpu->arch.dabrx = set_reg_val(id, *val) & ~DABRX_HYP;
2368 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002369 case KVM_REG_PPC_DSCR:
2370 vcpu->arch.dscr = set_reg_val(id, *val);
2371 break;
2372 case KVM_REG_PPC_PURR:
2373 vcpu->arch.purr = set_reg_val(id, *val);
2374 break;
2375 case KVM_REG_PPC_SPURR:
2376 vcpu->arch.spurr = set_reg_val(id, *val);
2377 break;
2378 case KVM_REG_PPC_AMR:
2379 vcpu->arch.amr = set_reg_val(id, *val);
2380 break;
2381 case KVM_REG_PPC_UAMOR:
2382 vcpu->arch.uamor = set_reg_val(id, *val);
2383 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04002384 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCR1:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002385 i = id - KVM_REG_PPC_MMCR0;
2386 vcpu->arch.mmcr[i] = set_reg_val(id, *val);
2387 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04002388 case KVM_REG_PPC_MMCR2:
2389 vcpu->arch.mmcr[2] = set_reg_val(id, *val);
2390 break;
2391 case KVM_REG_PPC_MMCRA:
2392 vcpu->arch.mmcra = set_reg_val(id, *val);
2393 break;
2394 case KVM_REG_PPC_MMCRS:
2395 vcpu->arch.mmcrs = set_reg_val(id, *val);
2396 break;
Athira Rajeev5752fe02020-07-17 10:38:17 -04002397 case KVM_REG_PPC_MMCR3:
2398 *val = get_reg_val(id, vcpu->arch.mmcr[3]);
2399 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002400 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
2401 i = id - KVM_REG_PPC_PMC1;
2402 vcpu->arch.pmc[i] = set_reg_val(id, *val);
2403 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002404 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
2405 i = id - KVM_REG_PPC_SPMC1;
2406 vcpu->arch.spmc[i] = set_reg_val(id, *val);
2407 break;
Paul Mackerras14941782013-09-06 13:11:18 +10002408 case KVM_REG_PPC_SIAR:
2409 vcpu->arch.siar = set_reg_val(id, *val);
2410 break;
2411 case KVM_REG_PPC_SDAR:
2412 vcpu->arch.sdar = set_reg_val(id, *val);
2413 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002414 case KVM_REG_PPC_SIER:
Athira Rajeev5752fe02020-07-17 10:38:17 -04002415 vcpu->arch.sier[0] = set_reg_val(id, *val);
2416 break;
2417 case KVM_REG_PPC_SIER2:
2418 vcpu->arch.sier[1] = set_reg_val(id, *val);
2419 break;
2420 case KVM_REG_PPC_SIER3:
2421 vcpu->arch.sier[2] = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00002422 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002423 case KVM_REG_PPC_IAMR:
2424 vcpu->arch.iamr = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00002425 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002426 case KVM_REG_PPC_PSPB:
2427 vcpu->arch.pspb = set_reg_val(id, *val);
2428 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002429 case KVM_REG_PPC_DPDES:
Nicholas Piggin63983262021-11-23 19:52:30 +10002430 if (cpu_has_feature(CPU_FTR_ARCH_300))
2431 vcpu->arch.doorbell_request = set_reg_val(id, *val) & 1;
2432 else
2433 vcpu->arch.vcore->dpdes = set_reg_val(id, *val);
Michael Neulingb005255e2014-01-08 21:25:21 +11002434 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10002435 case KVM_REG_PPC_VTB:
2436 vcpu->arch.vcore->vtb = set_reg_val(id, *val);
2437 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002438 case KVM_REG_PPC_DAWR:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05302439 vcpu->arch.dawr0 = set_reg_val(id, *val);
Michael Neulingb005255e2014-01-08 21:25:21 +11002440 break;
2441 case KVM_REG_PPC_DAWRX:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05302442 vcpu->arch.dawrx0 = set_reg_val(id, *val) & ~DAWRX_HYP;
Michael Neulingb005255e2014-01-08 21:25:21 +11002443 break;
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +05302444 case KVM_REG_PPC_DAWR1:
2445 vcpu->arch.dawr1 = set_reg_val(id, *val);
2446 break;
2447 case KVM_REG_PPC_DAWRX1:
2448 vcpu->arch.dawrx1 = set_reg_val(id, *val) & ~DAWRX_HYP;
2449 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002450 case KVM_REG_PPC_CIABR:
2451 vcpu->arch.ciabr = set_reg_val(id, *val);
2452 /* Don't allow setting breakpoints in hypervisor code */
2453 if ((vcpu->arch.ciabr & CIABR_PRIV) == CIABR_PRIV_HYPER)
2454 vcpu->arch.ciabr &= ~CIABR_PRIV; /* disable */
2455 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002456 case KVM_REG_PPC_CSIGR:
2457 vcpu->arch.csigr = set_reg_val(id, *val);
2458 break;
2459 case KVM_REG_PPC_TACR:
2460 vcpu->arch.tacr = set_reg_val(id, *val);
2461 break;
2462 case KVM_REG_PPC_TCSCR:
2463 vcpu->arch.tcscr = set_reg_val(id, *val);
2464 break;
2465 case KVM_REG_PPC_PID:
2466 vcpu->arch.pid = set_reg_val(id, *val);
2467 break;
2468 case KVM_REG_PPC_ACOP:
2469 vcpu->arch.acop = set_reg_val(id, *val);
2470 break;
2471 case KVM_REG_PPC_WORT:
2472 vcpu->arch.wort = set_reg_val(id, *val);
2473 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11002474 case KVM_REG_PPC_TIDR:
2475 vcpu->arch.tid = set_reg_val(id, *val);
2476 break;
2477 case KVM_REG_PPC_PSSCR:
2478 vcpu->arch.psscr = set_reg_val(id, *val) & PSSCR_GUEST_VIS;
2479 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00002480 case KVM_REG_PPC_VPA_ADDR:
2481 addr = set_reg_val(id, *val);
2482 r = -EINVAL;
2483 if (!addr && (vcpu->arch.slb_shadow.next_gpa ||
2484 vcpu->arch.dtl.next_gpa))
2485 break;
2486 r = set_vpa(vcpu, &vcpu->arch.vpa, addr, sizeof(struct lppaca));
2487 break;
2488 case KVM_REG_PPC_VPA_SLB:
2489 addr = val->vpaval.addr;
2490 len = val->vpaval.length;
2491 r = -EINVAL;
2492 if (addr && !vcpu->arch.vpa.next_gpa)
2493 break;
2494 r = set_vpa(vcpu, &vcpu->arch.slb_shadow, addr, len);
2495 break;
2496 case KVM_REG_PPC_VPA_DTL:
2497 addr = val->vpaval.addr;
2498 len = val->vpaval.length;
2499 r = -EINVAL;
Paul Mackerras9f8c8c72012-10-15 01:18:37 +00002500 if (addr && (len < sizeof(struct dtl_entry) ||
2501 !vcpu->arch.vpa.next_gpa))
Paul Mackerras55b665b2012-09-25 20:33:06 +00002502 break;
2503 len -= len % sizeof(struct dtl_entry);
2504 r = set_vpa(vcpu, &vcpu->arch.dtl, addr, len);
2505 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10002506 case KVM_REG_PPC_TB_OFFSET:
2507 /* round up to multiple of 2^24 */
2508 vcpu->arch.vcore->tb_offset =
2509 ALIGN(set_reg_val(id, *val), 1UL << 24);
2510 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002511 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10002512 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), true);
2513 break;
2514 case KVM_REG_PPC_LPCR_64:
2515 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), false);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002516 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10002517 case KVM_REG_PPC_PPR:
2518 vcpu->arch.ppr = set_reg_val(id, *val);
2519 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002520#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
2521 case KVM_REG_PPC_TFHAR:
2522 vcpu->arch.tfhar = set_reg_val(id, *val);
2523 break;
2524 case KVM_REG_PPC_TFIAR:
2525 vcpu->arch.tfiar = set_reg_val(id, *val);
2526 break;
2527 case KVM_REG_PPC_TEXASR:
2528 vcpu->arch.texasr = set_reg_val(id, *val);
2529 break;
2530 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
2531 i = id - KVM_REG_PPC_TM_GPR0;
2532 vcpu->arch.gpr_tm[i] = set_reg_val(id, *val);
2533 break;
2534 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
2535 {
2536 int j;
2537 i = id - KVM_REG_PPC_TM_VSR0;
2538 if (i < 32)
2539 for (j = 0; j < TS_FPRWIDTH; j++)
2540 vcpu->arch.fp_tm.fpr[i][j] = val->vsxval[j];
2541 else
2542 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2543 vcpu->arch.vr_tm.vr[i-32] = val->vval;
2544 else
2545 r = -ENXIO;
2546 break;
2547 }
2548 case KVM_REG_PPC_TM_CR:
2549 vcpu->arch.cr_tm = set_reg_val(id, *val);
2550 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11002551 case KVM_REG_PPC_TM_XER:
2552 vcpu->arch.xer_tm = set_reg_val(id, *val);
2553 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002554 case KVM_REG_PPC_TM_LR:
2555 vcpu->arch.lr_tm = set_reg_val(id, *val);
2556 break;
2557 case KVM_REG_PPC_TM_CTR:
2558 vcpu->arch.ctr_tm = set_reg_val(id, *val);
2559 break;
2560 case KVM_REG_PPC_TM_FPSCR:
2561 vcpu->arch.fp_tm.fpscr = set_reg_val(id, *val);
2562 break;
2563 case KVM_REG_PPC_TM_AMR:
2564 vcpu->arch.amr_tm = set_reg_val(id, *val);
2565 break;
2566 case KVM_REG_PPC_TM_PPR:
2567 vcpu->arch.ppr_tm = set_reg_val(id, *val);
2568 break;
2569 case KVM_REG_PPC_TM_VRSAVE:
2570 vcpu->arch.vrsave_tm = set_reg_val(id, *val);
2571 break;
2572 case KVM_REG_PPC_TM_VSCR:
2573 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2574 vcpu->arch.vr.vscr.u[3] = set_reg_val(id, *val);
2575 else
2576 r = - ENXIO;
2577 break;
2578 case KVM_REG_PPC_TM_DSCR:
2579 vcpu->arch.dscr_tm = set_reg_val(id, *val);
2580 break;
2581 case KVM_REG_PPC_TM_TAR:
2582 vcpu->arch.tar_tm = set_reg_val(id, *val);
2583 break;
2584#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10002585 case KVM_REG_PPC_ARCH_COMPAT:
2586 r = kvmppc_set_arch_compat(vcpu, set_reg_val(id, *val));
2587 break;
Paul Mackerras58555642018-01-12 20:55:20 +11002588 case KVM_REG_PPC_DEC_EXPIRY:
Nicholas Piggin3c1a43222021-11-23 19:52:00 +10002589 vcpu->arch.dec_expires = set_reg_val(id, *val);
Paul Mackerras58555642018-01-12 20:55:20 +11002590 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002591 case KVM_REG_PPC_ONLINE:
Paul Mackerras7aa15842018-04-20 19:53:22 +10002592 i = set_reg_val(id, *val);
2593 if (i && !vcpu->arch.online)
2594 atomic_inc(&vcpu->arch.vcore->online_count);
2595 else if (!i && vcpu->arch.online)
2596 atomic_dec(&vcpu->arch.vcore->online_count);
2597 vcpu->arch.online = i;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002598 break;
Paul Mackerras30323412018-10-08 16:31:13 +11002599 case KVM_REG_PPC_PTCR:
2600 vcpu->kvm->arch.l1_ptcr = set_reg_val(id, *val);
2601 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00002602 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002603 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00002604 break;
2605 }
2606
2607 return r;
2608}
2609
Paul Mackerras45c940b2016-11-18 17:43:30 +11002610/*
2611 * On POWER9, threads are independent and can be in different partitions.
2612 * Therefore we consider each thread to be a subcore.
2613 * There is a restriction that all threads have to be in the same
2614 * MMU mode (radix or HPT), unfortunately, but since we only support
2615 * HPT guests on a HPT host so far, that isn't an impediment yet.
2616 */
Paul Mackerras516f7892017-10-16 16:11:57 +11002617static int threads_per_vcore(struct kvm *kvm)
Paul Mackerras45c940b2016-11-18 17:43:30 +11002618{
Nicholas Pigginaaae8c72021-05-28 19:07:42 +10002619 if (cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras45c940b2016-11-18 17:43:30 +11002620 return 1;
2621 return threads_per_subcore;
2622}
2623
Sam Bobroff1e175d22018-07-25 16:12:02 +10002624static struct kvmppc_vcore *kvmppc_vcore_create(struct kvm *kvm, int id)
Stewart Smithde9bdd12014-07-18 14:18:42 +10002625{
2626 struct kvmppc_vcore *vcore;
2627
2628 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
2629
2630 if (vcore == NULL)
2631 return NULL;
2632
Stewart Smithde9bdd12014-07-18 14:18:42 +10002633 spin_lock_init(&vcore->lock);
Paul Mackerras2711e242014-12-04 16:43:28 +11002634 spin_lock_init(&vcore->stoltb_lock);
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07002635 rcuwait_init(&vcore->wait);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002636 vcore->preempt_tb = TB_NIL;
2637 vcore->lpcr = kvm->arch.lpcr;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002638 vcore->first_vcpuid = id;
Stewart Smithde9bdd12014-07-18 14:18:42 +10002639 vcore->kvm = kvm;
Paul Mackerrasec257162015-06-24 21:18:03 +10002640 INIT_LIST_HEAD(&vcore->preempt_list);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002641
2642 return vcore;
2643}
2644
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002645#ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
2646static struct debugfs_timings_element {
2647 const char *name;
2648 size_t offset;
2649} timings[] = {
2650 {"rm_entry", offsetof(struct kvm_vcpu, arch.rm_entry)},
2651 {"rm_intr", offsetof(struct kvm_vcpu, arch.rm_intr)},
2652 {"rm_exit", offsetof(struct kvm_vcpu, arch.rm_exit)},
2653 {"guest", offsetof(struct kvm_vcpu, arch.guest_time)},
2654 {"cede", offsetof(struct kvm_vcpu, arch.cede_time)},
2655};
2656
Thomas Meyer4bb817ed2017-09-03 14:19:31 +02002657#define N_TIMINGS (ARRAY_SIZE(timings))
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002658
2659struct debugfs_timings_state {
2660 struct kvm_vcpu *vcpu;
2661 unsigned int buflen;
2662 char buf[N_TIMINGS * 100];
2663};
2664
2665static int debugfs_timings_open(struct inode *inode, struct file *file)
2666{
2667 struct kvm_vcpu *vcpu = inode->i_private;
2668 struct debugfs_timings_state *p;
2669
2670 p = kzalloc(sizeof(*p), GFP_KERNEL);
2671 if (!p)
2672 return -ENOMEM;
2673
2674 kvm_get_kvm(vcpu->kvm);
2675 p->vcpu = vcpu;
2676 file->private_data = p;
2677
2678 return nonseekable_open(inode, file);
2679}
2680
2681static int debugfs_timings_release(struct inode *inode, struct file *file)
2682{
2683 struct debugfs_timings_state *p = file->private_data;
2684
2685 kvm_put_kvm(p->vcpu->kvm);
2686 kfree(p);
2687 return 0;
2688}
2689
2690static ssize_t debugfs_timings_read(struct file *file, char __user *buf,
2691 size_t len, loff_t *ppos)
2692{
2693 struct debugfs_timings_state *p = file->private_data;
2694 struct kvm_vcpu *vcpu = p->vcpu;
2695 char *s, *buf_end;
2696 struct kvmhv_tb_accumulator tb;
2697 u64 count;
2698 loff_t pos;
2699 ssize_t n;
2700 int i, loops;
2701 bool ok;
2702
2703 if (!p->buflen) {
2704 s = p->buf;
2705 buf_end = s + sizeof(p->buf);
2706 for (i = 0; i < N_TIMINGS; ++i) {
2707 struct kvmhv_tb_accumulator *acc;
2708
2709 acc = (struct kvmhv_tb_accumulator *)
2710 ((unsigned long)vcpu + timings[i].offset);
2711 ok = false;
2712 for (loops = 0; loops < 1000; ++loops) {
2713 count = acc->seqcount;
2714 if (!(count & 1)) {
2715 smp_rmb();
2716 tb = *acc;
2717 smp_rmb();
2718 if (count == acc->seqcount) {
2719 ok = true;
2720 break;
2721 }
2722 }
2723 udelay(1);
2724 }
2725 if (!ok)
2726 snprintf(s, buf_end - s, "%s: stuck\n",
2727 timings[i].name);
2728 else
2729 snprintf(s, buf_end - s,
2730 "%s: %llu %llu %llu %llu\n",
2731 timings[i].name, count / 2,
2732 tb_to_ns(tb.tb_total),
2733 tb_to_ns(tb.tb_min),
2734 tb_to_ns(tb.tb_max));
2735 s += strlen(s);
2736 }
2737 p->buflen = s - p->buf;
2738 }
2739
2740 pos = *ppos;
2741 if (pos >= p->buflen)
2742 return 0;
2743 if (len > p->buflen - pos)
2744 len = p->buflen - pos;
2745 n = copy_to_user(buf, p->buf + pos, len);
2746 if (n) {
2747 if (n == len)
2748 return -EFAULT;
2749 len -= n;
2750 }
2751 *ppos = pos + len;
2752 return len;
2753}
2754
2755static ssize_t debugfs_timings_write(struct file *file, const char __user *buf,
2756 size_t len, loff_t *ppos)
2757{
2758 return -EACCES;
2759}
2760
2761static const struct file_operations debugfs_timings_ops = {
2762 .owner = THIS_MODULE,
2763 .open = debugfs_timings_open,
2764 .release = debugfs_timings_release,
2765 .read = debugfs_timings_read,
2766 .write = debugfs_timings_write,
2767 .llseek = generic_file_llseek,
2768};
2769
2770/* Create a debugfs directory for the vcpu */
2771static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2772{
2773 char buf[16];
2774 struct kvm *kvm = vcpu->kvm;
2775
2776 snprintf(buf, sizeof(buf), "vcpu%u", id);
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002777 vcpu->arch.debugfs_dir = debugfs_create_dir(buf, kvm->arch.debugfs_dir);
Greg Kroah-Hartmanc4fd5272020-02-09 11:58:57 +01002778 debugfs_create_file("timings", 0444, vcpu->arch.debugfs_dir, vcpu,
2779 &debugfs_timings_ops);
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002780}
2781
2782#else /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2783static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2784{
2785}
2786#endif /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2787
Sean Christophersonff030fd2019-12-18 13:55:00 -08002788static int kvmppc_core_vcpu_create_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002789{
Paul Mackerras3c313522017-02-06 13:24:41 +11002790 int err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002791 int core;
2792 struct kvmppc_vcore *vcore;
Sean Christophersonff030fd2019-12-18 13:55:00 -08002793 struct kvm *kvm;
2794 unsigned int id;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002795
Sean Christophersonff030fd2019-12-18 13:55:00 -08002796 kvm = vcpu->kvm;
2797 id = vcpu->vcpu_id;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002798
2799 vcpu->arch.shared = &vcpu->arch.shregs;
Alexander Graf5deb8e72014-04-24 13:46:24 +02002800#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2801 /*
2802 * The shared struct is never shared on HV,
2803 * so we can always use host endianness
2804 */
2805#ifdef __BIG_ENDIAN__
2806 vcpu->arch.shared_big_endian = true;
2807#else
2808 vcpu->arch.shared_big_endian = false;
2809#endif
2810#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +00002811 vcpu->arch.mmcr[0] = MMCR0_FC;
Nicholas Piggin245ebf82021-11-23 19:51:49 +10002812 if (cpu_has_feature(CPU_FTR_ARCH_31)) {
2813 vcpu->arch.mmcr[0] |= MMCR0_PMCCEXT;
2814 vcpu->arch.mmcra = MMCRA_BHRB_DISABLE;
2815 }
2816
Paul Mackerrasde56a942011-06-29 00:21:34 +00002817 vcpu->arch.ctrl = CTRL_RUNLATCH;
2818 /* default to host PVR, since we can't spoof it */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302819 kvmppc_set_pvr_hv(vcpu, mfspr(SPRN_PVR));
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002820 spin_lock_init(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002821 spin_lock_init(&vcpu->arch.tbacct_lock);
2822 vcpu->arch.busy_preempt = TB_NIL;
Nicholas Pigginfd42b7b2021-08-12 02:00:35 +10002823 vcpu->arch.shregs.msr = MSR_ME;
Anton Blanchardd6829162014-01-08 21:25:30 +11002824 vcpu->arch.intr_msr = MSR_SF | MSR_ME;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002825
Paul Mackerras769377f2017-02-15 14:30:17 +11002826 /*
2827 * Set the default HFSCR for the guest from the host value.
2828 * This value is only used on POWER9.
Paul Mackerras57900692017-05-16 16:41:20 +10002829 * On POWER9, we want to virtualize the doorbell facility, so we
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002830 * don't set the HFSCR_MSGP bit, and that causes those instructions
2831 * to trap and then we emulate them.
Paul Mackerras769377f2017-02-15 14:30:17 +11002832 */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002833 vcpu->arch.hfscr = HFSCR_TAR | HFSCR_EBB | HFSCR_PM | HFSCR_BHRB |
Alistair Popple4cb4ade2020-06-02 15:53:25 +10002834 HFSCR_DSCR | HFSCR_VECVSX | HFSCR_FP | HFSCR_PREFIX;
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002835 if (cpu_has_feature(CPU_FTR_HVMODE)) {
2836 vcpu->arch.hfscr &= mfspr(SPRN_HFSCR);
Nicholas Pigginbd31ecf2021-07-16 12:43:09 +10002837#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002838 if (cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
2839 vcpu->arch.hfscr |= HFSCR_TM;
Nicholas Pigginbd31ecf2021-07-16 12:43:09 +10002840#endif
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002841 }
2842 if (cpu_has_feature(CPU_FTR_TM_COMP))
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002843 vcpu->arch.hfscr |= HFSCR_TM;
Paul Mackerras769377f2017-02-15 14:30:17 +11002844
Nicholas Piggin8b210a82021-08-12 02:00:40 +10002845 vcpu->arch.hfscr_permitted = vcpu->arch.hfscr;
2846
Nicholas Piggin9d3ddb82021-11-23 19:51:53 +10002847 /*
Nicholas Piggin022ecb92021-11-23 19:52:15 +10002848 * PM, EBB, TM are demand-faulted so start with it clear.
Nicholas Piggin9d3ddb82021-11-23 19:51:53 +10002849 */
Nicholas Piggin022ecb92021-11-23 19:52:15 +10002850 vcpu->arch.hfscr &= ~(HFSCR_PM | HFSCR_EBB | HFSCR_TM);
Nicholas Piggin9d3ddb82021-11-23 19:51:53 +10002851
Paul Mackerrasde56a942011-06-29 00:21:34 +00002852 kvmppc_mmu_book3s_hv_init(vcpu);
2853
Paul Mackerras8455d792012-10-15 01:17:42 +00002854 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002855
2856 init_waitqueue_head(&vcpu->arch.cpu_run);
2857
2858 mutex_lock(&kvm->lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002859 vcore = NULL;
2860 err = -EINVAL;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002861 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasb5c6f762018-07-26 15:38:41 +10002862 if (id >= (KVM_MAX_VCPUS * kvm->arch.emul_smt_mode)) {
2863 pr_devel("KVM: VCPU ID too high\n");
2864 core = KVM_MAX_VCORES;
2865 } else {
2866 BUG_ON(kvm->arch.smt_mode != 1);
2867 core = kvmppc_pack_vcpu_id(kvm, id);
2868 }
Sam Bobroff1e175d22018-07-25 16:12:02 +10002869 } else {
2870 core = id / kvm->arch.smt_mode;
2871 }
Paul Mackerras3c313522017-02-06 13:24:41 +11002872 if (core < KVM_MAX_VCORES) {
2873 vcore = kvm->arch.vcores[core];
Sam Bobroff1e175d22018-07-25 16:12:02 +10002874 if (vcore && cpu_has_feature(CPU_FTR_ARCH_300)) {
2875 pr_devel("KVM: collision on id %u", id);
2876 vcore = NULL;
2877 } else if (!vcore) {
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002878 /*
2879 * Take mmu_setup_lock for mutual exclusion
2880 * with kvmppc_update_lpcr().
2881 */
Paul Mackerras3c313522017-02-06 13:24:41 +11002882 err = -ENOMEM;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002883 vcore = kvmppc_vcore_create(kvm,
2884 id & ~(kvm->arch.smt_mode - 1));
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002885 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002886 kvm->arch.vcores[core] = vcore;
2887 kvm->arch.online_vcores++;
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002888 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002889 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002890 }
2891 mutex_unlock(&kvm->lock);
2892
2893 if (!vcore)
Sean Christophersonff030fd2019-12-18 13:55:00 -08002894 return err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002895
2896 spin_lock(&vcore->lock);
2897 ++vcore->num_threads;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002898 spin_unlock(&vcore->lock);
2899 vcpu->arch.vcore = vcore;
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11002900 vcpu->arch.ptid = vcpu->vcpu_id - vcore->first_vcpuid;
Paul Mackerrasec257162015-06-24 21:18:03 +10002901 vcpu->arch.thread_cpu = -1;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002902 vcpu->arch.prev_cpu = -1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002903
Alexander Grafaf8f38b2011-08-10 13:57:08 +02002904 vcpu->arch.cpu_type = KVM_CPU_3S_64;
2905 kvmppc_sanity_check(vcpu);
2906
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002907 debugfs_vcpu_init(vcpu, id);
2908
Sean Christophersonc50bfbd2019-12-18 13:54:57 -08002909 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002910}
2911
Paul Mackerras3c313522017-02-06 13:24:41 +11002912static int kvmhv_set_smt_mode(struct kvm *kvm, unsigned long smt_mode,
2913 unsigned long flags)
2914{
2915 int err;
Paul Mackerras57900692017-05-16 16:41:20 +10002916 int esmt = 0;
Paul Mackerras3c313522017-02-06 13:24:41 +11002917
2918 if (flags)
2919 return -EINVAL;
2920 if (smt_mode > MAX_SMT_THREADS || !is_power_of_2(smt_mode))
2921 return -EINVAL;
2922 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
2923 /*
2924 * On POWER8 (or POWER7), the threading mode is "strict",
2925 * so we pack smt_mode vcpus per vcore.
2926 */
2927 if (smt_mode > threads_per_subcore)
2928 return -EINVAL;
2929 } else {
2930 /*
2931 * On POWER9, the threading mode is "loose",
2932 * so each vcpu gets its own vcore.
2933 */
Paul Mackerras57900692017-05-16 16:41:20 +10002934 esmt = smt_mode;
Paul Mackerras3c313522017-02-06 13:24:41 +11002935 smt_mode = 1;
2936 }
2937 mutex_lock(&kvm->lock);
2938 err = -EBUSY;
2939 if (!kvm->arch.online_vcores) {
2940 kvm->arch.smt_mode = smt_mode;
Paul Mackerras57900692017-05-16 16:41:20 +10002941 kvm->arch.emul_smt_mode = esmt;
Paul Mackerras3c313522017-02-06 13:24:41 +11002942 err = 0;
2943 }
2944 mutex_unlock(&kvm->lock);
2945
2946 return err;
2947}
2948
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002949static void unpin_vpa(struct kvm *kvm, struct kvmppc_vpa *vpa)
2950{
2951 if (vpa->pinned_addr)
2952 kvmppc_unpin_guest_page(kvm, vpa->pinned_addr, vpa->gpa,
2953 vpa->dirty);
2954}
2955
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302956static void kvmppc_core_vcpu_free_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002957{
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002958 spin_lock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002959 unpin_vpa(vcpu->kvm, &vcpu->arch.dtl);
2960 unpin_vpa(vcpu->kvm, &vcpu->arch.slb_shadow);
2961 unpin_vpa(vcpu->kvm, &vcpu->arch.vpa);
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002962 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002963}
2964
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302965static int kvmppc_core_check_requests_hv(struct kvm_vcpu *vcpu)
2966{
2967 /* Indicate we want to get back into the guest */
2968 return 1;
2969}
2970
Paul Mackerras19ccb762011-07-23 17:42:46 +10002971static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002972{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002973 unsigned long dec_nsec, now;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002974
Paul Mackerras19ccb762011-07-23 17:42:46 +10002975 now = get_tb();
Nicholas Piggin3c1a43222021-11-23 19:52:00 +10002976 if (now > kvmppc_dec_expires_host_tb(vcpu)) {
Paul Mackerras19ccb762011-07-23 17:42:46 +10002977 /* decrementer has already gone negative */
2978 kvmppc_core_queue_dec(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -06002979 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002980 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002981 }
Nicholas Piggin3c1a43222021-11-23 19:52:00 +10002982 dec_nsec = tb_to_ns(kvmppc_dec_expires_host_tb(vcpu) - now);
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002983 hrtimer_start(&vcpu->arch.dec_timer, dec_nsec, HRTIMER_MODE_REL);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002984 vcpu->arch.timer_running = 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002985}
2986
Paul Mackerras8b24e692017-06-26 15:45:51 +10002987extern int __kvmppc_vcore_entry(void);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002988
2989static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
Nicholas Piggincb2553a2021-11-23 19:52:02 +10002990 struct kvm_vcpu *vcpu, u64 tb)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002991{
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002992 u64 now;
2993
Paul Mackerras371fefd2011-06-29 00:23:08 +00002994 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
2995 return;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002996 spin_lock_irq(&vcpu->arch.tbacct_lock);
Nicholas Piggincb2553a2021-11-23 19:52:02 +10002997 now = tb;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002998 vcpu->arch.busy_stolen += vcore_stolen_time(vc, now) -
2999 vcpu->arch.stolen_logged;
3000 vcpu->arch.busy_preempt = now;
3001 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11003002 spin_unlock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003003 --vc->n_runnable;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003004 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], NULL);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003005}
3006
Paul Mackerrasf0888f72012-02-03 00:54:17 +00003007static int kvmppc_grab_hwthread(int cpu)
3008{
3009 struct paca_struct *tpaca;
Paul Mackerrasb754c732014-09-02 16:14:42 +10003010 long timeout = 10000;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00003011
Nicholas Piggind2e60072018-02-14 01:08:12 +10003012 tpaca = paca_ptrs[cpu];
Paul Mackerrasf0888f72012-02-03 00:54:17 +00003013
3014 /* Ensure the thread won't go into the kernel if it wakes */
Paul Mackerras7b444c62012-10-15 01:16:14 +00003015 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003016 tpaca->kvm_hstate.kvm_vcore = NULL;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003017 tpaca->kvm_hstate.napping = 0;
3018 smp_wmb();
3019 tpaca->kvm_hstate.hwthread_req = 1;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00003020
3021 /*
3022 * If the thread is already executing in the kernel (e.g. handling
3023 * a stray interrupt), wait for it to get back to nap mode.
3024 * The smp_mb() is to ensure that our setting of hwthread_req
3025 * is visible before we look at hwthread_state, so if this
3026 * races with the code at system_reset_pSeries and the thread
3027 * misses our setting of hwthread_req, we are sure to see its
3028 * setting of hwthread_state, and vice versa.
3029 */
3030 smp_mb();
3031 while (tpaca->kvm_hstate.hwthread_state == KVM_HWTHREAD_IN_KERNEL) {
3032 if (--timeout <= 0) {
3033 pr_err("KVM: couldn't grab cpu %d\n", cpu);
3034 return -EBUSY;
3035 }
3036 udelay(1);
3037 }
3038 return 0;
3039}
3040
3041static void kvmppc_release_hwthread(int cpu)
3042{
3043 struct paca_struct *tpaca;
3044
Nicholas Piggind2e60072018-02-14 01:08:12 +10003045 tpaca = paca_ptrs[cpu];
Paul Mackerras31a4d442017-10-19 15:14:20 +11003046 tpaca->kvm_hstate.hwthread_req = 0;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00003047 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003048 tpaca->kvm_hstate.kvm_vcore = NULL;
3049 tpaca->kvm_hstate.kvm_split_mode = NULL;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00003050}
3051
Nicholas Piggin434398a2021-11-23 19:52:27 +10003052static DEFINE_PER_CPU(struct kvm *, cpu_in_guest);
3053
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003054static void radix_flush_cpu(struct kvm *kvm, int cpu, struct kvm_vcpu *vcpu)
3055{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11003056 struct kvm_nested_guest *nested = vcpu->arch.nested;
Nicholas Piggin434398a2021-11-23 19:52:27 +10003057 cpumask_t *need_tlb_flush;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003058 int i;
3059
Nicholas Piggin434398a2021-11-23 19:52:27 +10003060 if (nested)
Nicholas Piggind5c0e8332021-11-23 19:52:21 +10003061 need_tlb_flush = &nested->need_tlb_flush;
Nicholas Piggin434398a2021-11-23 19:52:27 +10003062 else
Nicholas Piggind5c0e8332021-11-23 19:52:21 +10003063 need_tlb_flush = &kvm->arch.need_tlb_flush;
Nicholas Piggind5c0e8332021-11-23 19:52:21 +10003064
Suraj Jitindar Singh77bbbc02021-06-02 14:04:41 +10003065 cpu = cpu_first_tlb_thread_sibling(cpu);
Suraj Jitindar Singh77bbbc02021-06-02 14:04:41 +10003066 for (i = cpu; i <= cpu_last_tlb_thread_sibling(cpu);
3067 i += cpu_tlb_thread_sibling_step())
Nicholas Piggind5c0e8332021-11-23 19:52:21 +10003068 cpumask_set_cpu(i, need_tlb_flush);
3069
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003070 /*
Nicholas Piggin434398a2021-11-23 19:52:27 +10003071 * Make sure setting of bit in need_tlb_flush precedes testing of
3072 * cpu_in_guest. The matching barrier on the other side is hwsync
3073 * when switching to guest MMU mode, which happens between
3074 * cpu_in_guest being set to the guest kvm, and need_tlb_flush bit
3075 * being tested.
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003076 */
3077 smp_mb();
Nicholas Piggind5c0e8332021-11-23 19:52:21 +10003078
Suraj Jitindar Singh77bbbc02021-06-02 14:04:41 +10003079 for (i = cpu; i <= cpu_last_tlb_thread_sibling(cpu);
Nicholas Piggin434398a2021-11-23 19:52:27 +10003080 i += cpu_tlb_thread_sibling_step()) {
3081 struct kvm *running = *per_cpu_ptr(&cpu_in_guest, i);
3082
3083 if (running == kvm)
Suraj Jitindar Singh77bbbc02021-06-02 14:04:41 +10003084 smp_call_function_single(i, do_nothing, NULL, 1);
Nicholas Piggin434398a2021-11-23 19:52:27 +10003085 }
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003086}
3087
Nicholas Piggind5c0e8332021-11-23 19:52:21 +10003088static void do_migrate_away_vcpu(void *arg)
3089{
3090 struct kvm_vcpu *vcpu = arg;
3091 struct kvm *kvm = vcpu->kvm;
3092
3093 /*
3094 * If the guest has GTSE, it may execute tlbie, so do a eieio; tlbsync;
3095 * ptesync sequence on the old CPU before migrating to a new one, in
3096 * case we interrupted the guest between a tlbie ; eieio ;
3097 * tlbsync; ptesync sequence.
3098 *
3099 * Otherwise, ptesync is sufficient for ordering tlbiel sequences.
3100 */
3101 if (kvm->arch.lpcr & LPCR_GTSE)
3102 asm volatile("eieio; tlbsync; ptesync");
3103 else
3104 asm volatile("ptesync");
Paul Mackerras371fefd2011-06-29 00:23:08 +00003105}
3106
Paul Mackerras8b24e692017-06-26 15:45:51 +10003107static void kvmppc_prepare_radix_vcpu(struct kvm_vcpu *vcpu, int pcpu)
3108{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11003109 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003110 struct kvm *kvm = vcpu->kvm;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11003111 int prev_cpu;
3112
3113 if (!cpu_has_feature(CPU_FTR_HVMODE))
3114 return;
3115
3116 if (nested)
3117 prev_cpu = nested->prev_cpu[vcpu->arch.nested_vcpu_id];
3118 else
3119 prev_cpu = vcpu->arch.prev_cpu;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003120
3121 /*
3122 * With radix, the guest can do TLB invalidations itself,
3123 * and it could choose to use the local form (tlbiel) if
3124 * it is invalidating a translation that has only ever been
3125 * used on one vcpu. However, that doesn't mean it has
3126 * only ever been used on one physical cpu, since vcpus
3127 * can move around between pcpus. To cope with this, when
3128 * a vcpu moves from one pcpu to another, we need to tell
3129 * any vcpus running on the same core as this vcpu previously
Nicholas Piggind5c0e8332021-11-23 19:52:21 +10003130 * ran to flush the TLB.
Paul Mackerras8b24e692017-06-26 15:45:51 +10003131 */
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11003132 if (prev_cpu != pcpu) {
Nicholas Piggind5c0e8332021-11-23 19:52:21 +10003133 if (prev_cpu >= 0) {
3134 if (cpu_first_tlb_thread_sibling(prev_cpu) !=
3135 cpu_first_tlb_thread_sibling(pcpu))
3136 radix_flush_cpu(kvm, prev_cpu, vcpu);
3137
3138 smp_call_function_single(prev_cpu,
3139 do_migrate_away_vcpu, vcpu, 1);
3140 }
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11003141 if (nested)
3142 nested->prev_cpu[vcpu->arch.nested_vcpu_id] = pcpu;
3143 else
3144 vcpu->arch.prev_cpu = pcpu;
3145 }
3146}
3147
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003148static void kvmppc_start_thread(struct kvm_vcpu *vcpu, struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003149{
3150 int cpu;
3151 struct paca_struct *tpaca;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003152
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003153 cpu = vc->pcpu;
3154 if (vcpu) {
3155 if (vcpu->arch.timer_running) {
3156 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
3157 vcpu->arch.timer_running = 0;
3158 }
3159 cpu += vcpu->arch.ptid;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003160 vcpu->cpu = vc->pcpu;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003161 vcpu->arch.thread_cpu = cpu;
Paul Mackerras19ccb762011-07-23 17:42:46 +10003162 }
Nicholas Piggind2e60072018-02-14 01:08:12 +10003163 tpaca = paca_ptrs[cpu];
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003164 tpaca->kvm_hstate.kvm_vcpu = vcpu;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003165 tpaca->kvm_hstate.ptid = cpu - vc->pcpu;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11003166 tpaca->kvm_hstate.fake_suspend = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10003167 /* Order stores to hstate.kvm_vcpu etc. before store to kvm_vcore */
Paul Mackerras19ccb762011-07-23 17:42:46 +10003168 smp_wmb();
Paul Mackerras898b25b2017-06-22 15:08:42 +10003169 tpaca->kvm_hstate.kvm_vcore = vc;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003170 if (cpu != smp_processor_id())
Paul Mackerras66feed62015-03-28 14:21:12 +11003171 kvmppc_ipi_thread(cpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003172}
3173
Paul Mackerras516f7892017-10-16 16:11:57 +11003174static void kvmppc_wait_for_nap(int n_threads)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003175{
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003176 int cpu = smp_processor_id();
3177 int i, loops;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003178
Paul Mackerras45c940b2016-11-18 17:43:30 +11003179 if (n_threads <= 1)
3180 return;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003181 for (loops = 0; loops < 1000000; ++loops) {
3182 /*
3183 * Check if all threads are finished.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003184 * We set the vcore pointer when starting a thread
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003185 * and the thread clears it when finished, so we look
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003186 * for any threads that still have a non-NULL vcore ptr.
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003187 */
Paul Mackerras45c940b2016-11-18 17:43:30 +11003188 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10003189 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003190 break;
Paul Mackerras45c940b2016-11-18 17:43:30 +11003191 if (i == n_threads) {
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003192 HMT_medium();
3193 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003194 }
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003195 HMT_low();
Paul Mackerras371fefd2011-06-29 00:23:08 +00003196 }
3197 HMT_medium();
Paul Mackerras45c940b2016-11-18 17:43:30 +11003198 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10003199 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11003200 pr_err("KVM: CPU %d seems to be stuck\n", cpu + i);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003201}
3202
3203/*
3204 * Check that we are on thread 0 and that any other threads in
Paul Mackerras7b444c62012-10-15 01:16:14 +00003205 * this core are off-line. Then grab the threads so they can't
3206 * enter the kernel.
Paul Mackerras371fefd2011-06-29 00:23:08 +00003207 */
3208static int on_primary_thread(void)
3209{
3210 int cpu = smp_processor_id();
Michael Ellerman3102f782014-05-23 18:15:29 +10003211 int thr;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003212
Michael Ellerman3102f782014-05-23 18:15:29 +10003213 /* Are we on a primary subcore? */
3214 if (cpu_thread_in_subcore(cpu))
Paul Mackerras371fefd2011-06-29 00:23:08 +00003215 return 0;
Michael Ellerman3102f782014-05-23 18:15:29 +10003216
3217 thr = 0;
3218 while (++thr < threads_per_subcore)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003219 if (cpu_online(cpu + thr))
3220 return 0;
Paul Mackerras7b444c62012-10-15 01:16:14 +00003221
3222 /* Grab all hw threads so they can't go into the kernel */
Michael Ellerman3102f782014-05-23 18:15:29 +10003223 for (thr = 1; thr < threads_per_subcore; ++thr) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00003224 if (kvmppc_grab_hwthread(cpu + thr)) {
3225 /* Couldn't grab one; let the others go */
3226 do {
3227 kvmppc_release_hwthread(cpu + thr);
3228 } while (--thr > 0);
3229 return 0;
3230 }
3231 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003232 return 1;
3233}
3234
Paul Mackerrasec257162015-06-24 21:18:03 +10003235/*
3236 * A list of virtual cores for each physical CPU.
3237 * These are vcores that could run but their runner VCPU tasks are
3238 * (or may be) preempted.
3239 */
3240struct preempted_vcore_list {
3241 struct list_head list;
3242 spinlock_t lock;
3243};
3244
3245static DEFINE_PER_CPU(struct preempted_vcore_list, preempted_vcores);
3246
3247static void init_vcore_lists(void)
3248{
3249 int cpu;
3250
3251 for_each_possible_cpu(cpu) {
3252 struct preempted_vcore_list *lp = &per_cpu(preempted_vcores, cpu);
3253 spin_lock_init(&lp->lock);
3254 INIT_LIST_HEAD(&lp->list);
3255 }
3256}
3257
3258static void kvmppc_vcore_preempt(struct kvmppc_vcore *vc)
3259{
3260 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
3261
Nicholas Pigginecb6a722021-11-23 19:52:28 +10003262 WARN_ON_ONCE(cpu_has_feature(CPU_FTR_ARCH_300));
3263
Paul Mackerrasec257162015-06-24 21:18:03 +10003264 vc->vcore_state = VCORE_PREEMPT;
3265 vc->pcpu = smp_processor_id();
Paul Mackerras516f7892017-10-16 16:11:57 +11003266 if (vc->num_threads < threads_per_vcore(vc->kvm)) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003267 spin_lock(&lp->lock);
3268 list_add_tail(&vc->preempt_list, &lp->list);
3269 spin_unlock(&lp->lock);
3270 }
3271
3272 /* Start accumulating stolen time */
Nicholas Piggincb2553a2021-11-23 19:52:02 +10003273 kvmppc_core_start_stolen(vc, mftb());
Paul Mackerrasec257162015-06-24 21:18:03 +10003274}
3275
3276static void kvmppc_vcore_end_preempt(struct kvmppc_vcore *vc)
3277{
Paul Mackerras402813f2015-07-16 17:11:13 +10003278 struct preempted_vcore_list *lp;
Paul Mackerrasec257162015-06-24 21:18:03 +10003279
Nicholas Pigginecb6a722021-11-23 19:52:28 +10003280 WARN_ON_ONCE(cpu_has_feature(CPU_FTR_ARCH_300));
3281
Nicholas Piggincb2553a2021-11-23 19:52:02 +10003282 kvmppc_core_end_stolen(vc, mftb());
Paul Mackerrasec257162015-06-24 21:18:03 +10003283 if (!list_empty(&vc->preempt_list)) {
Paul Mackerras402813f2015-07-16 17:11:13 +10003284 lp = &per_cpu(preempted_vcores, vc->pcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10003285 spin_lock(&lp->lock);
3286 list_del_init(&vc->preempt_list);
3287 spin_unlock(&lp->lock);
3288 }
3289 vc->vcore_state = VCORE_INACTIVE;
3290}
3291
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003292/*
3293 * This stores information about the virtual cores currently
3294 * assigned to a physical core.
3295 */
Paul Mackerrasec257162015-06-24 21:18:03 +10003296struct core_info {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003297 int n_subcores;
3298 int max_subcore_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10003299 int total_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003300 int subcore_threads[MAX_SUBCORES];
Paul Mackerras898b25b2017-06-22 15:08:42 +10003301 struct kvmppc_vcore *vc[MAX_SUBCORES];
Paul Mackerrasec257162015-06-24 21:18:03 +10003302};
3303
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003304/*
3305 * This mapping means subcores 0 and 1 can use threads 0-3 and 4-7
Paul Mackerras516f7892017-10-16 16:11:57 +11003306 * respectively in 2-way micro-threading (split-core) mode on POWER8.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003307 */
3308static int subcore_thread_map[MAX_SUBCORES] = { 0, 4, 2, 6 };
3309
Paul Mackerrasec257162015-06-24 21:18:03 +10003310static void init_core_info(struct core_info *cip, struct kvmppc_vcore *vc)
3311{
3312 memset(cip, 0, sizeof(*cip));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003313 cip->n_subcores = 1;
3314 cip->max_subcore_threads = vc->num_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10003315 cip->total_threads = vc->num_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003316 cip->subcore_threads[0] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003317 cip->vc[0] = vc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003318}
3319
3320static bool subcore_config_ok(int n_subcores, int n_threads)
3321{
Paul Mackerras516f7892017-10-16 16:11:57 +11003322 /*
Paul Mackerras00608e12018-01-11 16:54:26 +11003323 * POWER9 "SMT4" cores are permanently in what is effectively a 4-way
3324 * split-core mode, with one thread per subcore.
Paul Mackerras516f7892017-10-16 16:11:57 +11003325 */
3326 if (cpu_has_feature(CPU_FTR_ARCH_300))
3327 return n_subcores <= 4 && n_threads == 1;
3328
3329 /* On POWER8, can only dynamically split if unsplit to begin with */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003330 if (n_subcores > 1 && threads_per_subcore < MAX_SMT_THREADS)
3331 return false;
3332 if (n_subcores > MAX_SUBCORES)
3333 return false;
3334 if (n_subcores > 1) {
3335 if (!(dynamic_mt_modes & 2))
3336 n_subcores = 4;
3337 if (n_subcores > 2 && !(dynamic_mt_modes & 4))
3338 return false;
3339 }
3340
3341 return n_subcores * roundup_pow_of_two(n_threads) <= MAX_SMT_THREADS;
Paul Mackerrasec257162015-06-24 21:18:03 +10003342}
3343
Paul Mackerras898b25b2017-06-22 15:08:42 +10003344static void init_vcore_to_run(struct kvmppc_vcore *vc)
Paul Mackerrasec257162015-06-24 21:18:03 +10003345{
Paul Mackerrasec257162015-06-24 21:18:03 +10003346 vc->entry_exit_map = 0;
3347 vc->in_guest = 0;
3348 vc->napping_threads = 0;
3349 vc->conferring_threads = 0;
Paul Mackerras57b8daa2018-04-20 22:51:11 +10003350 vc->tb_offset_applied = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10003351}
3352
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003353static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip)
3354{
3355 int n_threads = vc->num_threads;
3356 int sub;
3357
3358 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
3359 return false;
3360
Paul Mackerrasaa227862018-09-12 10:42:12 +10003361 /* In one_vm_per_core mode, require all vcores to be from the same vm */
3362 if (one_vm_per_core && vc->kvm != cip->vc[0]->kvm)
3363 return false;
3364
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003365 if (n_threads < cip->max_subcore_threads)
3366 n_threads = cip->max_subcore_threads;
Paul Mackerrasb0090312016-09-15 16:27:41 +10003367 if (!subcore_config_ok(cip->n_subcores + 1, n_threads))
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003368 return false;
Paul Mackerrasb0090312016-09-15 16:27:41 +10003369 cip->max_subcore_threads = n_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003370
3371 sub = cip->n_subcores;
3372 ++cip->n_subcores;
3373 cip->total_threads += vc->num_threads;
3374 cip->subcore_threads[sub] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003375 cip->vc[sub] = vc;
3376 init_vcore_to_run(vc);
3377 list_del_init(&vc->preempt_list);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003378
3379 return true;
3380}
3381
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003382/*
3383 * Work out whether it is possible to piggyback the execution of
3384 * vcore *pvc onto the execution of the other vcores described in *cip.
3385 */
3386static bool can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip,
3387 int target_threads)
3388{
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003389 if (cip->total_threads + pvc->num_threads > target_threads)
3390 return false;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003391
Paul Mackerrasb0090312016-09-15 16:27:41 +10003392 return can_dynamic_split(pvc, cip);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003393}
3394
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003395static void prepare_threads(struct kvmppc_vcore *vc)
3396{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003397 int i;
3398 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003399
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003400 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003401 if (signal_pending(vcpu->arch.run_task))
3402 vcpu->arch.ret = -EINTR;
3403 else if (vcpu->arch.vpa.update_pending ||
3404 vcpu->arch.slb_shadow.update_pending ||
3405 vcpu->arch.dtl.update_pending)
3406 vcpu->arch.ret = RESUME_GUEST;
3407 else
3408 continue;
Nicholas Piggincb2553a2021-11-23 19:52:02 +10003409 kvmppc_remove_runnable(vc, vcpu, mftb());
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003410 wake_up(&vcpu->arch.cpu_run);
3411 }
3412}
3413
Paul Mackerrasec257162015-06-24 21:18:03 +10003414static void collect_piggybacks(struct core_info *cip, int target_threads)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003415{
Paul Mackerrasec257162015-06-24 21:18:03 +10003416 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
3417 struct kvmppc_vcore *pvc, *vcnext;
3418
3419 spin_lock(&lp->lock);
3420 list_for_each_entry_safe(pvc, vcnext, &lp->list, preempt_list) {
3421 if (!spin_trylock(&pvc->lock))
3422 continue;
3423 prepare_threads(pvc);
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003424 if (!pvc->n_runnable || !pvc->kvm->arch.mmu_ready) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003425 list_del_init(&pvc->preempt_list);
3426 if (pvc->runner == NULL) {
3427 pvc->vcore_state = VCORE_INACTIVE;
Nicholas Piggincb2553a2021-11-23 19:52:02 +10003428 kvmppc_core_end_stolen(pvc, mftb());
Paul Mackerrasec257162015-06-24 21:18:03 +10003429 }
3430 spin_unlock(&pvc->lock);
3431 continue;
3432 }
3433 if (!can_piggyback(pvc, cip, target_threads)) {
3434 spin_unlock(&pvc->lock);
3435 continue;
3436 }
Nicholas Piggincb2553a2021-11-23 19:52:02 +10003437 kvmppc_core_end_stolen(pvc, mftb());
Paul Mackerrasec257162015-06-24 21:18:03 +10003438 pvc->vcore_state = VCORE_PIGGYBACK;
3439 if (cip->total_threads >= target_threads)
3440 break;
3441 }
3442 spin_unlock(&lp->lock);
3443}
3444
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003445static bool recheck_signals_and_mmu(struct core_info *cip)
Paul Mackerras8b24e692017-06-26 15:45:51 +10003446{
3447 int sub, i;
3448 struct kvm_vcpu *vcpu;
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003449 struct kvmppc_vcore *vc;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003450
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003451 for (sub = 0; sub < cip->n_subcores; ++sub) {
3452 vc = cip->vc[sub];
3453 if (!vc->kvm->arch.mmu_ready)
3454 return true;
3455 for_each_runnable_thread(i, vcpu, vc)
Paul Mackerras8b24e692017-06-26 15:45:51 +10003456 if (signal_pending(vcpu->arch.run_task))
3457 return true;
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003458 }
Paul Mackerras8b24e692017-06-26 15:45:51 +10003459 return false;
3460}
3461
Paul Mackerrasec257162015-06-24 21:18:03 +10003462static void post_guest_process(struct kvmppc_vcore *vc, bool is_master)
3463{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003464 int still_running = 0, i;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003465 u64 now;
3466 long ret;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003467 struct kvm_vcpu *vcpu;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003468
Paul Mackerrasec257162015-06-24 21:18:03 +10003469 spin_lock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003470 now = get_tb();
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003471 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras53655dd2018-10-08 16:30:54 +11003472 /*
3473 * It's safe to unlock the vcore in the loop here, because
3474 * for_each_runnable_thread() is safe against removal of
3475 * the vcpu, and the vcore state is VCORE_EXITING here,
3476 * so any vcpus becoming runnable will have their arch.trap
3477 * set to zero and can't actually run in the guest.
3478 */
3479 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003480 /* cancel pending dec exception if dec is positive */
Nicholas Piggin3c1a43222021-11-23 19:52:00 +10003481 if (now < kvmppc_dec_expires_host_tb(vcpu) &&
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003482 kvmppc_core_pending_dec(vcpu))
3483 kvmppc_core_dequeue_dec(vcpu);
3484
3485 trace_kvm_guest_exit(vcpu);
3486
3487 ret = RESUME_GUEST;
3488 if (vcpu->arch.trap)
Tianjia Zhang8c99d342020-04-27 12:35:11 +08003489 ret = kvmppc_handle_exit_hv(vcpu,
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003490 vcpu->arch.run_task);
3491
3492 vcpu->arch.ret = ret;
3493 vcpu->arch.trap = 0;
3494
Paul Mackerras53655dd2018-10-08 16:30:54 +11003495 spin_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10003496 if (is_kvmppc_resume_guest(vcpu->arch.ret)) {
3497 if (vcpu->arch.pending_exceptions)
3498 kvmppc_core_prepare_to_enter(vcpu);
3499 if (vcpu->arch.ceded)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003500 kvmppc_set_timer(vcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10003501 else
3502 ++still_running;
3503 } else {
Nicholas Piggincb2553a2021-11-23 19:52:02 +10003504 kvmppc_remove_runnable(vc, vcpu, mftb());
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003505 wake_up(&vcpu->arch.cpu_run);
3506 }
3507 }
Paul Mackerrasec257162015-06-24 21:18:03 +10003508 if (!is_master) {
Paul Mackerras563a1e92015-07-16 17:11:14 +10003509 if (still_running > 0) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003510 kvmppc_vcore_preempt(vc);
Paul Mackerras563a1e92015-07-16 17:11:14 +10003511 } else if (vc->runner) {
3512 vc->vcore_state = VCORE_PREEMPT;
Nicholas Piggincb2553a2021-11-23 19:52:02 +10003513 kvmppc_core_start_stolen(vc, mftb());
Paul Mackerras563a1e92015-07-16 17:11:14 +10003514 } else {
3515 vc->vcore_state = VCORE_INACTIVE;
3516 }
Paul Mackerrasec257162015-06-24 21:18:03 +10003517 if (vc->n_runnable > 0 && vc->runner == NULL) {
3518 /* make sure there's a candidate runner awake */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003519 i = -1;
3520 vcpu = next_runnable_thread(vc, &i);
Paul Mackerrasec257162015-06-24 21:18:03 +10003521 wake_up(&vcpu->arch.cpu_run);
3522 }
3523 }
3524 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003525}
3526
Paul Mackerras371fefd2011-06-29 00:23:08 +00003527/*
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003528 * Clear core from the list of active host cores as we are about to
3529 * enter the guest. Only do this if it is the primary thread of the
3530 * core (not if a subcore) that is entering the guest.
3531 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003532static inline int kvmppc_clear_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003533{
3534 int core;
3535
3536 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003537 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003538 /*
3539 * Memory barrier can be omitted here as we will do a smp_wmb()
3540 * later in kvmppc_start_thread and we need ensure that state is
3541 * visible to other CPUs only after we enter guest.
3542 */
3543 core = cpu >> threads_shift;
3544 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 0;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003545 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003546}
3547
3548/*
3549 * Advertise this core as an active host core since we exited the guest
3550 * Only need to do this if it is the primary thread of the core that is
3551 * exiting.
3552 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003553static inline int kvmppc_set_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003554{
3555 int core;
3556
3557 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003558 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003559
3560 /*
3561 * Memory barrier can be omitted here because we do a spin_unlock
3562 * immediately after this which provides the memory barrier.
3563 */
3564 core = cpu >> threads_shift;
3565 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 1;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003566 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003567}
3568
Paul Mackerras8b24e692017-06-26 15:45:51 +10003569static void set_irq_happened(int trap)
3570{
3571 switch (trap) {
3572 case BOOK3S_INTERRUPT_EXTERNAL:
3573 local_paca->irq_happened |= PACA_IRQ_EE;
3574 break;
3575 case BOOK3S_INTERRUPT_H_DOORBELL:
3576 local_paca->irq_happened |= PACA_IRQ_DBELL;
3577 break;
3578 case BOOK3S_INTERRUPT_HMI:
3579 local_paca->irq_happened |= PACA_IRQ_HMI;
3580 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11003581 case BOOK3S_INTERRUPT_SYSTEM_RESET:
3582 replay_system_reset();
3583 break;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003584 }
3585}
3586
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003587/*
Paul Mackerras371fefd2011-06-29 00:23:08 +00003588 * Run a set of guest threads on a physical core.
3589 * Called with vc->lock held.
3590 */
Paul Mackerras66feed62015-03-28 14:21:12 +11003591static noinline void kvmppc_run_core(struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003592{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003593 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003594 int i;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003595 int srcu_idx;
Paul Mackerrasec257162015-06-24 21:18:03 +10003596 struct core_info core_info;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003597 struct kvmppc_vcore *pvc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003598 struct kvm_split_mode split_info, *sip;
3599 int split, subcore_size, active;
3600 int sub;
3601 bool thr0_done;
3602 unsigned long cmd_bit, stat_bit;
Paul Mackerrasec257162015-06-24 21:18:03 +10003603 int pcpu, thr;
3604 int target_threads;
Paul Mackerras45c940b2016-11-18 17:43:30 +11003605 int controlled_threads;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003606 int trap;
Paul Mackerras516f7892017-10-16 16:11:57 +11003607 bool is_power8;
Paul Mackerras081f3232012-06-01 20:20:24 +10003608
Nicholas Pigginfae5c9f2021-05-28 19:07:52 +10003609 if (WARN_ON_ONCE(cpu_has_feature(CPU_FTR_ARCH_300)))
3610 return;
3611
Paul Mackerras081f3232012-06-01 20:20:24 +10003612 /*
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003613 * Remove from the list any threads that have a signal pending
3614 * or need a VPA update done
3615 */
3616 prepare_threads(vc);
3617
3618 /* if the runner is no longer runnable, let the caller pick a new one */
3619 if (vc->runner->arch.state != KVMPPC_VCPU_RUNNABLE)
3620 return;
3621
3622 /*
3623 * Initialize *vc.
Paul Mackerras081f3232012-06-01 20:20:24 +10003624 */
Paul Mackerras898b25b2017-06-22 15:08:42 +10003625 init_vcore_to_run(vc);
Paul Mackerras2711e242014-12-04 16:43:28 +11003626 vc->preempt_tb = TB_NIL;
Paul Mackerras081f3232012-06-01 20:20:24 +10003627
3628 /*
Paul Mackerras45c940b2016-11-18 17:43:30 +11003629 * Number of threads that we will be controlling: the same as
3630 * the number of threads per subcore, except on POWER9,
3631 * where it's 1 because the threads are (mostly) independent.
3632 */
Paul Mackerras516f7892017-10-16 16:11:57 +11003633 controlled_threads = threads_per_vcore(vc->kvm);
Paul Mackerras45c940b2016-11-18 17:43:30 +11003634
3635 /*
Michael Ellerman3102f782014-05-23 18:15:29 +10003636 * Make sure we are running on primary threads, and that secondary
3637 * threads are offline. Also check if the number of threads in this
3638 * guest are greater than the current system threads per guest.
Paul Mackerras7b444c62012-10-15 01:16:14 +00003639 */
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003640 if ((controlled_threads > 1) &&
3641 ((vc->num_threads > threads_per_subcore) || !on_primary_thread())) {
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003642 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00003643 vcpu->arch.ret = -EBUSY;
Nicholas Piggincb2553a2021-11-23 19:52:02 +10003644 kvmppc_remove_runnable(vc, vcpu, mftb());
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003645 wake_up(&vcpu->arch.cpu_run);
3646 }
Paul Mackerras7b444c62012-10-15 01:16:14 +00003647 goto out;
3648 }
3649
Paul Mackerrasec257162015-06-24 21:18:03 +10003650 /*
3651 * See if we could run any other vcores on the physical core
3652 * along with this one.
3653 */
3654 init_core_info(&core_info, vc);
3655 pcpu = smp_processor_id();
Paul Mackerras45c940b2016-11-18 17:43:30 +11003656 target_threads = controlled_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10003657 if (target_smt_mode && target_smt_mode < target_threads)
3658 target_threads = target_smt_mode;
3659 if (vc->num_threads < target_threads)
3660 collect_piggybacks(&core_info, target_threads);
Michael Ellerman3102f782014-05-23 18:15:29 +10003661
Paul Mackerras8b24e692017-06-26 15:45:51 +10003662 /*
Paul Mackerras8b24e692017-06-26 15:45:51 +10003663 * Hard-disable interrupts, and check resched flag and signals.
3664 * If we need to reschedule or deliver a signal, clean up
3665 * and return without going into the guest(s).
Paul Mackerras072df812017-11-09 14:30:24 +11003666 * If the mmu_ready flag has been cleared, don't go into the
Paul Mackerras38c53af2017-11-08 14:44:04 +11003667 * guest because that means a HPT resize operation is in progress.
Paul Mackerras8b24e692017-06-26 15:45:51 +10003668 */
3669 local_irq_disable();
3670 hard_irq_disable();
3671 if (lazy_irq_pending() || need_resched() ||
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003672 recheck_signals_and_mmu(&core_info)) {
Paul Mackerras8b24e692017-06-26 15:45:51 +10003673 local_irq_enable();
3674 vc->vcore_state = VCORE_INACTIVE;
3675 /* Unlock all except the primary vcore */
3676 for (sub = 1; sub < core_info.n_subcores; ++sub) {
3677 pvc = core_info.vc[sub];
3678 /* Put back on to the preempted vcores list */
3679 kvmppc_vcore_preempt(pvc);
3680 spin_unlock(&pvc->lock);
3681 }
3682 for (i = 0; i < controlled_threads; ++i)
3683 kvmppc_release_hwthread(pcpu + i);
3684 return;
3685 }
3686
3687 kvmppc_clear_host_core(pcpu);
3688
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003689 /* Decide on micro-threading (split-core) mode */
3690 subcore_size = threads_per_subcore;
3691 cmd_bit = stat_bit = 0;
3692 split = core_info.n_subcores;
3693 sip = NULL;
Nicholas Pigginfae5c9f2021-05-28 19:07:52 +10003694 is_power8 = cpu_has_feature(CPU_FTR_ARCH_207S);
Paul Mackerras516f7892017-10-16 16:11:57 +11003695
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003696 if (split > 1) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003697 sip = &split_info;
3698 memset(&split_info, 0, sizeof(split_info));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003699 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003700 split_info.vc[sub] = core_info.vc[sub];
Paul Mackerras516f7892017-10-16 16:11:57 +11003701
3702 if (is_power8) {
3703 if (split == 2 && (dynamic_mt_modes & 2)) {
3704 cmd_bit = HID0_POWER8_1TO2LPAR;
3705 stat_bit = HID0_POWER8_2LPARMODE;
3706 } else {
3707 split = 4;
3708 cmd_bit = HID0_POWER8_1TO4LPAR;
3709 stat_bit = HID0_POWER8_4LPARMODE;
3710 }
3711 subcore_size = MAX_SMT_THREADS / split;
3712 split_info.rpr = mfspr(SPRN_RPR);
3713 split_info.pmmar = mfspr(SPRN_PMMAR);
3714 split_info.ldbar = mfspr(SPRN_LDBAR);
3715 split_info.subcore_size = subcore_size;
3716 } else {
3717 split_info.subcore_size = 1;
3718 }
3719
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003720 /* order writes to split_info before kvm_split_mode pointer */
3721 smp_wmb();
3722 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003723
Paul Mackerrasc0101502017-10-19 14:11:23 +11003724 for (thr = 0; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003725 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3726
Nicholas Piggind2e60072018-02-14 01:08:12 +10003727 paca->kvm_hstate.napping = 0;
3728 paca->kvm_hstate.kvm_split_mode = sip;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003729 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003730
Paul Mackerras516f7892017-10-16 16:11:57 +11003731 /* Initiate micro-threading (split-core) on POWER8 if required */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003732 if (cmd_bit) {
3733 unsigned long hid0 = mfspr(SPRN_HID0);
3734
3735 hid0 |= cmd_bit | HID0_POWER8_DYNLPARDIS;
3736 mb();
3737 mtspr(SPRN_HID0, hid0);
3738 isync();
3739 for (;;) {
3740 hid0 = mfspr(SPRN_HID0);
3741 if (hid0 & stat_bit)
3742 break;
3743 cpu_relax();
3744 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +00003745 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003746
Paul Mackerras7aa15842018-04-20 19:53:22 +10003747 /*
3748 * On POWER8, set RWMR register.
3749 * Since it only affects PURR and SPURR, it doesn't affect
3750 * the host, so we don't save/restore the host value.
3751 */
3752 if (is_power8) {
3753 unsigned long rwmr_val = RWMR_RPA_P8_8THREAD;
3754 int n_online = atomic_read(&vc->online_count);
3755
3756 /*
3757 * Use the 8-thread value if we're doing split-core
3758 * or if the vcore's online count looks bogus.
3759 */
3760 if (split == 1 && threads_per_subcore == MAX_SMT_THREADS &&
3761 n_online >= 1 && n_online <= MAX_SMT_THREADS)
3762 rwmr_val = p8_rwmr_values[n_online];
3763 mtspr(SPRN_RWMR, rwmr_val);
3764 }
3765
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003766 /* Start all the threads */
3767 active = 0;
3768 for (sub = 0; sub < core_info.n_subcores; ++sub) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003769 thr = is_power8 ? subcore_thread_map[sub] : sub;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003770 thr0_done = false;
3771 active |= 1 << thr;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003772 pvc = core_info.vc[sub];
3773 pvc->pcpu = pcpu + thr;
3774 for_each_runnable_thread(i, vcpu, pvc) {
3775 kvmppc_start_thread(vcpu, pvc);
3776 kvmppc_create_dtl_entry(vcpu, pvc);
3777 trace_kvm_guest_enter(vcpu);
3778 if (!vcpu->arch.ptid)
3779 thr0_done = true;
3780 active |= 1 << (thr + vcpu->arch.ptid);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003781 }
Paul Mackerras898b25b2017-06-22 15:08:42 +10003782 /*
3783 * We need to start the first thread of each subcore
3784 * even if it doesn't have a vcpu.
3785 */
3786 if (!thr0_done)
3787 kvmppc_start_thread(NULL, pvc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003788 }
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303789
3790 /*
3791 * Ensure that split_info.do_nap is set after setting
3792 * the vcore pointer in the PACA of the secondaries.
3793 */
3794 smp_mb();
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303795
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003796 /*
3797 * When doing micro-threading, poke the inactive threads as well.
3798 * This gets them to the nap instruction after kvm_do_nap,
3799 * which reduces the time taken to unsplit later.
3800 */
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003801 if (cmd_bit) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003802 split_info.do_nap = 1; /* ask secondaries to nap when done */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003803 for (thr = 1; thr < threads_per_subcore; ++thr)
3804 if (!(active & (1 << thr)))
3805 kvmppc_ipi_thread(pcpu + thr);
Paul Mackerras516f7892017-10-16 16:11:57 +11003806 }
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003807
Paul Mackerras2f12f032012-10-15 01:17:17 +00003808 vc->vcore_state = VCORE_RUNNING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003809 preempt_disable();
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003810
3811 trace_kvmppc_run_core(vc, 0);
3812
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003813 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003814 spin_unlock(&core_info.vc[sub]->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003815
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003816 guest_enter_irqoff();
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003817
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003818 srcu_idx = srcu_read_lock(&vc->kvm->srcu);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003819
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303820 this_cpu_disable_ftrace();
3821
Alexey Kardashevskiy3309bec2019-03-29 16:40:13 +11003822 /*
3823 * Interrupts will be enabled once we get into the guest,
3824 * so tell lockdep that we're about to enable interrupts.
3825 */
3826 trace_hardirqs_on();
3827
Paul Mackerras8b24e692017-06-26 15:45:51 +10003828 trap = __kvmppc_vcore_entry();
Paul Mackerras19ccb762011-07-23 17:42:46 +10003829
Alexey Kardashevskiy3309bec2019-03-29 16:40:13 +11003830 trace_hardirqs_off();
3831
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303832 this_cpu_enable_ftrace();
3833
Paul Mackerrasec257162015-06-24 21:18:03 +10003834 srcu_read_unlock(&vc->kvm->srcu, srcu_idx);
3835
Paul Mackerras8b24e692017-06-26 15:45:51 +10003836 set_irq_happened(trap);
3837
Paul Mackerrasec257162015-06-24 21:18:03 +10003838 spin_lock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003839 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
Paul Mackerras19ccb762011-07-23 17:42:46 +10003840 vc->vcore_state = VCORE_EXITING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003841
Paul Mackerras371fefd2011-06-29 00:23:08 +00003842 /* wait for secondary threads to finish writing their state to memory */
Paul Mackerras516f7892017-10-16 16:11:57 +11003843 kvmppc_wait_for_nap(controlled_threads);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003844
3845 /* Return to whole-core mode if we split the core earlier */
Paul Mackerras516f7892017-10-16 16:11:57 +11003846 if (cmd_bit) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003847 unsigned long hid0 = mfspr(SPRN_HID0);
3848 unsigned long loops = 0;
3849
3850 hid0 &= ~HID0_POWER8_DYNLPARDIS;
3851 stat_bit = HID0_POWER8_2LPARMODE | HID0_POWER8_4LPARMODE;
3852 mb();
3853 mtspr(SPRN_HID0, hid0);
3854 isync();
3855 for (;;) {
3856 hid0 = mfspr(SPRN_HID0);
3857 if (!(hid0 & stat_bit))
3858 break;
3859 cpu_relax();
3860 ++loops;
3861 }
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003862 split_info.do_nap = 0;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003863 }
3864
Paul Mackerras8b24e692017-06-26 15:45:51 +10003865 kvmppc_set_host_core(pcpu);
3866
Laurent Vivier235cee12021-10-28 00:21:50 +10003867 context_tracking_guest_exit();
3868 if (!vtime_accounting_enabled_this_cpu()) {
3869 local_irq_enable();
3870 /*
3871 * Service IRQs here before vtime_account_guest_exit() so any
3872 * ticks that occurred while running the guest are accounted to
3873 * the guest. If vtime accounting is enabled, accounting uses
3874 * TB rather than ticks, so it can be done without enabling
3875 * interrupts here, which has the problem that it accounts
3876 * interrupt processing overhead to the host.
3877 */
3878 local_irq_disable();
3879 }
3880 vtime_account_guest_exit();
Nicholas Piggin11266522021-01-30 23:08:12 +10003881
Paul Mackerras8b24e692017-06-26 15:45:51 +10003882 local_irq_enable();
3883
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003884 /* Let secondaries go back to the offline loop */
Paul Mackerras45c940b2016-11-18 17:43:30 +11003885 for (i = 0; i < controlled_threads; ++i) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003886 kvmppc_release_hwthread(pcpu + i);
3887 if (sip && sip->napped[i])
3888 kvmppc_ipi_thread(pcpu + i);
3889 }
3890
Paul Mackerras371fefd2011-06-29 00:23:08 +00003891 spin_unlock(&vc->lock);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003892
Paul Mackerras371fefd2011-06-29 00:23:08 +00003893 /* make sure updates to secondary vcpu structs are visible now */
3894 smp_mb();
Paul Mackerrasde56a942011-06-29 00:21:34 +00003895
Paul Mackerras36ee41d2018-01-30 10:51:32 +11003896 preempt_enable();
3897
Paul Mackerras898b25b2017-06-22 15:08:42 +10003898 for (sub = 0; sub < core_info.n_subcores; ++sub) {
3899 pvc = core_info.vc[sub];
3900 post_guest_process(pvc, pvc == vc);
3901 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00003902
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003903 spin_lock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003904
Paul Mackerrasde56a942011-06-29 00:21:34 +00003905 out:
Paul Mackerras19ccb762011-07-23 17:42:46 +10003906 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003907 trace_kvmppc_run_core(vc, 1);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003908}
3909
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10003910static inline bool hcall_is_xics(unsigned long req)
3911{
3912 return req == H_EOI || req == H_CPPR || req == H_IPI ||
3913 req == H_IPOLL || req == H_XIRR || req == H_XIRR_X;
3914}
3915
Nicholas Pigginb1adcf52021-11-23 19:51:54 +10003916static void vcpu_vpa_increment_dispatch(struct kvm_vcpu *vcpu)
Paul Mackerras95a64322018-10-08 16:30:55 +11003917{
Nicholas Pigginb1adcf52021-11-23 19:51:54 +10003918 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3919 if (lp) {
Paul Mackerras95a64322018-10-08 16:30:55 +11003920 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3921 lp->yield_count = cpu_to_be32(yield_count);
3922 vcpu->arch.vpa.dirty = 1;
3923 }
Nicholas Pigginb1adcf52021-11-23 19:51:54 +10003924}
Paul Mackerras95a64322018-10-08 16:30:55 +11003925
Nicholas Piggin08b3f082021-11-23 19:52:08 +10003926/* call our hypervisor to load up HV regs and go */
3927static int kvmhv_vcpu_entry_p9_nested(struct kvm_vcpu *vcpu, u64 time_limit, unsigned long lpcr, u64 *tb)
3928{
3929 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3930 unsigned long host_psscr;
Nicholas Piggind5f48012021-11-23 19:52:09 +10003931 unsigned long msr;
Nicholas Piggin08b3f082021-11-23 19:52:08 +10003932 struct hv_guest_state hvregs;
Nicholas Piggind5f48012021-11-23 19:52:09 +10003933 struct p9_host_os_sprs host_os_sprs;
Nicholas Piggin08b3f082021-11-23 19:52:08 +10003934 s64 dec;
Nicholas Piggind5f48012021-11-23 19:52:09 +10003935 int trap;
Paul Mackerras95a64322018-10-08 16:30:55 +11003936
Nicholas Pigginb49c65c2021-11-23 19:52:23 +10003937 msr = mfmsr();
Paul Mackerras95a64322018-10-08 16:30:55 +11003938
Nicholas Piggind5f48012021-11-23 19:52:09 +10003939 save_p9_host_os_sprs(&host_os_sprs);
Paul Mackerras95a64322018-10-08 16:30:55 +11003940
Nicholas Piggin6ffe2c62021-05-28 19:07:30 +10003941 /*
Nicholas Piggin08b3f082021-11-23 19:52:08 +10003942 * We need to save and restore the guest visible part of the
3943 * psscr (i.e. using SPRN_PSSCR_PR) since the hypervisor
3944 * doesn't do this for us. Note only required if pseries since
3945 * this is done in kvmhv_vcpu_entry_p9() below otherwise.
3946 */
3947 host_psscr = mfspr(SPRN_PSSCR_PR);
Nicholas Piggind5f48012021-11-23 19:52:09 +10003948
Nicholas Pigginb49c65c2021-11-23 19:52:23 +10003949 kvmppc_msr_hard_disable_set_facilities(vcpu, msr);
Nicholas Piggind5f48012021-11-23 19:52:09 +10003950 if (lazy_irq_pending())
3951 return 0;
3952
Nicholas Piggind5f48012021-11-23 19:52:09 +10003953 if (unlikely(load_vcpu_state(vcpu, &host_os_sprs)))
3954 msr = mfmsr(); /* TM restore can update msr */
3955
Nicholas Piggina089a682021-11-23 19:52:19 +10003956 if (vcpu->arch.psscr != host_psscr)
3957 mtspr(SPRN_PSSCR_PR, vcpu->arch.psscr);
3958
Nicholas Piggin08b3f082021-11-23 19:52:08 +10003959 kvmhv_save_hv_regs(vcpu, &hvregs);
3960 hvregs.lpcr = lpcr;
3961 vcpu->arch.regs.msr = vcpu->arch.shregs.msr;
3962 hvregs.version = HV_GUEST_STATE_VERSION;
3963 if (vcpu->arch.nested) {
3964 hvregs.lpid = vcpu->arch.nested->shadow_lpid;
3965 hvregs.vcpu_token = vcpu->arch.nested_vcpu_id;
3966 } else {
3967 hvregs.lpid = vcpu->kvm->arch.lpid;
3968 hvregs.vcpu_token = vcpu->vcpu_id;
3969 }
3970 hvregs.hdec_expiry = time_limit;
3971
3972 /*
3973 * When setting DEC, we must always deal with irq_work_raise
3974 * via NMI vs setting DEC. The problem occurs right as we
3975 * switch into guest mode if a NMI hits and sets pending work
3976 * and sets DEC, then that will apply to the guest and not
3977 * bring us back to the host.
Nicholas Piggin6ffe2c62021-05-28 19:07:30 +10003978 *
Nicholas Piggin08b3f082021-11-23 19:52:08 +10003979 * irq_work_raise could check a flag (or possibly LPCR[HDICE]
3980 * for example) and set HDEC to 1? That wouldn't solve the
3981 * nested hv case which needs to abort the hcall or zero the
3982 * time limit.
Nicholas Piggin6ffe2c62021-05-28 19:07:30 +10003983 *
3984 * XXX: Another day's problem.
3985 */
Nicholas Piggin08b3f082021-11-23 19:52:08 +10003986 mtspr(SPRN_DEC, kvmppc_dec_expires_host_tb(vcpu) - *tb);
3987
3988 mtspr(SPRN_DAR, vcpu->arch.shregs.dar);
3989 mtspr(SPRN_DSISR, vcpu->arch.shregs.dsisr);
Nicholas Piggin3e7b3372021-11-23 19:52:11 +10003990 switch_pmu_to_guest(vcpu, &host_os_sprs);
Nicholas Piggin08b3f082021-11-23 19:52:08 +10003991 trap = plpar_hcall_norets(H_ENTER_NESTED, __pa(&hvregs),
3992 __pa(&vcpu->arch.regs));
3993 kvmhv_restore_hv_return_state(vcpu, &hvregs);
Nicholas Piggin3e7b3372021-11-23 19:52:11 +10003994 switch_pmu_to_host(vcpu, &host_os_sprs);
Nicholas Piggin08b3f082021-11-23 19:52:08 +10003995 vcpu->arch.shregs.msr = vcpu->arch.regs.msr;
3996 vcpu->arch.shregs.dar = mfspr(SPRN_DAR);
3997 vcpu->arch.shregs.dsisr = mfspr(SPRN_DSISR);
3998 vcpu->arch.psscr = mfspr(SPRN_PSSCR_PR);
Nicholas Piggin08b3f082021-11-23 19:52:08 +10003999
Nicholas Piggind5f48012021-11-23 19:52:09 +10004000 store_vcpu_state(vcpu);
4001
Nicholas Piggin08b3f082021-11-23 19:52:08 +10004002 dec = mfspr(SPRN_DEC);
4003 if (!(lpcr & LPCR_LD)) /* Sign extend if not using large decrementer */
4004 dec = (s32) dec;
4005 *tb = mftb();
4006 vcpu->arch.dec_expires = dec + (*tb + vc->tb_offset);
4007
Nicholas Piggind5f48012021-11-23 19:52:09 +10004008 timer_rearm_host_dec(*tb);
4009
4010 restore_p9_host_os_sprs(vcpu, &host_os_sprs);
Nicholas Piggina089a682021-11-23 19:52:19 +10004011 if (vcpu->arch.psscr != host_psscr)
4012 mtspr(SPRN_PSSCR_PR, host_psscr);
Nicholas Piggind5f48012021-11-23 19:52:09 +10004013
Nicholas Piggin08b3f082021-11-23 19:52:08 +10004014 return trap;
4015}
4016
Paul Mackerras95a64322018-10-08 16:30:55 +11004017/*
4018 * Guest entry for POWER9 and later CPUs.
4019 */
4020static int kvmhv_p9_guest_entry(struct kvm_vcpu *vcpu, u64 time_limit,
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004021 unsigned long lpcr, u64 *tb)
Paul Mackerras95a64322018-10-08 16:30:55 +11004022{
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004023 u64 next_timer;
Nicholas Piggin57dc0ee2021-11-23 19:51:51 +10004024 int trap;
Paul Mackerras95a64322018-10-08 16:30:55 +11004025
Nicholas Piggin4ebbd072021-11-23 19:51:42 +10004026 next_timer = timer_get_next_tb();
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004027 if (*tb >= next_timer)
Paul Mackerras95a64322018-10-08 16:30:55 +11004028 return BOOK3S_INTERRUPT_HV_DECREMENTER;
Nicholas Piggin4ebbd072021-11-23 19:51:42 +10004029 if (next_timer < time_limit)
4030 time_limit = next_timer;
Nicholas Piggin46dea772021-11-23 19:52:22 +10004031 else if (*tb >= time_limit) /* nested time limit */
4032 return BOOK3S_INTERRUPT_NESTED_HV_DECREMENTER;
Paul Mackerras95a64322018-10-08 16:30:55 +11004033
Nicholas Piggin34e119c92021-11-23 19:51:57 +10004034 vcpu->arch.ceded = 0;
4035
Nicholas Pigginb1adcf52021-11-23 19:51:54 +10004036 vcpu_vpa_increment_dispatch(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004037
Paul Mackerras360cae32018-10-08 16:31:04 +11004038 if (kvmhv_on_pseries()) {
Nicholas Piggin08b3f082021-11-23 19:52:08 +10004039 trap = kvmhv_vcpu_entry_p9_nested(vcpu, time_limit, lpcr, tb);
Paul Mackerras4bad7772018-10-08 16:31:06 +11004040
4041 /* H_CEDE has to be handled now, not later */
4042 if (trap == BOOK3S_INTERRUPT_SYSCALL && !vcpu->arch.nested &&
4043 kvmppc_get_gpr(vcpu, 3) == H_CEDE) {
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10004044 kvmppc_cede(vcpu);
Michael Roth1f50cc12020-03-10 16:11:28 -05004045 kvmppc_set_gpr(vcpu, 3, 0);
Paul Mackerras4bad7772018-10-08 16:31:06 +11004046 trap = 0;
4047 }
Nicholas Piggin3c1a43222021-11-23 19:52:00 +10004048
Paul Mackerras360cae32018-10-08 16:31:04 +11004049 } else {
Nicholas Piggin434398a2021-11-23 19:52:27 +10004050 struct kvm *kvm = vcpu->kvm;
4051
Nicholas Piggin09512c22021-05-28 19:07:31 +10004052 kvmppc_xive_push_vcpu(vcpu);
Nicholas Piggin434398a2021-11-23 19:52:27 +10004053
4054 __this_cpu_write(cpu_in_guest, kvm);
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004055 trap = kvmhv_vcpu_entry_p9(vcpu, time_limit, lpcr, tb);
Nicholas Piggin434398a2021-11-23 19:52:27 +10004056 __this_cpu_write(cpu_in_guest, NULL);
4057
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10004058 if (trap == BOOK3S_INTERRUPT_SYSCALL && !vcpu->arch.nested &&
4059 !(vcpu->arch.shregs.msr & MSR_PR)) {
4060 unsigned long req = kvmppc_get_gpr(vcpu, 3);
Nicholas Piggin09512c22021-05-28 19:07:31 +10004061
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10004062 /* H_CEDE has to be handled now, not later */
4063 if (req == H_CEDE) {
4064 kvmppc_cede(vcpu);
4065 kvmppc_xive_rearm_escalation(vcpu); /* may un-cede */
4066 kvmppc_set_gpr(vcpu, 3, 0);
4067 trap = 0;
4068
4069 /* XICS hcalls must be handled before xive is pulled */
4070 } else if (hcall_is_xics(req)) {
4071 int ret;
4072
4073 ret = kvmppc_xive_xics_hcall(vcpu, req);
4074 if (ret != H_TOO_HARD) {
4075 kvmppc_set_gpr(vcpu, 3, ret);
4076 trap = 0;
4077 }
4078 }
4079 }
4080 kvmppc_xive_pull_vcpu(vcpu);
Nicholas Piggin89d35b22021-05-28 19:07:34 +10004081
Nicholas Piggin434398a2021-11-23 19:52:27 +10004082 if (kvm_is_radix(kvm))
Nicholas Piggin079a09a2021-05-28 19:07:50 +10004083 vcpu->arch.slb_max = 0;
Paul Mackerras360cae32018-10-08 16:31:04 +11004084 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004085
Nicholas Pigginb1adcf52021-11-23 19:51:54 +10004086 vcpu_vpa_increment_dispatch(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004087
4088 return trap;
4089}
4090
4091/*
Paul Mackerras19ccb762011-07-23 17:42:46 +10004092 * Wait for some other vcpu thread to execute us, and
4093 * wake us up when we need to handle something in the host.
4094 */
Paul Mackerrasec257162015-06-24 21:18:03 +10004095static void kvmppc_wait_for_exec(struct kvmppc_vcore *vc,
4096 struct kvm_vcpu *vcpu, int wait_state)
Paul Mackerras371fefd2011-06-29 00:23:08 +00004097{
Paul Mackerras371fefd2011-06-29 00:23:08 +00004098 DEFINE_WAIT(wait);
4099
Paul Mackerras19ccb762011-07-23 17:42:46 +10004100 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
Paul Mackerrasec257162015-06-24 21:18:03 +10004101 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
4102 spin_unlock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004103 schedule();
Paul Mackerrasec257162015-06-24 21:18:03 +10004104 spin_lock(&vc->lock);
4105 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10004106 finish_wait(&vcpu->arch.cpu_run, &wait);
4107}
Paul Mackerras371fefd2011-06-29 00:23:08 +00004108
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004109static void grow_halt_poll_ns(struct kvmppc_vcore *vc)
4110{
Nir Weiner7fa08e72019-01-27 12:17:14 +02004111 if (!halt_poll_ns_grow)
4112 return;
4113
Nir Weinerdee339b2019-01-27 12:17:16 +02004114 vc->halt_poll_ns *= halt_poll_ns_grow;
4115 if (vc->halt_poll_ns < halt_poll_ns_grow_start)
Nir Weiner49113d32019-01-27 12:17:15 +02004116 vc->halt_poll_ns = halt_poll_ns_grow_start;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004117}
4118
4119static void shrink_halt_poll_ns(struct kvmppc_vcore *vc)
4120{
4121 if (halt_poll_ns_shrink == 0)
4122 vc->halt_poll_ns = 0;
4123 else
4124 vc->halt_poll_ns /= halt_poll_ns_shrink;
4125}
4126
Paul Mackerrasee3308a2017-06-20 15:46:12 +10004127#ifdef CONFIG_KVM_XICS
4128static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
4129{
Paul Mackerras03f95332019-02-04 22:07:20 +11004130 if (!xics_on_xive())
Paul Mackerrasee3308a2017-06-20 15:46:12 +10004131 return false;
Benjamin Herrenschmidt2267ea72018-01-12 13:37:13 +11004132 return vcpu->arch.irq_pending || vcpu->arch.xive_saved_state.pipr <
Paul Mackerrasee3308a2017-06-20 15:46:12 +10004133 vcpu->arch.xive_saved_state.cppr;
4134}
4135#else
4136static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
4137{
4138 return false;
4139}
4140#endif /* CONFIG_KVM_XICS */
4141
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10004142static bool kvmppc_vcpu_woken(struct kvm_vcpu *vcpu)
4143{
4144 if (vcpu->arch.pending_exceptions || vcpu->arch.prodded ||
Paul Mackerrasee3308a2017-06-20 15:46:12 +10004145 kvmppc_doorbell_pending(vcpu) || xive_interrupt_pending(vcpu))
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10004146 return true;
4147
4148 return false;
4149}
4150
Nicholas Pigginecb6a722021-11-23 19:52:28 +10004151static bool kvmppc_vcpu_check_block(struct kvm_vcpu *vcpu)
4152{
4153 if (!vcpu->arch.ceded || kvmppc_vcpu_woken(vcpu))
4154 return true;
4155 return false;
4156}
4157
Suraj Jitindar Singh908a0932016-10-14 11:53:23 +11004158/*
4159 * Check to see if any of the runnable vcpus on the vcore have pending
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004160 * exceptions or are no longer ceded
4161 */
4162static int kvmppc_vcore_check_block(struct kvmppc_vcore *vc)
4163{
4164 struct kvm_vcpu *vcpu;
4165 int i;
4166
4167 for_each_runnable_thread(i, vcpu, vc) {
Nicholas Pigginecb6a722021-11-23 19:52:28 +10004168 if (kvmppc_vcpu_check_block(vcpu))
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004169 return 1;
4170 }
4171
4172 return 0;
4173}
4174
Paul Mackerras19ccb762011-07-23 17:42:46 +10004175/*
4176 * All the vcpus in this vcore are idle, so wait for a decrementer
4177 * or external interrupt to one of the vcpus. vc->lock is held.
4178 */
4179static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
4180{
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004181 ktime_t cur, start_poll, start_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004182 int do_sleep = 1;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004183 u64 block_ns;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11004184
Nicholas Pigginecb6a722021-11-23 19:52:28 +10004185 WARN_ON_ONCE(cpu_has_feature(CPU_FTR_ARCH_300));
4186
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004187 /* Poll for pending exceptions and ceded state */
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004188 cur = start_poll = ktime_get();
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004189 if (vc->halt_poll_ns) {
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004190 ktime_t stop = ktime_add_ns(start_poll, vc->halt_poll_ns);
Jing Zhang0193cc92021-06-18 22:27:03 +00004191 ++vc->runner->stat.generic.halt_attempted_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004192
4193 vc->vcore_state = VCORE_POLLING;
4194 spin_unlock(&vc->lock);
4195
4196 do {
4197 if (kvmppc_vcore_check_block(vc)) {
4198 do_sleep = 0;
4199 break;
4200 }
4201 cur = ktime_get();
Wanpeng Li6bd5b742021-05-18 05:00:31 -07004202 } while (kvm_vcpu_can_poll(cur, stop));
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004203
4204 spin_lock(&vc->lock);
4205 vc->vcore_state = VCORE_INACTIVE;
4206
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004207 if (!do_sleep) {
Jing Zhang0193cc92021-06-18 22:27:03 +00004208 ++vc->runner->stat.generic.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004209 goto out;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004210 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004211 }
4212
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004213 prepare_to_rcuwait(&vc->wait);
4214 set_current_state(TASK_INTERRUPTIBLE);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004215 if (kvmppc_vcore_check_block(vc)) {
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004216 finish_rcuwait(&vc->wait);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004217 do_sleep = 0;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004218 /* If we polled, count this as a successful poll */
4219 if (vc->halt_poll_ns)
Jing Zhang0193cc92021-06-18 22:27:03 +00004220 ++vc->runner->stat.generic.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004221 goto out;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11004222 }
4223
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004224 start_wait = ktime_get();
4225
Paul Mackerras19ccb762011-07-23 17:42:46 +10004226 vc->vcore_state = VCORE_SLEEPING;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004227 trace_kvmppc_vcore_blocked(vc, 0);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004228 spin_unlock(&vc->lock);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004229 schedule();
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004230 finish_rcuwait(&vc->wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004231 spin_lock(&vc->lock);
4232 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004233 trace_kvmppc_vcore_blocked(vc, 1);
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004234 ++vc->runner->stat.halt_successful_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004235
4236 cur = ktime_get();
4237
4238out:
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004239 block_ns = ktime_to_ns(cur) - ktime_to_ns(start_poll);
4240
4241 /* Attribute wait time */
4242 if (do_sleep) {
Jing Zhang87bcc5f2021-08-02 16:56:32 +00004243 vc->runner->stat.generic.halt_wait_ns +=
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004244 ktime_to_ns(cur) - ktime_to_ns(start_wait);
Jing Zhang8ccba532021-08-02 16:56:33 +00004245 KVM_STATS_LOG_HIST_UPDATE(
4246 vc->runner->stat.generic.halt_wait_hist,
4247 ktime_to_ns(cur) - ktime_to_ns(start_wait));
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004248 /* Attribute failed poll time */
Jing Zhang8ccba532021-08-02 16:56:33 +00004249 if (vc->halt_poll_ns) {
Jing Zhang0193cc92021-06-18 22:27:03 +00004250 vc->runner->stat.generic.halt_poll_fail_ns +=
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004251 ktime_to_ns(start_wait) -
4252 ktime_to_ns(start_poll);
Jing Zhang8ccba532021-08-02 16:56:33 +00004253 KVM_STATS_LOG_HIST_UPDATE(
4254 vc->runner->stat.generic.halt_poll_fail_hist,
4255 ktime_to_ns(start_wait) -
4256 ktime_to_ns(start_poll));
4257 }
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004258 } else {
4259 /* Attribute successful poll time */
Jing Zhang8ccba532021-08-02 16:56:33 +00004260 if (vc->halt_poll_ns) {
Jing Zhang0193cc92021-06-18 22:27:03 +00004261 vc->runner->stat.generic.halt_poll_success_ns +=
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004262 ktime_to_ns(cur) -
4263 ktime_to_ns(start_poll);
Jing Zhang8ccba532021-08-02 16:56:33 +00004264 KVM_STATS_LOG_HIST_UPDATE(
4265 vc->runner->stat.generic.halt_poll_success_hist,
4266 ktime_to_ns(cur) - ktime_to_ns(start_poll));
4267 }
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004268 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004269
4270 /* Adjust poll time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11004271 if (halt_poll_ns) {
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004272 if (block_ns <= vc->halt_poll_ns)
4273 ;
4274 /* We slept and blocked for longer than the max halt time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11004275 else if (vc->halt_poll_ns && block_ns > halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004276 shrink_halt_poll_ns(vc);
4277 /* We slept and our poll time is too small */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11004278 else if (vc->halt_poll_ns < halt_poll_ns &&
4279 block_ns < halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004280 grow_halt_poll_ns(vc);
Suraj Jitindar Singhe03f3922016-10-14 11:53:21 +11004281 if (vc->halt_poll_ns > halt_poll_ns)
4282 vc->halt_poll_ns = halt_poll_ns;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004283 } else
4284 vc->halt_poll_ns = 0;
4285
4286 trace_kvmppc_vcore_wakeup(do_sleep, block_ns);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004287}
4288
Paul Mackerras360cae32018-10-08 16:31:04 +11004289/*
4290 * This never fails for a radix guest, as none of the operations it does
4291 * for a radix guest can fail or have a way to report failure.
Paul Mackerras360cae32018-10-08 16:31:04 +11004292 */
Paul Mackerras432953b2017-11-09 15:37:10 +11004293static int kvmhv_setup_mmu(struct kvm_vcpu *vcpu)
4294{
4295 int r = 0;
4296 struct kvm *kvm = vcpu->kvm;
4297
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004298 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11004299 if (!kvm->arch.mmu_ready) {
4300 if (!kvm_is_radix(kvm))
4301 r = kvmppc_hv_setup_htab_rma(vcpu);
4302 if (!r) {
4303 if (cpu_has_feature(CPU_FTR_ARCH_300))
4304 kvmppc_setup_partition_table(kvm);
4305 kvm->arch.mmu_ready = 1;
4306 }
4307 }
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004308 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11004309 return r;
4310}
4311
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004312static int kvmppc_run_vcpu(struct kvm_vcpu *vcpu)
Paul Mackerras19ccb762011-07-23 17:42:46 +10004313{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004314 struct kvm_run *run = vcpu->run;
Paul Mackerras38c53af2017-11-08 14:44:04 +11004315 int n_ceded, i, r;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004316 struct kvmppc_vcore *vc;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004317 struct kvm_vcpu *v;
Paul Mackerras9e368f22011-06-29 00:40:08 +00004318
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004319 trace_kvmppc_run_vcpu_enter(vcpu);
4320
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004321 run->exit_reason = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004322 vcpu->arch.ret = RESUME_GUEST;
4323 vcpu->arch.trap = 0;
Paul Mackerras2f12f032012-10-15 01:17:17 +00004324 kvmppc_update_vpas(vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004325
Paul Mackerras371fefd2011-06-29 00:23:08 +00004326 /*
4327 * Synchronize with other threads in this virtual core
4328 */
4329 vc = vcpu->arch.vcore;
4330 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004331 vcpu->arch.ceded = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004332 vcpu->arch.run_task = current;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004333 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
Paul Mackerras19ccb762011-07-23 17:42:46 +10004334 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004335 vcpu->arch.busy_preempt = TB_NIL;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004336 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004337 ++vc->n_runnable;
4338
Paul Mackerras19ccb762011-07-23 17:42:46 +10004339 /*
4340 * This happens the first time this is called for a vcpu.
4341 * If the vcore is already running, we may be able to start
4342 * this thread straight away and have it join in.
4343 */
Paul Mackerras8455d792012-10-15 01:17:42 +00004344 if (!signal_pending(current)) {
Paul Mackerrasc0093f12017-11-20 16:12:25 +11004345 if ((vc->vcore_state == VCORE_PIGGYBACK ||
4346 vc->vcore_state == VCORE_RUNNING) &&
Paul Mackerrasec257162015-06-24 21:18:03 +10004347 !VCORE_IS_EXITING(vc)) {
Paul Mackerras2f12f032012-10-15 01:17:17 +00004348 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10004349 kvmppc_start_thread(vcpu, vc);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004350 trace_kvm_guest_enter(vcpu);
Paul Mackerras8455d792012-10-15 01:17:42 +00004351 } else if (vc->vcore_state == VCORE_SLEEPING) {
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004352 rcuwait_wake_up(&vc->wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004353 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00004354
Paul Mackerras8455d792012-10-15 01:17:42 +00004355 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10004356
4357 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
4358 !signal_pending(current)) {
Paul Mackerras072df812017-11-09 14:30:24 +11004359 /* See if the MMU is ready to go */
4360 if (!vcpu->kvm->arch.mmu_ready) {
Paul Mackerras38c53af2017-11-08 14:44:04 +11004361 spin_unlock(&vc->lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11004362 r = kvmhv_setup_mmu(vcpu);
Paul Mackerras38c53af2017-11-08 14:44:04 +11004363 spin_lock(&vc->lock);
4364 if (r) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004365 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4366 run->fail_entry.
Paul Mackerras432953b2017-11-09 15:37:10 +11004367 hardware_entry_failure_reason = 0;
Paul Mackerras38c53af2017-11-08 14:44:04 +11004368 vcpu->arch.ret = r;
4369 break;
4370 }
4371 }
4372
Paul Mackerrasec257162015-06-24 21:18:03 +10004373 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
4374 kvmppc_vcore_end_preempt(vc);
4375
Paul Mackerras8455d792012-10-15 01:17:42 +00004376 if (vc->vcore_state != VCORE_INACTIVE) {
Paul Mackerrasec257162015-06-24 21:18:03 +10004377 kvmppc_wait_for_exec(vc, vcpu, TASK_INTERRUPTIBLE);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004378 continue;
4379 }
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004380 for_each_runnable_thread(i, v, vc) {
Scott Wood7e28e60e2011-11-08 18:23:20 -06004381 kvmppc_core_prepare_to_enter(v);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004382 if (signal_pending(v->arch.run_task)) {
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004383 kvmppc_remove_runnable(vc, v, mftb());
Paul Mackerras19ccb762011-07-23 17:42:46 +10004384 v->stat.signal_exits++;
Tianjia Zhang2610a572020-04-27 12:35:10 +08004385 v->run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004386 v->arch.ret = -EINTR;
4387 wake_up(&v->arch.cpu_run);
4388 }
4389 }
Paul Mackerras8455d792012-10-15 01:17:42 +00004390 if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
4391 break;
Paul Mackerras8455d792012-10-15 01:17:42 +00004392 n_ceded = 0;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004393 for_each_runnable_thread(i, v, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10004394 if (!kvmppc_vcpu_woken(v))
Paul Mackerras8455d792012-10-15 01:17:42 +00004395 n_ceded += v->arch.ceded;
Paul Mackerras4619ac82013-04-17 20:31:41 +00004396 else
4397 v->arch.ceded = 0;
4398 }
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004399 vc->runner = vcpu;
4400 if (n_ceded == vc->n_runnable) {
Paul Mackerras8455d792012-10-15 01:17:42 +00004401 kvmppc_vcore_blocked(vc);
Konstantin Khlebnikovc56dadf2015-07-15 12:52:03 +03004402 } else if (need_resched()) {
Paul Mackerrasec257162015-06-24 21:18:03 +10004403 kvmppc_vcore_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004404 /* Let something else run */
4405 cond_resched_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10004406 if (vc->vcore_state == VCORE_PREEMPT)
4407 kvmppc_vcore_end_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004408 } else {
Paul Mackerras8455d792012-10-15 01:17:42 +00004409 kvmppc_run_core(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004410 }
Paul Mackerras0456ec42012-02-03 00:56:21 +00004411 vc->runner = NULL;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004412 }
4413
Paul Mackerras8455d792012-10-15 01:17:42 +00004414 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
4415 (vc->vcore_state == VCORE_RUNNING ||
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004416 vc->vcore_state == VCORE_EXITING ||
4417 vc->vcore_state == VCORE_PIGGYBACK))
Paul Mackerrasec257162015-06-24 21:18:03 +10004418 kvmppc_wait_for_exec(vc, vcpu, TASK_UNINTERRUPTIBLE);
Paul Mackerras8455d792012-10-15 01:17:42 +00004419
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004420 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
4421 kvmppc_vcore_end_preempt(vc);
4422
Paul Mackerras8455d792012-10-15 01:17:42 +00004423 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004424 kvmppc_remove_runnable(vc, vcpu, mftb());
Paul Mackerras8455d792012-10-15 01:17:42 +00004425 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004426 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras8455d792012-10-15 01:17:42 +00004427 vcpu->arch.ret = -EINTR;
4428 }
4429
4430 if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) {
4431 /* Wake up some vcpu to run the core */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004432 i = -1;
4433 v = next_runnable_thread(vc, &i);
Paul Mackerras8455d792012-10-15 01:17:42 +00004434 wake_up(&v->arch.cpu_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004435 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00004436
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004437 trace_kvmppc_run_vcpu_exit(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004438 spin_unlock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004439 return vcpu->arch.ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004440}
4441
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004442int kvmhv_run_single_vcpu(struct kvm_vcpu *vcpu, u64 time_limit,
Paul Mackerras360cae32018-10-08 16:31:04 +11004443 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11004444{
Sean Christopherson63fa47b2021-12-13 17:45:56 +00004445 struct rcuwait *wait = kvm_arch_vcpu_get_wait(vcpu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004446 struct kvm_run *run = vcpu->run;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11004447 int trap, r, pcpu;
Nicholas Piggin48013cb2021-05-28 19:07:32 +10004448 int srcu_idx;
Paul Mackerras95a64322018-10-08 16:30:55 +11004449 struct kvmppc_vcore *vc;
4450 struct kvm *kvm = vcpu->kvm;
Paul Mackerras360cae32018-10-08 16:31:04 +11004451 struct kvm_nested_guest *nested = vcpu->arch.nested;
Nicholas Piggin2251fbe2021-11-23 19:51:58 +10004452 unsigned long flags;
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004453 u64 tb;
Paul Mackerras95a64322018-10-08 16:30:55 +11004454
4455 trace_kvmppc_run_vcpu_enter(vcpu);
4456
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004457 run->exit_reason = 0;
Paul Mackerras95a64322018-10-08 16:30:55 +11004458 vcpu->arch.ret = RESUME_GUEST;
4459 vcpu->arch.trap = 0;
4460
4461 vc = vcpu->arch.vcore;
4462 vcpu->arch.ceded = 0;
4463 vcpu->arch.run_task = current;
Paul Mackerras95a64322018-10-08 16:30:55 +11004464 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerras95a64322018-10-08 16:30:55 +11004465 vcpu->arch.last_inst = KVM_INST_FETCH_FAILED;
Paul Mackerras95a64322018-10-08 16:30:55 +11004466
4467 /* See if the MMU is ready to go */
Nicholas Piggin4c9a6892021-11-23 19:52:26 +10004468 if (unlikely(!kvm->arch.mmu_ready)) {
Nicholas Piggin079a09a2021-05-28 19:07:50 +10004469 r = kvmhv_setup_mmu(vcpu);
4470 if (r) {
4471 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4472 run->fail_entry.hardware_entry_failure_reason = 0;
4473 vcpu->arch.ret = r;
4474 return r;
4475 }
4476 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004477
4478 if (need_resched())
4479 cond_resched();
4480
4481 kvmppc_update_vpas(vcpu);
4482
Paul Mackerras95a64322018-10-08 16:30:55 +11004483 preempt_disable();
4484 pcpu = smp_processor_id();
Nicholas Piggin079a09a2021-05-28 19:07:50 +10004485 if (kvm_is_radix(kvm))
4486 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004487
Nicholas Piggin2251fbe2021-11-23 19:51:58 +10004488 /* flags save not required, but irq_pmu has no disable/enable API */
4489 powerpc_local_irq_pmu_save(flags);
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004490
Paul Mackerras95a64322018-10-08 16:30:55 +11004491 if (signal_pending(current))
4492 goto sigpend;
Nicholas Piggin2251fbe2021-11-23 19:51:58 +10004493 if (need_resched() || !kvm->arch.mmu_ready)
Paul Mackerras95a64322018-10-08 16:30:55 +11004494 goto out;
4495
Paul Mackerras360cae32018-10-08 16:31:04 +11004496 if (!nested) {
4497 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11004498 if (test_bit(BOOK3S_IRQPRIO_EXTERNAL,
4499 &vcpu->arch.pending_exceptions))
4500 lpcr |= LPCR_MER;
4501 } else if (vcpu->arch.pending_exceptions ||
4502 vcpu->arch.doorbell_request ||
4503 xive_interrupt_pending(vcpu)) {
4504 vcpu->arch.ret = RESUME_HOST;
4505 goto out;
4506 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004507
Nicholas Pigginecb6a722021-11-23 19:52:28 +10004508 if (vcpu->arch.timer_running) {
4509 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
4510 vcpu->arch.timer_running = 0;
4511 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004512
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004513 tb = mftb();
4514
Nicholas Pigginecb6a722021-11-23 19:52:28 +10004515 vcpu->cpu = pcpu;
4516 vcpu->arch.thread_cpu = pcpu;
4517 vc->pcpu = pcpu;
4518 local_paca->kvm_hstate.kvm_vcpu = vcpu;
4519 local_paca->kvm_hstate.ptid = 0;
4520 local_paca->kvm_hstate.fake_suspend = 0;
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004521
Nicholas Piggin617326f2021-11-23 19:52:29 +10004522 __kvmppc_create_dtl_entry(vcpu, pcpu, tb + vc->tb_offset, 0);
Paul Mackerras95a64322018-10-08 16:30:55 +11004523
Paul Mackerras95a64322018-10-08 16:30:55 +11004524 trace_kvm_guest_enter(vcpu);
4525
Paul Mackerras95a64322018-10-08 16:30:55 +11004526 guest_enter_irqoff();
4527
4528 srcu_idx = srcu_read_lock(&kvm->srcu);
4529
4530 this_cpu_disable_ftrace();
4531
Paul Mackerras1b28d552019-05-28 15:01:59 +10004532 /* Tell lockdep that we're about to enable interrupts */
4533 trace_hardirqs_on();
4534
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004535 trap = kvmhv_p9_guest_entry(vcpu, time_limit, lpcr, &tb);
Paul Mackerras95a64322018-10-08 16:30:55 +11004536 vcpu->arch.trap = trap;
4537
Paul Mackerras1b28d552019-05-28 15:01:59 +10004538 trace_hardirqs_off();
4539
Paul Mackerras95a64322018-10-08 16:30:55 +11004540 this_cpu_enable_ftrace();
4541
4542 srcu_read_unlock(&kvm->srcu, srcu_idx);
4543
Paul Mackerras95a64322018-10-08 16:30:55 +11004544 set_irq_happened(trap);
4545
Laurent Vivier235cee12021-10-28 00:21:50 +10004546 context_tracking_guest_exit();
4547 if (!vtime_accounting_enabled_this_cpu()) {
4548 local_irq_enable();
4549 /*
4550 * Service IRQs here before vtime_account_guest_exit() so any
4551 * ticks that occurred while running the guest are accounted to
4552 * the guest. If vtime accounting is enabled, accounting uses
4553 * TB rather than ticks, so it can be done without enabling
4554 * interrupts here, which has the problem that it accounts
4555 * interrupt processing overhead to the host.
4556 */
4557 local_irq_disable();
4558 }
4559 vtime_account_guest_exit();
Nicholas Piggin11266522021-01-30 23:08:12 +10004560
Nicholas Pigginecb6a722021-11-23 19:52:28 +10004561 vcpu->cpu = -1;
4562 vcpu->arch.thread_cpu = -1;
Paul Mackerras95a64322018-10-08 16:30:55 +11004563
Nicholas Piggin2251fbe2021-11-23 19:51:58 +10004564 powerpc_local_irq_pmu_restore(flags);
Paul Mackerras95a64322018-10-08 16:30:55 +11004565
4566 preempt_enable();
4567
Suraj Jitindar Singh3c25ab32019-06-20 11:46:51 +10004568 /*
4569 * cancel pending decrementer exception if DEC is now positive, or if
4570 * entering a nested guest in which case the decrementer is now owned
4571 * by L2 and the L1 decrementer is provided in hdec_expires
4572 */
4573 if (kvmppc_core_pending_dec(vcpu) &&
Nicholas Piggincb2553a2021-11-23 19:52:02 +10004574 ((tb < kvmppc_dec_expires_host_tb(vcpu)) ||
Suraj Jitindar Singh3c25ab32019-06-20 11:46:51 +10004575 (trap == BOOK3S_INTERRUPT_SYSCALL &&
4576 kvmppc_get_gpr(vcpu, 3) == H_ENTER_NESTED)))
Paul Mackerras95a64322018-10-08 16:30:55 +11004577 kvmppc_core_dequeue_dec(vcpu);
4578
4579 trace_kvm_guest_exit(vcpu);
4580 r = RESUME_GUEST;
Paul Mackerras360cae32018-10-08 16:31:04 +11004581 if (trap) {
4582 if (!nested)
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004583 r = kvmppc_handle_exit_hv(vcpu, current);
Paul Mackerras360cae32018-10-08 16:31:04 +11004584 else
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004585 r = kvmppc_handle_nested_exit(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11004586 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004587 vcpu->arch.ret = r;
4588
Nicholas Pigginecb6a722021-11-23 19:52:28 +10004589 if (is_kvmppc_resume_guest(r) && !kvmppc_vcpu_check_block(vcpu)) {
Paul Mackerras95a64322018-10-08 16:30:55 +11004590 kvmppc_set_timer(vcpu);
Nicholas Pigginecb6a722021-11-23 19:52:28 +10004591
Sean Christopherson63fa47b2021-12-13 17:45:56 +00004592 prepare_to_rcuwait(wait);
Nicholas Pigginecb6a722021-11-23 19:52:28 +10004593 for (;;) {
4594 set_current_state(TASK_INTERRUPTIBLE);
Paul Mackerras95a64322018-10-08 16:30:55 +11004595 if (signal_pending(current)) {
4596 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004597 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras95a64322018-10-08 16:30:55 +11004598 vcpu->arch.ret = -EINTR;
4599 break;
4600 }
Nicholas Pigginecb6a722021-11-23 19:52:28 +10004601
4602 if (kvmppc_vcpu_check_block(vcpu))
4603 break;
4604
4605 trace_kvmppc_vcore_blocked(vc, 0);
4606 schedule();
4607 trace_kvmppc_vcore_blocked(vc, 1);
Paul Mackerras95a64322018-10-08 16:30:55 +11004608 }
Sean Christopherson63fa47b2021-12-13 17:45:56 +00004609 finish_rcuwait(wait);
Paul Mackerras95a64322018-10-08 16:30:55 +11004610 }
4611 vcpu->arch.ceded = 0;
4612
Paul Mackerras95a64322018-10-08 16:30:55 +11004613 done:
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004614 trace_kvmppc_run_vcpu_exit(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004615
4616 return vcpu->arch.ret;
4617
4618 sigpend:
4619 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004620 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras95a64322018-10-08 16:30:55 +11004621 vcpu->arch.ret = -EINTR;
4622 out:
Nicholas Piggin2251fbe2021-11-23 19:51:58 +10004623 powerpc_local_irq_pmu_restore(flags);
Paul Mackerras95a64322018-10-08 16:30:55 +11004624 preempt_enable();
4625 goto done;
4626}
4627
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004628static int kvmppc_vcpu_run_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004629{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004630 struct kvm_run *run = vcpu->run;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004631 int r;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004632 int srcu_idx;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004633 struct kvm *kvm;
Nicholas Piggin34e119c92021-11-23 19:51:57 +10004634 unsigned long msr;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004635
Alexander Grafaf8f38b2011-08-10 13:57:08 +02004636 if (!vcpu->arch.sane) {
4637 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4638 return -EINVAL;
4639 }
4640
Nicholas Piggin34e119c92021-11-23 19:51:57 +10004641 /* No need to go into the guest when all we'll do is come back out */
4642 if (signal_pending(current)) {
4643 run->exit_reason = KVM_EXIT_INTR;
4644 return -EINTR;
4645 }
4646
4647#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Paul Mackerras46a704f2017-06-15 16:10:27 +10004648 /*
4649 * Don't allow entry with a suspended transaction, because
4650 * the guest entry/exit code will lose it.
Paul Mackerras46a704f2017-06-15 16:10:27 +10004651 */
Paul Mackerras46a704f2017-06-15 16:10:27 +10004652 if (cpu_has_feature(CPU_FTR_TM) && current->thread.regs &&
4653 (current->thread.regs->msr & MSR_TM)) {
4654 if (MSR_TM_ACTIVE(current->thread.regs->msr)) {
4655 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4656 run->fail_entry.hardware_entry_failure_reason = 0;
4657 return -EINVAL;
4658 }
Paul Mackerras46a704f2017-06-15 16:10:27 +10004659 }
4660#endif
4661
Paul Mackerras7aa15842018-04-20 19:53:22 +10004662 /*
4663 * Force online to 1 for the sake of old userspace which doesn't
4664 * set it.
4665 */
4666 if (!vcpu->arch.online) {
4667 atomic_inc(&vcpu->arch.vcore->online_count);
4668 vcpu->arch.online = 1;
4669 }
4670
Scott Wood25051b5a2011-11-08 18:23:23 -06004671 kvmppc_core_prepare_to_enter(vcpu);
4672
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004673 kvm = vcpu->kvm;
4674 atomic_inc(&kvm->arch.vcpus_running);
4675 /* Order vcpus_running vs. mmu_ready, see kvmppc_alloc_reset_hpt */
Paul Mackerras32fad282012-05-04 02:32:53 +00004676 smp_mb();
4677
Nicholas Piggin34e119c92021-11-23 19:51:57 +10004678 msr = 0;
4679 if (IS_ENABLED(CONFIG_PPC_FPU))
4680 msr |= MSR_FP;
4681 if (cpu_has_feature(CPU_FTR_ALTIVEC))
4682 msr |= MSR_VEC;
4683 if (cpu_has_feature(CPU_FTR_VSX))
4684 msr |= MSR_VSX;
Nicholas Piggin022ecb92021-11-23 19:52:15 +10004685 if ((cpu_has_feature(CPU_FTR_TM) ||
4686 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST)) &&
4687 (vcpu->arch.hfscr & HFSCR_TM))
Nicholas Piggin34e119c92021-11-23 19:51:57 +10004688 msr |= MSR_TM;
4689 msr = msr_check_and_set(msr);
Anton Blanchard579e6332015-10-29 11:44:09 +11004690
Nicholas Piggin34e119c92021-11-23 19:51:57 +10004691 kvmppc_save_user_regs();
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004692
Nicholas Piggin52367562021-11-23 19:52:16 +10004693 kvmppc_save_current_sprs();
Paul Mackerras19ccb762011-07-23 17:42:46 +10004694
Nicholas Pigginecb6a722021-11-23 19:52:28 +10004695 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4696 vcpu->arch.waitp = &vcpu->arch.vcore->wait;
Leonardo Bras8a9c8922019-11-26 19:36:30 -03004697 vcpu->arch.pgdir = kvm->mm->pgd;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004698 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004699
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004700 do {
Nicholas Piggin0bf7e1b2021-05-28 19:07:51 +10004701 if (cpu_has_feature(CPU_FTR_ARCH_300))
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004702 r = kvmhv_run_single_vcpu(vcpu, ~(u64)0,
Paul Mackerras360cae32018-10-08 16:31:04 +11004703 vcpu->arch.vcore->lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004704 else
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004705 r = kvmppc_run_vcpu(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004706
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10004707 if (run->exit_reason == KVM_EXIT_PAPR_HCALL) {
4708 if (WARN_ON_ONCE(vcpu->arch.shregs.msr & MSR_PR)) {
4709 /*
4710 * These should have been caught reflected
4711 * into the guest by now. Final sanity check:
4712 * don't allow userspace to execute hcalls in
4713 * the hypervisor.
4714 */
4715 r = RESUME_GUEST;
4716 continue;
4717 }
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004718 trace_kvm_hcall_enter(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004719 r = kvmppc_pseries_do_hcall(vcpu);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004720 trace_kvm_hcall_exit(vcpu, r);
Scott Wood7e28e60e2011-11-08 18:23:20 -06004721 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004722 } else if (r == RESUME_PAGE_FAULT) {
Paul Mackerras432953b2017-11-09 15:37:10 +11004723 srcu_idx = srcu_read_lock(&kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004724 r = kvmppc_book3s_hv_page_fault(vcpu,
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004725 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
Paul Mackerras432953b2017-11-09 15:37:10 +11004726 srcu_read_unlock(&kvm->srcu, srcu_idx);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004727 } else if (r == RESUME_PASSTHROUGH) {
Paul Mackerras03f95332019-02-04 22:07:20 +11004728 if (WARN_ON(xics_on_xive()))
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004729 r = H_SUCCESS;
4730 else
4731 r = kvmppc_xics_rm_complete(vcpu, 0);
4732 }
Greg Kurze59d24e2014-02-06 17:36:56 +01004733 } while (is_kvmppc_resume_guest(r));
Paul Mackerras32fad282012-05-04 02:32:53 +00004734
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004735 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras432953b2017-11-09 15:37:10 +11004736 atomic_dec(&kvm->arch.vcpus_running);
Nicholas Piggin59dc5bf2021-06-18 01:51:03 +10004737
4738 srr_regs_clobbered();
4739
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004740 return r;
4741}
4742
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004743static void kvmppc_add_seg_page_size(struct kvm_ppc_one_seg_page_size **sps,
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004744 int shift, int sllp)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004745{
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004746 (*sps)->page_shift = shift;
4747 (*sps)->slb_enc = sllp;
4748 (*sps)->enc[0].page_shift = shift;
4749 (*sps)->enc[0].pte_enc = kvmppc_pgsize_lp_encoding(shift, shift);
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304750 /*
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004751 * Add 16MB MPSS support (may get filtered out by userspace)
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304752 */
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004753 if (shift != 24) {
4754 int penc = kvmppc_pgsize_lp_encoding(shift, 24);
4755 if (penc != -1) {
4756 (*sps)->enc[1].page_shift = 24;
4757 (*sps)->enc[1].pte_enc = penc;
4758 }
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304759 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004760 (*sps)++;
4761}
4762
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304763static int kvm_vm_ioctl_get_smmu_info_hv(struct kvm *kvm,
4764 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004765{
4766 struct kvm_ppc_one_seg_page_size *sps;
4767
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004768 /*
Paul Mackerrase3bfed12017-08-25 19:53:39 +10004769 * POWER7, POWER8 and POWER9 all support 32 storage keys for data.
4770 * POWER7 doesn't support keys for instruction accesses,
4771 * POWER8 and POWER9 do.
4772 */
4773 info->data_keys = 32;
4774 info->instr_keys = cpu_has_feature(CPU_FTR_ARCH_207S) ? 32 : 0;
4775
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004776 /* POWER7, 8 and 9 all have 1T segments and 32-entry SLB */
4777 info->flags = KVM_PPC_PAGE_SIZES_REAL | KVM_PPC_1T_SEGMENTS;
4778 info->slb_size = 32;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004779
4780 /* We only support these sizes for now, and no muti-size segments */
4781 sps = &info->sps[0];
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004782 kvmppc_add_seg_page_size(&sps, 12, 0);
4783 kvmppc_add_seg_page_size(&sps, 16, SLB_VSID_L | SLB_VSID_LP_01);
4784 kvmppc_add_seg_page_size(&sps, 24, SLB_VSID_L);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004785
Paul Mackerras901f8c32018-10-08 14:24:30 +11004786 /* If running as a nested hypervisor, we don't support HPT guests */
4787 if (kvmhv_on_pseries())
4788 info->flags |= KVM_PPC_NO_HASH;
4789
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004790 return 0;
4791}
4792
Paul Mackerras82ed3612011-12-15 02:03:22 +00004793/*
4794 * Get (and clear) the dirty memory log for a memory slot.
4795 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304796static int kvm_vm_ioctl_get_dirty_log_hv(struct kvm *kvm,
4797 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004798{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004799 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004800 struct kvm_memory_slot *memslot;
Marc Zyngier46808a42021-11-16 16:04:02 +00004801 int r;
4802 unsigned long n, i;
Paul Mackerrase641a312017-10-26 16:39:19 +11004803 unsigned long *buf, *p;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004804 struct kvm_vcpu *vcpu;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004805
4806 mutex_lock(&kvm->slots_lock);
4807
4808 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07004809 if (log->slot >= KVM_USER_MEM_SLOTS)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004810 goto out;
4811
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004812 slots = kvm_memslots(kvm);
4813 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004814 r = -ENOENT;
Sean Christopherson0577d1a2020-02-18 13:07:31 -08004815 if (!memslot || !memslot->dirty_bitmap)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004816 goto out;
4817
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004818 /*
Paul Mackerrase641a312017-10-26 16:39:19 +11004819 * Use second half of bitmap area because both HPT and radix
4820 * accumulate bits in the first half.
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004821 */
Paul Mackerras82ed3612011-12-15 02:03:22 +00004822 n = kvm_dirty_bitmap_bytes(memslot);
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004823 buf = memslot->dirty_bitmap + n / sizeof(long);
4824 memset(buf, 0, n);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004825
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004826 if (kvm_is_radix(kvm))
4827 r = kvmppc_hv_get_dirty_log_radix(kvm, memslot, buf);
4828 else
4829 r = kvmppc_hv_get_dirty_log_hpt(kvm, memslot, buf);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004830 if (r)
4831 goto out;
4832
Paul Mackerrase641a312017-10-26 16:39:19 +11004833 /*
4834 * We accumulate dirty bits in the first half of the
4835 * memslot's dirty_bitmap area, for when pages are paged
4836 * out or modified by the host directly. Pick up these
4837 * bits and add them to the map.
4838 */
4839 p = memslot->dirty_bitmap;
4840 for (i = 0; i < n / sizeof(long); ++i)
4841 buf[i] |= xchg(&p[i], 0);
4842
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004843 /* Harvest dirty bits from VPA and DTL updates */
4844 /* Note: we never modify the SLB shadow buffer areas */
4845 kvm_for_each_vcpu(i, vcpu, kvm) {
4846 spin_lock(&vcpu->arch.vpa_update_lock);
4847 kvmppc_harvest_vpa_dirty(&vcpu->arch.vpa, memslot, buf);
4848 kvmppc_harvest_vpa_dirty(&vcpu->arch.dtl, memslot, buf);
4849 spin_unlock(&vcpu->arch.vpa_update_lock);
4850 }
4851
Paul Mackerras82ed3612011-12-15 02:03:22 +00004852 r = -EFAULT;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004853 if (copy_to_user(log->dirty_bitmap, buf, n))
Paul Mackerras82ed3612011-12-15 02:03:22 +00004854 goto out;
4855
4856 r = 0;
4857out:
4858 mutex_unlock(&kvm->slots_lock);
4859 return r;
4860}
4861
Sean Christophersone96c81e2020-02-18 13:07:27 -08004862static void kvmppc_core_free_memslot_hv(struct kvm_memory_slot *slot)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004863{
Sean Christophersone96c81e2020-02-18 13:07:27 -08004864 vfree(slot->arch.rmap);
4865 slot->arch.rmap = NULL;
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004866}
4867
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304868static int kvmppc_core_prepare_memory_region_hv(struct kvm *kvm,
Sean Christopherson537a17b2021-12-06 20:54:11 +01004869 const struct kvm_memory_slot *old,
4870 struct kvm_memory_slot *new,
4871 enum kvm_mr_change change)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004872{
Sean Christopherson82307e62020-02-18 13:07:18 -08004873 if (change == KVM_MR_CREATE) {
Paolo Bonzini5a213b92021-12-19 15:27:21 +01004874 unsigned long size = array_size(new->npages, sizeof(*new->arch.rmap));
Alexey Kardashevskiy511d25d2021-09-01 18:45:12 +10004875
4876 if ((size >> PAGE_SHIFT) > totalram_pages())
4877 return -ENOMEM;
4878
Paolo Bonzini5a213b92021-12-19 15:27:21 +01004879 new->arch.rmap = vzalloc(size);
Sean Christopherson537a17b2021-12-06 20:54:11 +01004880 if (!new->arch.rmap)
Sean Christopherson82307e62020-02-18 13:07:18 -08004881 return -ENOMEM;
Sean Christopherson537a17b2021-12-06 20:54:11 +01004882 } else if (change != KVM_MR_DELETE) {
4883 new->arch.rmap = old->arch.rmap;
Sean Christopherson82307e62020-02-18 13:07:18 -08004884 }
4885
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004886 return 0;
4887}
4888
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304889static void kvmppc_core_commit_memory_region_hv(struct kvm *kvm,
Sean Christopherson537a17b2021-12-06 20:54:11 +01004890 struct kvm_memory_slot *old,
Bharata B Raof032b732018-12-12 15:15:30 +11004891 const struct kvm_memory_slot *new,
4892 enum kvm_mr_change change)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004893{
Yongji Xiea56ee9f2016-11-04 13:55:12 +08004894 /*
Sean Christophersoneaaaed12021-12-06 20:54:14 +01004895 * If we are creating or modifying a memslot, it might make
Yongji Xiea56ee9f2016-11-04 13:55:12 +08004896 * some address that was previously cached as emulated
4897 * MMIO be no longer emulated MMIO, so invalidate
4898 * all the caches of emulated MMIO translations.
4899 */
Sean Christophersoneaaaed12021-12-06 20:54:14 +01004900 if (change != KVM_MR_DELETE)
Yongji Xiea56ee9f2016-11-04 13:55:12 +08004901 atomic64_inc(&kvm->arch.mmio_update);
Paul Mackerras5af3e9d2018-12-12 15:17:17 +11004902
4903 /*
4904 * For change == KVM_MR_MOVE or KVM_MR_DELETE, higher levels
4905 * have already called kvm_arch_flush_shadow_memslot() to
4906 * flush shadow mappings. For KVM_MR_CREATE we have no
4907 * previous mappings. So the only case to handle is
4908 * KVM_MR_FLAGS_ONLY when the KVM_MEM_LOG_DIRTY_PAGES bit
4909 * has been changed.
4910 * For radix guests, we flush on setting KVM_MEM_LOG_DIRTY_PAGES
4911 * to get rid of any THP PTEs in the partition-scoped page tables
4912 * so we can track dirtiness at the page level; we flush when
4913 * clearing KVM_MEM_LOG_DIRTY_PAGES so that we can go back to
4914 * using THP PTEs.
4915 */
4916 if (change == KVM_MR_FLAGS_ONLY && kvm_is_radix(kvm) &&
4917 ((new->flags ^ old->flags) & KVM_MEM_LOG_DIRTY_PAGES))
4918 kvmppc_radix_flush_memslot(kvm, old);
Bharata B Raoc3262252019-11-25 08:36:29 +05304919 /*
4920 * If UV hasn't yet called H_SVM_INIT_START, don't register memslots.
4921 */
4922 if (!kvm->arch.secure_guest)
4923 return;
4924
4925 switch (change) {
4926 case KVM_MR_CREATE:
Laurent Dufoura2ce7202020-07-27 11:07:18 -07004927 /*
4928 * @TODO kvmppc_uvmem_memslot_create() can fail and
4929 * return error. Fix this.
4930 */
4931 kvmppc_uvmem_memslot_create(kvm, new);
Bharata B Raoc3262252019-11-25 08:36:29 +05304932 break;
4933 case KVM_MR_DELETE:
Laurent Dufoura2ce7202020-07-27 11:07:18 -07004934 kvmppc_uvmem_memslot_delete(kvm, old);
Bharata B Raoc3262252019-11-25 08:36:29 +05304935 break;
4936 default:
4937 /* TODO: Handle KVM_MR_MOVE */
4938 break;
4939 }
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004940}
4941
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004942/*
4943 * Update LPCR values in kvm->arch and in vcores.
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004944 * Caller must hold kvm->arch.mmu_setup_lock (for mutual exclusion
4945 * of kvm->arch.lpcr update).
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004946 */
4947void kvmppc_update_lpcr(struct kvm *kvm, unsigned long lpcr, unsigned long mask)
4948{
4949 long int i;
4950 u32 cores_done = 0;
4951
4952 if ((kvm->arch.lpcr & mask) == lpcr)
4953 return;
4954
4955 kvm->arch.lpcr = (kvm->arch.lpcr & ~mask) | lpcr;
4956
4957 for (i = 0; i < KVM_MAX_VCORES; ++i) {
4958 struct kvmppc_vcore *vc = kvm->arch.vcores[i];
4959 if (!vc)
4960 continue;
Nicholas Piggin67145ef2021-04-12 11:48:36 +10004961
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004962 spin_lock(&vc->lock);
4963 vc->lpcr = (vc->lpcr & ~mask) | lpcr;
Nicholas Piggin67145ef2021-04-12 11:48:36 +10004964 verify_lpcr(kvm, vc->lpcr);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004965 spin_unlock(&vc->lock);
4966 if (++cores_done >= kvm->arch.online_vcores)
4967 break;
4968 }
4969}
4970
Paul Mackerrasded13fc2017-11-22 14:38:53 +11004971void kvmppc_setup_partition_table(struct kvm *kvm)
Paul Mackerras7a840842016-11-16 22:25:20 +11004972{
4973 unsigned long dw0, dw1;
4974
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004975 if (!kvm_is_radix(kvm)) {
4976 /* PS field - page size for VRMA */
4977 dw0 = ((kvm->arch.vrma_slb_v & SLB_VSID_L) >> 1) |
4978 ((kvm->arch.vrma_slb_v & SLB_VSID_LP) << 1);
4979 /* HTABSIZE and HTABORG fields */
4980 dw0 |= kvm->arch.sdr1;
Paul Mackerras7a840842016-11-16 22:25:20 +11004981
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004982 /* Second dword as set by userspace */
4983 dw1 = kvm->arch.process_table;
4984 } else {
4985 dw0 = PATB_HR | radix__get_tree_size() |
4986 __pa(kvm->arch.pgtable) | RADIX_PGD_INDEX_SIZE;
4987 dw1 = PATB_GR | kvm->arch.process_table;
4988 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004989 kvmhv_set_ptbl_entry(kvm->arch.lpid, dw0, dw1);
Paul Mackerras7a840842016-11-16 22:25:20 +11004990}
4991
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004992/*
4993 * Set up HPT (hashed page table) and RMA (real-mode area).
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004994 * Must be called with kvm->arch.mmu_setup_lock held.
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004995 */
Paul Mackerras32fad282012-05-04 02:32:53 +00004996static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004997{
4998 int err = 0;
4999 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005000 unsigned long hva;
5001 struct kvm_memory_slot *memslot;
5002 struct vm_area_struct *vma;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10005003 unsigned long lpcr = 0, senc;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005004 unsigned long psize, porder;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00005005 int srcu_idx;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005006
Paul Mackerras32fad282012-05-04 02:32:53 +00005007 /* Allocate hashed page table (if not done already) and reset it */
David Gibson3f9d4f52016-12-20 16:49:00 +11005008 if (!kvm->arch.hpt.virt) {
David Gibsonaae07772016-12-20 16:49:02 +11005009 int order = KVM_DEFAULT_HPT_ORDER;
5010 struct kvm_hpt_info info;
5011
5012 err = kvmppc_allocate_hpt(&info, order);
5013 /* If we get here, it means userspace didn't specify a
5014 * size explicitly. So, try successively smaller
5015 * sizes if the default failed. */
5016 while ((err == -ENOMEM) && --order >= PPC_MIN_HPT_ORDER)
5017 err = kvmppc_allocate_hpt(&info, order);
5018
5019 if (err < 0) {
Paul Mackerras32fad282012-05-04 02:32:53 +00005020 pr_err("KVM: Couldn't alloc HPT\n");
5021 goto out;
5022 }
David Gibsonaae07772016-12-20 16:49:02 +11005023
5024 kvmppc_set_hpt(kvm, &info);
Paul Mackerras32fad282012-05-04 02:32:53 +00005025 }
5026
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005027 /* Look up the memslot for guest physical address 0 */
Paul Mackerras2c9097e2012-09-11 13:27:01 +00005028 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005029 memslot = gfn_to_memslot(kvm, 0);
5030
5031 /* We must have some memory at 0 by now */
5032 err = -EINVAL;
5033 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
Paul Mackerras2c9097e2012-09-11 13:27:01 +00005034 goto out_srcu;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005035
5036 /* Look up the VMA for the start of this memory slot */
5037 hva = memslot->userspace_addr;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07005038 mmap_read_lock(kvm->mm);
Liam Howlett900c83f2021-06-28 19:39:05 -07005039 vma = vma_lookup(kvm->mm, hva);
5040 if (!vma || (vma->vm_flags & VM_IO))
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005041 goto up_out;
5042
5043 psize = vma_kernel_pagesize(vma);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005044
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07005045 mmap_read_unlock(kvm->mm);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005046
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11005047 /* We can handle 4k, 64k or 16M pages in the VRMA */
Paul Mackerrasdebd5742018-03-02 15:38:04 +11005048 if (psize >= 0x1000000)
5049 psize = 0x1000000;
5050 else if (psize >= 0x10000)
5051 psize = 0x10000;
5052 else
5053 psize = 0x1000;
5054 porder = __ilog2(psize);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005055
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11005056 senc = slb_pgsize_encoding(psize);
5057 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
5058 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11005059 /* Create HPTEs in the hash page table for the VRMA */
5060 kvmppc_map_vrma(vcpu, memslot, porder);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005061
Paul Mackerras7a840842016-11-16 22:25:20 +11005062 /* Update VRMASD field in the LPCR */
5063 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
5064 /* the -4 is to account for senc values starting at 0x10 */
5065 lpcr = senc << (LPCR_VRMASD_SH - 4);
5066 kvmppc_update_lpcr(kvm, lpcr, LPCR_VRMASD);
Paul Mackerras7a840842016-11-16 22:25:20 +11005067 }
Paul Mackerrasa0144e22013-09-20 14:52:38 +10005068
Paul Mackerras1b151ce2017-09-13 15:53:48 +10005069 /* Order updates to kvm->arch.lpcr etc. vs. mmu_ready */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005070 smp_wmb();
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005071 err = 0;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00005072 out_srcu:
5073 srcu_read_unlock(&kvm->srcu, srcu_idx);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005074 out:
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005075 return err;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005076
Paul Mackerrasc77162d2011-12-12 12:31:00 +00005077 up_out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07005078 mmap_read_unlock(kvm->mm);
Lai Jiangshan505d6422013-03-16 00:50:49 +08005079 goto out_srcu;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005080}
5081
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005082/*
5083 * Must be called with kvm->arch.mmu_setup_lock held and
5084 * mmu_ready = 0 and no vcpus running.
5085 */
Paul Mackerras18c36402017-09-13 16:00:10 +10005086int kvmppc_switch_mmu_to_hpt(struct kvm *kvm)
5087{
Nicholas Piggineacc8182021-11-23 19:51:46 +10005088 unsigned long lpcr, lpcr_mask;
5089
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005090 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005091 kvmhv_release_all_nested(kvm);
Paul Mackerras234ff0b2018-11-16 21:28:18 +11005092 kvmppc_rmap_reset(kvm);
5093 kvm->arch.process_table = 0;
Sean Christophersonb1c53562021-04-01 17:56:53 -07005094 /* Mutual exclusion with kvm_unmap_gfn_range etc. */
Paul Mackerras234ff0b2018-11-16 21:28:18 +11005095 spin_lock(&kvm->mmu_lock);
5096 kvm->arch.radix = 0;
5097 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005098 kvmppc_free_radix(kvm);
Nicholas Piggineacc8182021-11-23 19:51:46 +10005099
5100 lpcr = LPCR_VPM1;
5101 lpcr_mask = LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR;
5102 if (cpu_has_feature(CPU_FTR_ARCH_31))
5103 lpcr_mask |= LPCR_HAIL;
5104 kvmppc_update_lpcr(kvm, lpcr, lpcr_mask);
5105
Paul Mackerras18c36402017-09-13 16:00:10 +10005106 return 0;
5107}
5108
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005109/*
5110 * Must be called with kvm->arch.mmu_setup_lock held and
5111 * mmu_ready = 0 and no vcpus running.
5112 */
Paul Mackerras18c36402017-09-13 16:00:10 +10005113int kvmppc_switch_mmu_to_radix(struct kvm *kvm)
5114{
Nicholas Piggineacc8182021-11-23 19:51:46 +10005115 unsigned long lpcr, lpcr_mask;
Paul Mackerras18c36402017-09-13 16:00:10 +10005116 int err;
5117
5118 err = kvmppc_init_vm_radix(kvm);
5119 if (err)
5120 return err;
Paul Mackerras234ff0b2018-11-16 21:28:18 +11005121 kvmppc_rmap_reset(kvm);
Sean Christophersonb1c53562021-04-01 17:56:53 -07005122 /* Mutual exclusion with kvm_unmap_gfn_range etc. */
Paul Mackerras234ff0b2018-11-16 21:28:18 +11005123 spin_lock(&kvm->mmu_lock);
5124 kvm->arch.radix = 1;
5125 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005126 kvmppc_free_hpt(&kvm->arch.hpt);
Nicholas Piggineacc8182021-11-23 19:51:46 +10005127
5128 lpcr = LPCR_UPRT | LPCR_GTSE | LPCR_HR;
5129 lpcr_mask = LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR;
5130 if (cpu_has_feature(CPU_FTR_ARCH_31)) {
5131 lpcr_mask |= LPCR_HAIL;
5132 if (cpu_has_feature(CPU_FTR_HVMODE) &&
5133 (kvm->arch.host_lpcr & LPCR_HAIL))
5134 lpcr |= LPCR_HAIL;
5135 }
5136 kvmppc_update_lpcr(kvm, lpcr, lpcr_mask);
5137
Paul Mackerras18c36402017-09-13 16:00:10 +10005138 return 0;
5139}
5140
Suresh Warrier79b6c242015-12-17 14:59:06 -06005141#ifdef CONFIG_KVM_XICS
5142/*
5143 * Allocate a per-core structure for managing state about which cores are
5144 * running in the host versus the guest and for exchanging data between
5145 * real mode KVM and CPU running in the host.
5146 * This is only done for the first VM.
5147 * The allocated structure stays even if all VMs have stopped.
5148 * It is only freed when the kvm-hv module is unloaded.
5149 * It's OK for this routine to fail, we just don't support host
5150 * core operations like redirecting H_IPI wakeups.
5151 */
5152void kvmppc_alloc_host_rm_ops(void)
5153{
5154 struct kvmppc_host_rm_ops *ops;
5155 unsigned long l_ops;
5156 int cpu, core;
5157 int size;
5158
Nicholas Pigginecb6a722021-11-23 19:52:28 +10005159 if (cpu_has_feature(CPU_FTR_ARCH_300))
5160 return;
5161
Suresh Warrier79b6c242015-12-17 14:59:06 -06005162 /* Not the first time here ? */
5163 if (kvmppc_host_rm_ops_hv != NULL)
5164 return;
5165
5166 ops = kzalloc(sizeof(struct kvmppc_host_rm_ops), GFP_KERNEL);
5167 if (!ops)
5168 return;
5169
5170 size = cpu_nr_cores() * sizeof(struct kvmppc_host_rm_core);
5171 ops->rm_core = kzalloc(size, GFP_KERNEL);
5172
5173 if (!ops->rm_core) {
5174 kfree(ops);
5175 return;
5176 }
5177
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02005178 cpus_read_lock();
Suresh Warrier6f3bb802015-12-17 14:59:08 -06005179
Suresh Warrier79b6c242015-12-17 14:59:06 -06005180 for (cpu = 0; cpu < nr_cpu_ids; cpu += threads_per_core) {
5181 if (!cpu_online(cpu))
5182 continue;
5183
5184 core = cpu >> threads_shift;
5185 ops->rm_core[core].rm_state.in_host = 1;
5186 }
5187
Suresh Warrier0c2a6602015-12-17 14:59:09 -06005188 ops->vcpu_kick = kvmppc_fast_vcpu_kick_hv;
5189
Suresh Warrier79b6c242015-12-17 14:59:06 -06005190 /*
5191 * Make the contents of the kvmppc_host_rm_ops structure visible
5192 * to other CPUs before we assign it to the global variable.
5193 * Do an atomic assignment (no locks used here), but if someone
5194 * beats us to it, just free our copy and return.
5195 */
5196 smp_wmb();
5197 l_ops = (unsigned long) ops;
5198
5199 if (cmpxchg64((unsigned long *)&kvmppc_host_rm_ops_hv, 0, l_ops)) {
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02005200 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06005201 kfree(ops->rm_core);
5202 kfree(ops);
Suresh Warrier6f3bb802015-12-17 14:59:08 -06005203 return;
Suresh Warrier79b6c242015-12-17 14:59:06 -06005204 }
Suresh Warrier6f3bb802015-12-17 14:59:08 -06005205
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02005206 cpuhp_setup_state_nocalls_cpuslocked(CPUHP_KVM_PPC_BOOK3S_PREPARE,
5207 "ppc/kvm_book3s:prepare",
5208 kvmppc_set_host_core,
5209 kvmppc_clear_host_core);
5210 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06005211}
5212
5213void kvmppc_free_host_rm_ops(void)
5214{
5215 if (kvmppc_host_rm_ops_hv) {
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01005216 cpuhp_remove_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE);
Suresh Warrier79b6c242015-12-17 14:59:06 -06005217 kfree(kvmppc_host_rm_ops_hv->rm_core);
5218 kfree(kvmppc_host_rm_ops_hv);
5219 kvmppc_host_rm_ops_hv = NULL;
5220 }
5221}
5222#endif
5223
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305224static int kvmppc_core_init_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005225{
Paul Mackerras32fad282012-05-04 02:32:53 +00005226 unsigned long lpcr, lpid;
Paul Mackerrase23a8082015-03-28 14:21:01 +11005227 char buf[32];
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005228 int ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005229
Bharata B Raoca9f4942019-11-25 08:36:26 +05305230 mutex_init(&kvm->arch.uvmem_lock);
5231 INIT_LIST_HEAD(&kvm->arch.uvmem_pfns);
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005232 mutex_init(&kvm->arch.mmu_setup_lock);
5233
Paul Mackerras32fad282012-05-04 02:32:53 +00005234 /* Allocate the guest's logical partition ID */
5235
5236 lpid = kvmppc_alloc_lpid();
Chen Gang5d226ae2013-07-22 14:32:35 +08005237 if ((long)lpid < 0)
Paul Mackerras32fad282012-05-04 02:32:53 +00005238 return -ENOMEM;
5239 kvm->arch.lpid = lpid;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005240
Suresh Warrier79b6c242015-12-17 14:59:06 -06005241 kvmppc_alloc_host_rm_ops();
5242
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005243 kvmhv_vm_nested_init(kvm);
5244
Paul Mackerras1b400ba2012-11-21 23:28:08 +00005245 /*
5246 * Since we don't flush the TLB when tearing down a VM,
5247 * and this lpid might have previously been used,
5248 * make sure we flush on each core before running the new VM.
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005249 * On POWER9, the tlbie in mmu_partition_table_set_entry()
5250 * does this flush for us.
Paul Mackerras1b400ba2012-11-21 23:28:08 +00005251 */
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005252 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5253 cpumask_setall(&kvm->arch.need_tlb_flush);
Paul Mackerras1b400ba2012-11-21 23:28:08 +00005254
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005255 /* Start out with the default set of hcalls enabled */
5256 memcpy(kvm->arch.enabled_hcalls, default_enabled_hcalls,
5257 sizeof(kvm->arch.enabled_hcalls));
5258
Paul Mackerras7a840842016-11-16 22:25:20 +11005259 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5260 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005261
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11005262 /* Init LPCR for virtual RMA mode */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11005263 if (cpu_has_feature(CPU_FTR_HVMODE)) {
5264 kvm->arch.host_lpid = mfspr(SPRN_LPID);
5265 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
5266 lpcr &= LPCR_PECE | LPCR_LPES;
5267 } else {
5268 lpcr = 0;
5269 }
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11005270 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
5271 LPCR_VPM0 | LPCR_VPM1;
5272 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
5273 (VRMA_VSID << SLB_VSID_SHIFT_1T);
5274 /* On POWER8 turn on online bit to enable PURR/SPURR */
5275 if (cpu_has_feature(CPU_FTR_ARCH_207S))
5276 lpcr |= LPCR_ONL;
Paul Mackerras84f71392016-11-22 14:30:14 +11005277 /*
5278 * On POWER9, VPM0 bit is reserved (VPM0=1 behaviour is assumed)
5279 * Set HVICE bit to enable hypervisor virtualization interrupts.
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005280 * Set HEIC to prevent OS interrupts to go to hypervisor (should
5281 * be unnecessary but better safe than sorry in case we re-enable
5282 * EE in HV mode with this LPCR still set)
Paul Mackerras84f71392016-11-22 14:30:14 +11005283 */
5284 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerras7a840842016-11-16 22:25:20 +11005285 lpcr &= ~LPCR_VPM0;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005286 lpcr |= LPCR_HVICE | LPCR_HEIC;
5287
5288 /*
5289 * If xive is enabled, we route 0x500 interrupts directly
5290 * to the guest.
5291 */
Paul Mackerras03f95332019-02-04 22:07:20 +11005292 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005293 lpcr |= LPCR_LPES;
Paul Mackerras84f71392016-11-22 14:30:14 +11005294 }
5295
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005296 /*
Paul Mackerras18c36402017-09-13 16:00:10 +10005297 * If the host uses radix, the guest starts out as radix.
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005298 */
5299 if (radix_enabled()) {
5300 kvm->arch.radix = 1;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10005301 kvm->arch.mmu_ready = 1;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005302 lpcr &= ~LPCR_VPM1;
5303 lpcr |= LPCR_UPRT | LPCR_GTSE | LPCR_HR;
Nicholas Piggineacc8182021-11-23 19:51:46 +10005304 if (cpu_has_feature(CPU_FTR_HVMODE) &&
5305 cpu_has_feature(CPU_FTR_ARCH_31) &&
5306 (kvm->arch.host_lpcr & LPCR_HAIL))
5307 lpcr |= LPCR_HAIL;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005308 ret = kvmppc_init_vm_radix(kvm);
5309 if (ret) {
5310 kvmppc_free_lpid(kvm->arch.lpid);
5311 return ret;
5312 }
5313 kvmppc_setup_partition_table(kvm);
5314 }
5315
Nicholas Piggin67145ef2021-04-12 11:48:36 +10005316 verify_lpcr(kvm, lpcr);
Paul Mackerras9e368f22011-06-29 00:40:08 +00005317 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005318
David Gibson5e985962016-12-20 16:49:05 +11005319 /* Initialization for future HPT resizes */
5320 kvm->arch.resize_hpt = NULL;
5321
Paul Mackerras512691d2012-10-15 01:15:41 +00005322 /*
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005323 * Work out how many sets the TLB has, for the use of
5324 * the TLB invalidation loop in book3s_hv_rmhandlers.S.
5325 */
Aneesh Kumar K.Ve8063942020-10-07 11:03:05 +05305326 if (cpu_has_feature(CPU_FTR_ARCH_31)) {
5327 /*
5328 * P10 will flush all the congruence class with a single tlbiel
5329 */
5330 kvm->arch.tlb_sets = 1;
5331 } else if (radix_enabled())
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005332 kvm->arch.tlb_sets = POWER9_TLB_SETS_RADIX; /* 128 */
5333 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005334 kvm->arch.tlb_sets = POWER9_TLB_SETS_HASH; /* 256 */
5335 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
5336 kvm->arch.tlb_sets = POWER8_TLB_SETS; /* 512 */
5337 else
5338 kvm->arch.tlb_sets = POWER7_TLB_SETS; /* 128 */
5339
5340 /*
Michael Ellerman441c19c2014-05-23 18:15:25 +10005341 * Track that we now have a HV mode VM active. This blocks secondary
5342 * CPU threads from coming online.
Paul Mackerras512691d2012-10-15 01:15:41 +00005343 */
Nicholas Pigginaaae8c72021-05-28 19:07:42 +10005344 if (!cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005345 kvm_hv_vm_activated();
Paul Mackerras512691d2012-10-15 01:15:41 +00005346
Paul Mackerrase23a8082015-03-28 14:21:01 +11005347 /*
Paul Mackerras3c313522017-02-06 13:24:41 +11005348 * Initialize smt_mode depending on processor.
5349 * POWER8 and earlier have to use "strict" threading, where
5350 * all vCPUs in a vcore have to run on the same (sub)core,
5351 * whereas on POWER9 the threads can each run a different
5352 * guest.
5353 */
5354 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5355 kvm->arch.smt_mode = threads_per_subcore;
5356 else
5357 kvm->arch.smt_mode = 1;
Paul Mackerras57900692017-05-16 16:41:20 +10005358 kvm->arch.emul_smt_mode = 1;
Paul Mackerras3c313522017-02-06 13:24:41 +11005359
5360 /*
Paul Mackerrase23a8082015-03-28 14:21:01 +11005361 * Create a debugfs directory for the VM
5362 */
5363 snprintf(buf, sizeof(buf), "vm%d", current->pid);
5364 kvm->arch.debugfs_dir = debugfs_create_dir(buf, kvm_debugfs_dir);
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02005365 kvmppc_mmu_debugfs_init(kvm);
Paul Mackerras9a94d3e2018-10-08 16:30:57 +11005366 if (radix_enabled())
5367 kvmhv_radix_debugfs_init(kvm);
Paul Mackerrase23a8082015-03-28 14:21:01 +11005368
David Gibson54738c02011-06-29 00:22:41 +00005369 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005370}
5371
Paul Mackerrasf1378b12013-09-27 15:33:43 +05305372static void kvmppc_free_vcores(struct kvm *kvm)
5373{
5374 long int i;
5375
Paul Mackerras23316312015-10-21 16:03:14 +11005376 for (i = 0; i < KVM_MAX_VCORES; ++i)
Paul Mackerrasf1378b12013-09-27 15:33:43 +05305377 kfree(kvm->arch.vcores[i]);
5378 kvm->arch.online_vcores = 0;
5379}
5380
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305381static void kvmppc_core_destroy_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005382{
Paul Mackerrase23a8082015-03-28 14:21:01 +11005383 debugfs_remove_recursive(kvm->arch.debugfs_dir);
5384
Nicholas Pigginaaae8c72021-05-28 19:07:42 +10005385 if (!cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005386 kvm_hv_vm_deactivated();
Paul Mackerras512691d2012-10-15 01:15:41 +00005387
Paul Mackerrasf1378b12013-09-27 15:33:43 +05305388 kvmppc_free_vcores(kvm);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005389
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005390
Paul Mackerras5a319352017-01-30 21:21:46 +11005391 if (kvm_is_radix(kvm))
5392 kvmppc_free_radix(kvm);
5393 else
David Gibsonaae07772016-12-20 16:49:02 +11005394 kvmppc_free_hpt(&kvm->arch.hpt);
Suresh Warrierc57875f2016-08-19 15:35:50 +10005395
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005396 /* Perform global invalidation and return lpid to the pool */
5397 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005398 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005399 kvmhv_release_all_nested(kvm);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005400 kvm->arch.process_table = 0;
Paul Mackerrasd89c69f2019-12-18 11:43:06 +11005401 if (kvm->arch.secure_guest)
5402 uv_svm_terminate(kvm->arch.lpid);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005403 kvmhv_set_ptbl_entry(kvm->arch.lpid, 0, 0);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005404 }
Bharata B Raoca9f4942019-11-25 08:36:26 +05305405
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005406 kvmppc_free_lpid(kvm->arch.lpid);
5407
Suresh Warrierc57875f2016-08-19 15:35:50 +10005408 kvmppc_free_pimap(kvm);
Paul Mackerrasde56a942011-06-29 00:21:34 +00005409}
5410
5411/* We don't need to emulate any privileged instructions or dcbz */
Tianjia Zhang8c99d342020-04-27 12:35:11 +08005412static int kvmppc_core_emulate_op_hv(struct kvm_vcpu *vcpu,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305413 unsigned int inst, int *advance)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005414{
5415 return EMULATE_FAIL;
5416}
5417
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305418static int kvmppc_core_emulate_mtspr_hv(struct kvm_vcpu *vcpu, int sprn,
5419 ulong spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005420{
5421 return EMULATE_FAIL;
5422}
5423
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305424static int kvmppc_core_emulate_mfspr_hv(struct kvm_vcpu *vcpu, int sprn,
5425 ulong *spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005426{
5427 return EMULATE_FAIL;
5428}
5429
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305430static int kvmppc_core_check_processor_compat_hv(void)
5431{
Paul Mackerrasde760db2018-10-08 16:31:16 +11005432 if (cpu_has_feature(CPU_FTR_HVMODE) &&
5433 cpu_has_feature(CPU_FTR_ARCH_206))
5434 return 0;
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10005435
Paul Mackerrasde760db2018-10-08 16:31:16 +11005436 /* POWER9 in radix mode is capable of being a nested hypervisor. */
5437 if (cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled())
5438 return 0;
5439
5440 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305441}
5442
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005443#ifdef CONFIG_KVM_XICS
5444
5445void kvmppc_free_pimap(struct kvm *kvm)
5446{
5447 kfree(kvm->arch.pimap);
5448}
5449
Suresh Warrierc57875f2016-08-19 15:35:50 +10005450static struct kvmppc_passthru_irqmap *kvmppc_alloc_pimap(void)
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005451{
5452 return kzalloc(sizeof(struct kvmppc_passthru_irqmap), GFP_KERNEL);
5453}
Suresh Warrierc57875f2016-08-19 15:35:50 +10005454
5455static int kvmppc_set_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
5456{
5457 struct irq_desc *desc;
5458 struct kvmppc_irq_map *irq_map;
5459 struct kvmppc_passthru_irqmap *pimap;
5460 struct irq_chip *chip;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005461 int i, rc = 0;
Cédric Le Goater17530812021-07-01 15:27:48 +02005462 struct irq_data *host_data;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005463
Suresh Warrier644abbb2016-08-19 15:35:54 +10005464 if (!kvm_irq_bypass)
5465 return 1;
5466
Suresh Warrierc57875f2016-08-19 15:35:50 +10005467 desc = irq_to_desc(host_irq);
5468 if (!desc)
5469 return -EIO;
5470
5471 mutex_lock(&kvm->lock);
5472
5473 pimap = kvm->arch.pimap;
5474 if (pimap == NULL) {
5475 /* First call, allocate structure to hold IRQ map */
5476 pimap = kvmppc_alloc_pimap();
5477 if (pimap == NULL) {
5478 mutex_unlock(&kvm->lock);
5479 return -ENOMEM;
5480 }
5481 kvm->arch.pimap = pimap;
5482 }
5483
5484 /*
5485 * For now, we only support interrupts for which the EOI operation
5486 * is an OPAL call followed by a write to XIRR, since that's
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005487 * what our real-mode EOI code does, or a XIVE interrupt
Suresh Warrierc57875f2016-08-19 15:35:50 +10005488 */
5489 chip = irq_data_get_irq_chip(&desc->irq_data);
Cédric Le Goaterba418a02021-07-01 15:27:31 +02005490 if (!chip || !is_pnv_opal_msi(chip)) {
Suresh Warrierc57875f2016-08-19 15:35:50 +10005491 pr_warn("kvmppc_set_passthru_irq_hv: Could not assign IRQ map for (%d,%d)\n",
5492 host_irq, guest_gsi);
5493 mutex_unlock(&kvm->lock);
5494 return -ENOENT;
5495 }
5496
5497 /*
5498 * See if we already have an entry for this guest IRQ number.
5499 * If it's mapped to a hardware IRQ number, that's an error,
5500 * otherwise re-use this entry.
5501 */
5502 for (i = 0; i < pimap->n_mapped; i++) {
5503 if (guest_gsi == pimap->mapped[i].v_hwirq) {
5504 if (pimap->mapped[i].r_hwirq) {
5505 mutex_unlock(&kvm->lock);
5506 return -EINVAL;
5507 }
5508 break;
5509 }
5510 }
5511
5512 if (i == KVMPPC_PIRQ_MAPPED) {
5513 mutex_unlock(&kvm->lock);
5514 return -EAGAIN; /* table is full */
5515 }
5516
5517 irq_map = &pimap->mapped[i];
5518
5519 irq_map->v_hwirq = guest_gsi;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005520 irq_map->desc = desc;
5521
Suresh Warriere3c13e52016-08-19 15:35:51 +10005522 /*
5523 * Order the above two stores before the next to serialize with
5524 * the KVM real mode handler.
5525 */
5526 smp_wmb();
Cédric Le Goater17530812021-07-01 15:27:48 +02005527
5528 /*
5529 * The 'host_irq' number is mapped in the PCI-MSI domain but
5530 * the underlying calls, which will EOI the interrupt in real
5531 * mode, need an HW IRQ number mapped in the XICS IRQ domain.
5532 */
5533 host_data = irq_domain_get_irq_data(irq_get_default_host(), host_irq);
5534 irq_map->r_hwirq = (unsigned int)irqd_to_hwirq(host_data);
Suresh Warriere3c13e52016-08-19 15:35:51 +10005535
Suresh Warrierc57875f2016-08-19 15:35:50 +10005536 if (i == pimap->n_mapped)
5537 pimap->n_mapped++;
5538
Paul Mackerras03f95332019-02-04 22:07:20 +11005539 if (xics_on_xive())
Cédric Le Goatere5e78b12021-07-01 15:27:32 +02005540 rc = kvmppc_xive_set_mapped(kvm, guest_gsi, host_irq);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005541 else
Cédric Le Goater17530812021-07-01 15:27:48 +02005542 kvmppc_xics_set_mapped(kvm, guest_gsi, irq_map->r_hwirq);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005543 if (rc)
5544 irq_map->r_hwirq = 0;
Paul Mackerras5d375192016-08-19 15:35:56 +10005545
Suresh Warrierc57875f2016-08-19 15:35:50 +10005546 mutex_unlock(&kvm->lock);
5547
5548 return 0;
5549}
5550
5551static int kvmppc_clr_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
5552{
5553 struct irq_desc *desc;
5554 struct kvmppc_passthru_irqmap *pimap;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005555 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005556
Suresh Warrier644abbb2016-08-19 15:35:54 +10005557 if (!kvm_irq_bypass)
5558 return 0;
5559
Suresh Warrierc57875f2016-08-19 15:35:50 +10005560 desc = irq_to_desc(host_irq);
5561 if (!desc)
5562 return -EIO;
5563
5564 mutex_lock(&kvm->lock);
Markus Elfringa1c52e12017-01-20 11:00:08 +01005565 if (!kvm->arch.pimap)
5566 goto unlock;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005567
Suresh Warrierc57875f2016-08-19 15:35:50 +10005568 pimap = kvm->arch.pimap;
5569
5570 for (i = 0; i < pimap->n_mapped; i++) {
5571 if (guest_gsi == pimap->mapped[i].v_hwirq)
5572 break;
5573 }
5574
5575 if (i == pimap->n_mapped) {
5576 mutex_unlock(&kvm->lock);
5577 return -ENODEV;
5578 }
5579
Paul Mackerras03f95332019-02-04 22:07:20 +11005580 if (xics_on_xive())
Cédric Le Goatere5e78b12021-07-01 15:27:32 +02005581 rc = kvmppc_xive_clr_mapped(kvm, guest_gsi, host_irq);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005582 else
5583 kvmppc_xics_clr_mapped(kvm, guest_gsi, pimap->mapped[i].r_hwirq);
Paul Mackerras5d375192016-08-19 15:35:56 +10005584
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005585 /* invalidate the entry (what do do on error from the above ?) */
Suresh Warrierc57875f2016-08-19 15:35:50 +10005586 pimap->mapped[i].r_hwirq = 0;
5587
5588 /*
5589 * We don't free this structure even when the count goes to
5590 * zero. The structure is freed when we destroy the VM.
5591 */
Markus Elfringa1c52e12017-01-20 11:00:08 +01005592 unlock:
Suresh Warrierc57875f2016-08-19 15:35:50 +10005593 mutex_unlock(&kvm->lock);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005594 return rc;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005595}
5596
5597static int kvmppc_irq_bypass_add_producer_hv(struct irq_bypass_consumer *cons,
5598 struct irq_bypass_producer *prod)
5599{
5600 int ret = 0;
5601 struct kvm_kernel_irqfd *irqfd =
5602 container_of(cons, struct kvm_kernel_irqfd, consumer);
5603
5604 irqfd->producer = prod;
5605
5606 ret = kvmppc_set_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5607 if (ret)
5608 pr_info("kvmppc_set_passthru_irq (irq %d, gsi %d) fails: %d\n",
5609 prod->irq, irqfd->gsi, ret);
5610
5611 return ret;
5612}
5613
5614static void kvmppc_irq_bypass_del_producer_hv(struct irq_bypass_consumer *cons,
5615 struct irq_bypass_producer *prod)
5616{
5617 int ret;
5618 struct kvm_kernel_irqfd *irqfd =
5619 container_of(cons, struct kvm_kernel_irqfd, consumer);
5620
5621 irqfd->producer = NULL;
5622
5623 /*
5624 * When producer of consumer is unregistered, we change back to
5625 * default external interrupt handling mode - KVM real mode
5626 * will switch back to host.
5627 */
5628 ret = kvmppc_clr_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5629 if (ret)
5630 pr_warn("kvmppc_clr_passthru_irq (irq %d, gsi %d) fails: %d\n",
5631 prod->irq, irqfd->gsi, ret);
5632}
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005633#endif
5634
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305635static long kvm_arch_vm_ioctl_hv(struct file *filp,
5636 unsigned int ioctl, unsigned long arg)
5637{
5638 struct kvm *kvm __maybe_unused = filp->private_data;
5639 void __user *argp = (void __user *)arg;
5640 long r;
5641
5642 switch (ioctl) {
5643
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305644 case KVM_PPC_ALLOCATE_HTAB: {
5645 u32 htab_order;
5646
Fabiano Rosas05e62952020-09-11 01:16:07 -03005647 /* If we're a nested hypervisor, we currently only support radix */
5648 if (kvmhv_on_pseries()) {
5649 r = -EOPNOTSUPP;
5650 break;
5651 }
5652
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305653 r = -EFAULT;
5654 if (get_user(htab_order, (u32 __user *)argp))
5655 break;
David Gibsonf98a8bf2016-12-20 16:49:03 +11005656 r = kvmppc_alloc_reset_hpt(kvm, htab_order);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305657 if (r)
5658 break;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305659 r = 0;
5660 break;
5661 }
5662
5663 case KVM_PPC_GET_HTAB_FD: {
5664 struct kvm_get_htab_fd ghf;
5665
5666 r = -EFAULT;
5667 if (copy_from_user(&ghf, argp, sizeof(ghf)))
5668 break;
5669 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
5670 break;
5671 }
5672
David Gibson5e985962016-12-20 16:49:05 +11005673 case KVM_PPC_RESIZE_HPT_PREPARE: {
5674 struct kvm_ppc_resize_hpt rhpt;
5675
5676 r = -EFAULT;
5677 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5678 break;
5679
5680 r = kvm_vm_ioctl_resize_hpt_prepare(kvm, &rhpt);
5681 break;
5682 }
5683
5684 case KVM_PPC_RESIZE_HPT_COMMIT: {
5685 struct kvm_ppc_resize_hpt rhpt;
5686
5687 r = -EFAULT;
5688 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5689 break;
5690
5691 r = kvm_vm_ioctl_resize_hpt_commit(kvm, &rhpt);
5692 break;
5693 }
5694
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305695 default:
5696 r = -ENOTTY;
5697 }
5698
5699 return r;
5700}
5701
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005702/*
5703 * List of hcall numbers to enable by default.
5704 * For compatibility with old userspace, we enable by default
5705 * all hcalls that were implemented before the hcall-enabling
5706 * facility was added. Note this list should not include H_RTAS.
5707 */
5708static unsigned int default_hcall_list[] = {
5709 H_REMOVE,
5710 H_ENTER,
5711 H_READ,
5712 H_PROTECT,
5713 H_BULK_REMOVE,
Nicholas Piggin0fd85cb82021-04-12 11:48:41 +10005714#ifdef CONFIG_SPAPR_TCE_IOMMU
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005715 H_GET_TCE,
5716 H_PUT_TCE,
Nicholas Piggin0fd85cb82021-04-12 11:48:41 +10005717#endif
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005718 H_SET_DABR,
5719 H_SET_XDABR,
5720 H_CEDE,
5721 H_PROD,
5722 H_CONFER,
5723 H_REGISTER_VPA,
5724#ifdef CONFIG_KVM_XICS
5725 H_EOI,
5726 H_CPPR,
5727 H_IPI,
5728 H_IPOLL,
5729 H_XIRR,
5730 H_XIRR_X,
5731#endif
5732 0
5733};
5734
5735static void init_default_hcalls(void)
5736{
5737 int i;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005738 unsigned int hcall;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005739
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005740 for (i = 0; default_hcall_list[i]; ++i) {
5741 hcall = default_hcall_list[i];
5742 WARN_ON(!kvmppc_hcall_impl_hv(hcall));
5743 __set_bit(hcall / 4, default_enabled_hcalls);
5744 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005745}
5746
Paul Mackerrasc9270132017-01-30 21:21:41 +11005747static int kvmhv_configure_mmu(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
5748{
Paul Mackerras468808b2017-01-30 21:21:42 +11005749 unsigned long lpcr;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005750 int radix;
Paul Mackerras18c36402017-09-13 16:00:10 +10005751 int err;
Paul Mackerras468808b2017-01-30 21:21:42 +11005752
5753 /* If not on a POWER9, reject it */
5754 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5755 return -ENODEV;
5756
5757 /* If any unknown flags set, reject it */
5758 if (cfg->flags & ~(KVM_PPC_MMUV3_RADIX | KVM_PPC_MMUV3_GTSE))
5759 return -EINVAL;
5760
Paul Mackerras468808b2017-01-30 21:21:42 +11005761 /* GR (guest radix) bit in process_table field must match */
Paul Mackerras18c36402017-09-13 16:00:10 +10005762 radix = !!(cfg->flags & KVM_PPC_MMUV3_RADIX);
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005763 if (!!(cfg->process_table & PATB_GR) != radix)
Paul Mackerras468808b2017-01-30 21:21:42 +11005764 return -EINVAL;
5765
5766 /* Process table size field must be reasonable, i.e. <= 24 */
5767 if ((cfg->process_table & PRTS_MASK) > 24)
5768 return -EINVAL;
5769
Paul Mackerras18c36402017-09-13 16:00:10 +10005770 /* We can change a guest to/from radix now, if the host is radix */
5771 if (radix && !radix_enabled())
5772 return -EINVAL;
5773
Paul Mackerrasde760db2018-10-08 16:31:16 +11005774 /* If we're a nested hypervisor, we currently only support radix */
5775 if (kvmhv_on_pseries() && !radix)
5776 return -EINVAL;
5777
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005778 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005779 if (radix != kvm_is_radix(kvm)) {
5780 if (kvm->arch.mmu_ready) {
5781 kvm->arch.mmu_ready = 0;
5782 /* order mmu_ready vs. vcpus_running */
5783 smp_mb();
5784 if (atomic_read(&kvm->arch.vcpus_running)) {
5785 kvm->arch.mmu_ready = 1;
5786 err = -EBUSY;
5787 goto out_unlock;
5788 }
5789 }
5790 if (radix)
5791 err = kvmppc_switch_mmu_to_radix(kvm);
5792 else
5793 err = kvmppc_switch_mmu_to_hpt(kvm);
5794 if (err)
5795 goto out_unlock;
5796 }
5797
Paul Mackerras468808b2017-01-30 21:21:42 +11005798 kvm->arch.process_table = cfg->process_table;
5799 kvmppc_setup_partition_table(kvm);
5800
5801 lpcr = (cfg->flags & KVM_PPC_MMUV3_GTSE) ? LPCR_GTSE : 0;
5802 kvmppc_update_lpcr(kvm, lpcr, LPCR_GTSE);
Paul Mackerras18c36402017-09-13 16:00:10 +10005803 err = 0;
Paul Mackerras468808b2017-01-30 21:21:42 +11005804
Paul Mackerras18c36402017-09-13 16:00:10 +10005805 out_unlock:
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005806 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005807 return err;
Paul Mackerrasc9270132017-01-30 21:21:41 +11005808}
5809
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005810static int kvmhv_enable_nested(struct kvm *kvm)
5811{
5812 if (!nested)
5813 return -EPERM;
Nicholas Piggincbcff8b2021-05-28 19:07:46 +10005814 if (!cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005815 return -ENODEV;
Nicholas Piggin0bf7e1b2021-05-28 19:07:51 +10005816 if (!radix_enabled())
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005817 return -ENODEV;
5818
5819 /* kvm == NULL means the caller is testing if the capability exists */
5820 if (kvm)
5821 kvm->arch.nested_enable = true;
5822 return 0;
5823}
5824
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11005825static int kvmhv_load_from_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5826 int size)
5827{
5828 int rc = -EINVAL;
5829
5830 if (kvmhv_vcpu_is_radix(vcpu)) {
5831 rc = kvmhv_copy_from_guest_radix(vcpu, *eaddr, ptr, size);
5832
5833 if (rc > 0)
5834 rc = -EINVAL;
5835 }
5836
5837 /* For now quadrants are the only way to access nested guest memory */
5838 if (rc && vcpu->arch.nested)
5839 rc = -EAGAIN;
5840
5841 return rc;
5842}
5843
5844static int kvmhv_store_to_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5845 int size)
5846{
5847 int rc = -EINVAL;
5848
5849 if (kvmhv_vcpu_is_radix(vcpu)) {
5850 rc = kvmhv_copy_to_guest_radix(vcpu, *eaddr, ptr, size);
5851
5852 if (rc > 0)
5853 rc = -EINVAL;
5854 }
5855
5856 /* For now quadrants are the only way to access nested guest memory */
5857 if (rc && vcpu->arch.nested)
5858 rc = -EAGAIN;
5859
5860 return rc;
5861}
5862
Bharata B Rao22945682019-11-25 08:36:30 +05305863static void unpin_vpa_reset(struct kvm *kvm, struct kvmppc_vpa *vpa)
5864{
5865 unpin_vpa(kvm, vpa);
5866 vpa->gpa = 0;
5867 vpa->pinned_addr = NULL;
5868 vpa->dirty = false;
5869 vpa->update_pending = 0;
5870}
5871
5872/*
Paul Mackerras9a5788c2020-03-19 15:29:55 +11005873 * Enable a guest to become a secure VM, or test whether
5874 * that could be enabled.
5875 * Called when the KVM_CAP_PPC_SECURE_GUEST capability is
5876 * tested (kvm == NULL) or enabled (kvm != NULL).
5877 */
5878static int kvmhv_enable_svm(struct kvm *kvm)
5879{
5880 if (!kvmppc_uvmem_available())
5881 return -EINVAL;
5882 if (kvm)
5883 kvm->arch.svm_enabled = 1;
5884 return 0;
5885}
5886
5887/*
Bharata B Rao22945682019-11-25 08:36:30 +05305888 * IOCTL handler to turn off secure mode of guest
5889 *
5890 * - Release all device pages
5891 * - Issue ucall to terminate the guest on the UV side
5892 * - Unpin the VPA pages.
5893 * - Reinit the partition scoped page tables
5894 */
5895static int kvmhv_svm_off(struct kvm *kvm)
5896{
5897 struct kvm_vcpu *vcpu;
5898 int mmu_was_ready;
5899 int srcu_idx;
5900 int ret = 0;
Marc Zyngier46808a42021-11-16 16:04:02 +00005901 unsigned long i;
Bharata B Rao22945682019-11-25 08:36:30 +05305902
5903 if (!(kvm->arch.secure_guest & KVMPPC_SECURE_INIT_START))
5904 return ret;
5905
5906 mutex_lock(&kvm->arch.mmu_setup_lock);
5907 mmu_was_ready = kvm->arch.mmu_ready;
5908 if (kvm->arch.mmu_ready) {
5909 kvm->arch.mmu_ready = 0;
5910 /* order mmu_ready vs. vcpus_running */
5911 smp_mb();
5912 if (atomic_read(&kvm->arch.vcpus_running)) {
5913 kvm->arch.mmu_ready = 1;
5914 ret = -EBUSY;
5915 goto out;
5916 }
5917 }
5918
5919 srcu_idx = srcu_read_lock(&kvm->srcu);
5920 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
5921 struct kvm_memory_slot *memslot;
5922 struct kvm_memslots *slots = __kvm_memslots(kvm, i);
Maciej S. Szmigieroa54d8062021-12-06 20:54:30 +01005923 int bkt;
Bharata B Rao22945682019-11-25 08:36:30 +05305924
5925 if (!slots)
5926 continue;
5927
Maciej S. Szmigieroa54d8062021-12-06 20:54:30 +01005928 kvm_for_each_memslot(memslot, bkt, slots) {
Sukadev Bhattiproluce477a72019-12-19 13:51:45 -08005929 kvmppc_uvmem_drop_pages(memslot, kvm, true);
Bharata B Rao22945682019-11-25 08:36:30 +05305930 uv_unregister_mem_slot(kvm->arch.lpid, memslot->id);
5931 }
5932 }
5933 srcu_read_unlock(&kvm->srcu, srcu_idx);
5934
5935 ret = uv_svm_terminate(kvm->arch.lpid);
5936 if (ret != U_SUCCESS) {
5937 ret = -EINVAL;
5938 goto out;
5939 }
5940
5941 /*
5942 * When secure guest is reset, all the guest pages are sent
5943 * to UV via UV_PAGE_IN before the non-boot vcpus get a
5944 * chance to run and unpin their VPA pages. Unpinning of all
5945 * VPA pages is done here explicitly so that VPA pages
5946 * can be migrated to the secure side.
5947 *
5948 * This is required to for the secure SMP guest to reboot
5949 * correctly.
5950 */
5951 kvm_for_each_vcpu(i, vcpu, kvm) {
5952 spin_lock(&vcpu->arch.vpa_update_lock);
5953 unpin_vpa_reset(kvm, &vcpu->arch.dtl);
5954 unpin_vpa_reset(kvm, &vcpu->arch.slb_shadow);
5955 unpin_vpa_reset(kvm, &vcpu->arch.vpa);
5956 spin_unlock(&vcpu->arch.vpa_update_lock);
5957 }
5958
5959 kvmppc_setup_partition_table(kvm);
5960 kvm->arch.secure_guest = 0;
5961 kvm->arch.mmu_ready = mmu_was_ready;
5962out:
5963 mutex_unlock(&kvm->arch.mmu_setup_lock);
5964 return ret;
5965}
5966
Ravi Bangoriad9a47ed2020-12-16 16:12:19 +05305967static int kvmhv_enable_dawr1(struct kvm *kvm)
5968{
5969 if (!cpu_has_feature(CPU_FTR_DAWR1))
5970 return -ENODEV;
5971
5972 /* kvm == NULL means the caller is testing if the capability exists */
5973 if (kvm)
5974 kvm->arch.dawr1_enabled = true;
5975 return 0;
5976}
5977
Fabiano Rosasa7220762021-02-05 13:41:54 -03005978static bool kvmppc_hash_v3_possible(void)
5979{
Nicholas Pigginfae5c9f2021-05-28 19:07:52 +10005980 if (!cpu_has_feature(CPU_FTR_ARCH_300))
Fabiano Rosasa7220762021-02-05 13:41:54 -03005981 return false;
5982
Nicholas Pigginfae5c9f2021-05-28 19:07:52 +10005983 if (!cpu_has_feature(CPU_FTR_HVMODE))
5984 return false;
5985
5986 /*
5987 * POWER9 chips before version 2.02 can't have some threads in
5988 * HPT mode and some in radix mode on the same core.
5989 */
5990 if (radix_enabled()) {
5991 unsigned int pvr = mfspr(SPRN_PVR);
5992 if ((pvr >> 16) == PVR_POWER9 &&
5993 (((pvr & 0xe000) == 0 && (pvr & 0xfff) < 0x202) ||
5994 ((pvr & 0xe000) == 0x2000 && (pvr & 0xfff) < 0x101)))
5995 return false;
5996 }
5997
5998 return true;
Fabiano Rosasa7220762021-02-05 13:41:54 -03005999}
6000
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05306001static struct kvmppc_ops kvm_ops_hv = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05306002 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_hv,
6003 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_hv,
6004 .get_one_reg = kvmppc_get_one_reg_hv,
6005 .set_one_reg = kvmppc_set_one_reg_hv,
6006 .vcpu_load = kvmppc_core_vcpu_load_hv,
6007 .vcpu_put = kvmppc_core_vcpu_put_hv,
Nicholas Piggin87a45e02019-10-02 16:00:22 +10006008 .inject_interrupt = kvmppc_inject_interrupt_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05306009 .set_msr = kvmppc_set_msr_hv,
6010 .vcpu_run = kvmppc_vcpu_run_hv,
6011 .vcpu_create = kvmppc_core_vcpu_create_hv,
6012 .vcpu_free = kvmppc_core_vcpu_free_hv,
6013 .check_requests = kvmppc_core_check_requests_hv,
6014 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_hv,
6015 .flush_memslot = kvmppc_core_flush_memslot_hv,
6016 .prepare_memory_region = kvmppc_core_prepare_memory_region_hv,
6017 .commit_memory_region = kvmppc_core_commit_memory_region_hv,
Sean Christophersonb1c53562021-04-01 17:56:53 -07006018 .unmap_gfn_range = kvm_unmap_gfn_range_hv,
6019 .age_gfn = kvm_age_gfn_hv,
6020 .test_age_gfn = kvm_test_age_gfn_hv,
6021 .set_spte_gfn = kvm_set_spte_gfn_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05306022 .free_memslot = kvmppc_core_free_memslot_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05306023 .init_vm = kvmppc_core_init_vm_hv,
6024 .destroy_vm = kvmppc_core_destroy_vm_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05306025 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_hv,
6026 .emulate_op = kvmppc_core_emulate_op_hv,
6027 .emulate_mtspr = kvmppc_core_emulate_mtspr_hv,
6028 .emulate_mfspr = kvmppc_core_emulate_mfspr_hv,
6029 .fast_vcpu_kick = kvmppc_fast_vcpu_kick_hv,
6030 .arch_vm_ioctl = kvm_arch_vm_ioctl_hv,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10006031 .hcall_implemented = kvmppc_hcall_impl_hv,
Suresh Warrierc57875f2016-08-19 15:35:50 +10006032#ifdef CONFIG_KVM_XICS
6033 .irq_bypass_add_producer = kvmppc_irq_bypass_add_producer_hv,
6034 .irq_bypass_del_producer = kvmppc_irq_bypass_del_producer_hv,
6035#endif
Paul Mackerrasc9270132017-01-30 21:21:41 +11006036 .configure_mmu = kvmhv_configure_mmu,
6037 .get_rmmu_info = kvmhv_get_rmmu_info,
Paul Mackerras3c313522017-02-06 13:24:41 +11006038 .set_smt_mode = kvmhv_set_smt_mode,
Paul Mackerrasaa069a92018-09-21 20:02:01 +10006039 .enable_nested = kvmhv_enable_nested,
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11006040 .load_from_eaddr = kvmhv_load_from_eaddr,
6041 .store_to_eaddr = kvmhv_store_to_eaddr,
Paul Mackerras9a5788c2020-03-19 15:29:55 +11006042 .enable_svm = kvmhv_enable_svm,
Bharata B Rao22945682019-11-25 08:36:30 +05306043 .svm_off = kvmhv_svm_off,
Ravi Bangoriad9a47ed2020-12-16 16:12:19 +05306044 .enable_dawr1 = kvmhv_enable_dawr1,
Fabiano Rosasa7220762021-02-05 13:41:54 -03006045 .hash_v3_possible = kvmppc_hash_v3_possible,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05306046};
6047
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05306048static int kvm_init_subcore_bitmap(void)
6049{
6050 int i, j;
6051 int nr_cores = cpu_nr_cores();
6052 struct sibling_subcore_state *sibling_subcore_state;
6053
6054 for (i = 0; i < nr_cores; i++) {
6055 int first_cpu = i * threads_per_core;
6056 int node = cpu_to_node(first_cpu);
6057
6058 /* Ignore if it is already allocated. */
Nicholas Piggind2e60072018-02-14 01:08:12 +10006059 if (paca_ptrs[first_cpu]->sibling_subcore_state)
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05306060 continue;
6061
6062 sibling_subcore_state =
wangbo08434ab2019-01-07 20:15:52 +08006063 kzalloc_node(sizeof(struct sibling_subcore_state),
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05306064 GFP_KERNEL, node);
6065 if (!sibling_subcore_state)
6066 return -ENOMEM;
6067
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05306068
6069 for (j = 0; j < threads_per_core; j++) {
6070 int cpu = first_cpu + j;
6071
Nicholas Piggind2e60072018-02-14 01:08:12 +10006072 paca_ptrs[cpu]->sibling_subcore_state =
6073 sibling_subcore_state;
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05306074 }
6075 }
6076 return 0;
6077}
6078
Paul Mackerras5a319352017-01-30 21:21:46 +11006079static int kvmppc_radix_possible(void)
6080{
6081 return cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled();
6082}
6083
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05306084static int kvmppc_book3s_init_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00006085{
6086 int r;
Nicholas Piggin2275d7b2019-09-03 01:29:31 +10006087
6088 if (!tlbie_capable) {
6089 pr_err("KVM-HV: Host does not support TLBIE\n");
6090 return -ENODEV;
6091 }
6092
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05306093 /*
6094 * FIXME!! Do we need to check on all cpus ?
6095 */
6096 r = kvmppc_core_check_processor_compat_hv();
6097 if (r < 0)
Paul Mackerras739e2422014-03-25 10:47:05 +11006098 return -ENODEV;
Paul Mackerrasde56a942011-06-29 00:21:34 +00006099
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11006100 r = kvmhv_nested_init();
6101 if (r)
6102 return r;
6103
Nicholas Piggin9c5a4322021-11-23 19:52:31 +10006104 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
6105 r = kvm_init_subcore_bitmap();
6106 if (r)
6107 return r;
6108 }
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05306109
Paul Mackerrasf7257582016-11-18 09:02:08 +11006110 /*
6111 * We need a way of accessing the XICS interrupt controller,
Nicholas Piggind2e60072018-02-14 01:08:12 +10006112 * either directly, via paca_ptrs[cpu]->kvm_hstate.xics_phys, or
Paul Mackerrasf7257582016-11-18 09:02:08 +11006113 * indirectly, via OPAL.
6114 */
6115#ifdef CONFIG_SMP
Paul Mackerras03f95332019-02-04 22:07:20 +11006116 if (!xics_on_xive() && !kvmhv_on_pseries() &&
Paul Mackerrasf3c18e92018-10-08 16:31:05 +11006117 !local_paca->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +11006118 struct device_node *np;
6119
6120 np = of_find_compatible_node(NULL, NULL, "ibm,opal-intc");
6121 if (!np) {
6122 pr_err("KVM-HV: Cannot determine method for accessing XICS\n");
6123 return -ENODEV;
6124 }
Nicholas Mc Guire51eaa082018-07-07 08:53:07 +02006125 /* presence of intc confirmed - node can be dropped again */
6126 of_node_put(np);
Paul Mackerrasf7257582016-11-18 09:02:08 +11006127 }
6128#endif
6129
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05306130 kvm_ops_hv.owner = THIS_MODULE;
6131 kvmppc_hv_ops = &kvm_ops_hv;
Paul Mackerrasde56a942011-06-29 00:21:34 +00006132
Paul Mackerras699a0ea2014-06-02 11:02:59 +10006133 init_default_hcalls();
6134
Paul Mackerrasec257162015-06-24 21:18:03 +10006135 init_vcore_lists();
6136
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05306137 r = kvmppc_mmu_hv_init();
Paul Mackerras5a319352017-01-30 21:21:46 +11006138 if (r)
6139 return r;
6140
6141 if (kvmppc_radix_possible())
6142 r = kvmppc_radix_init();
Paul Mackerras00608e12018-01-11 16:54:26 +11006143
Bharata B Raoca9f4942019-11-25 08:36:26 +05306144 r = kvmppc_uvmem_init();
6145 if (r < 0)
6146 pr_err("KVM-HV: kvmppc_uvmem_init failed %d\n", r);
6147
Paul Mackerrasde56a942011-06-29 00:21:34 +00006148 return r;
6149}
6150
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05306151static void kvmppc_book3s_exit_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00006152{
Bharata B Raoca9f4942019-11-25 08:36:26 +05306153 kvmppc_uvmem_free();
Suresh Warrier79b6c242015-12-17 14:59:06 -06006154 kvmppc_free_host_rm_ops();
Paul Mackerras5a319352017-01-30 21:21:46 +11006155 if (kvmppc_radix_possible())
6156 kvmppc_radix_exit();
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05306157 kvmppc_hv_ops = NULL;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11006158 kvmhv_nested_exit();
Paul Mackerrasde56a942011-06-29 00:21:34 +00006159}
6160
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05306161module_init(kvmppc_book3s_init_hv);
6162module_exit(kvmppc_book3s_exit_hv);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05306163MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01006164MODULE_ALIAS_MISCDEV(KVM_MINOR);
6165MODULE_ALIAS("devname:kvm");