blob: 66527992743730ed4450c7f3ada38256b909195c [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Paul Mackerrasde56a942011-06-29 00:21:34 +00002/*
3 * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
4 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
5 *
6 * Authors:
7 * Paul Mackerras <paulus@au1.ibm.com>
8 * Alexander Graf <agraf@suse.de>
9 * Kevin Wolf <mail@kevin-wolf.de>
10 *
11 * Description: KVM functions specific to running on Book 3S
12 * processors in hypervisor mode (specifically POWER7 and later).
13 *
14 * This file is derived from arch/powerpc/kvm/book3s.c,
15 * by Alexander Graf <agraf@suse.de>.
Paul Mackerrasde56a942011-06-29 00:21:34 +000016 */
17
18#include <linux/kvm_host.h>
Thomas Meyer4bb817ed2017-09-03 14:19:31 +020019#include <linux/kernel.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000020#include <linux/err.h>
21#include <linux/slab.h>
22#include <linux/preempt.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010023#include <linux/sched/signal.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010024#include <linux/sched/stat.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000025#include <linux/delay.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040026#include <linux/export.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000027#include <linux/fs.h>
28#include <linux/anon_inodes.h>
Gavin Shan07f8ab252016-05-11 11:15:55 +100029#include <linux/cpu.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000030#include <linux/cpumask.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000031#include <linux/spinlock.h>
32#include <linux/page-flags.h>
Paul Mackerras2c9097e2012-09-11 13:27:01 +000033#include <linux/srcu.h>
Alexander Graf398a76c2013-12-09 13:53:42 +010034#include <linux/miscdevice.h>
Paul Mackerrase23a8082015-03-28 14:21:01 +110035#include <linux/debugfs.h>
Benjamin Herrenschmidtd3989142017-04-05 17:54:51 +100036#include <linux/gfp.h>
37#include <linux/vmalloc.h>
38#include <linux/highmem.h>
39#include <linux/hugetlb.h>
40#include <linux/kvm_irqfd.h>
41#include <linux/irqbypass.h>
42#include <linux/module.h>
43#include <linux/compiler.h>
44#include <linux/of.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000045
Luke Dashjrd6ee76d2018-08-16 21:36:26 +000046#include <asm/ftrace.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000047#include <asm/reg.h>
Paul Mackerras57900692017-05-16 16:41:20 +100048#include <asm/ppc-opcode.h>
Nicholas Piggin6de66382017-11-05 23:33:55 +110049#include <asm/asm-prototypes.h>
Paul Mackerras4bad7772018-10-08 16:31:06 +110050#include <asm/archrandom.h>
Nicholas Piggine303c082018-04-01 15:50:35 +100051#include <asm/debug.h>
Paul Mackerras57900692017-05-16 16:41:20 +100052#include <asm/disassemble.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000053#include <asm/cputable.h>
54#include <asm/cacheflush.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080055#include <linux/uaccess.h>
Nicholas Piggin3a965702021-01-30 23:08:38 +100056#include <asm/interrupt.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000057#include <asm/io.h>
58#include <asm/kvm_ppc.h>
59#include <asm/kvm_book3s.h>
60#include <asm/mmu_context.h>
61#include <asm/lppaca.h>
62#include <asm/processor.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000063#include <asm/cputhreads.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000064#include <asm/page.h>
Michael Neulingde1d9242011-11-09 20:39:49 +000065#include <asm/hvcall.h>
David Howellsae3a1972012-03-28 18:30:02 +010066#include <asm/switch_to.h>
Paul Mackerras512691d2012-10-15 01:15:41 +000067#include <asm/smp.h>
Paul Mackerras66feed62015-03-28 14:21:12 +110068#include <asm/dbell.h>
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +053069#include <asm/hmi.h>
Suresh Warrierc57875f2016-08-19 15:35:50 +100070#include <asm/pnv-pci.h>
Paul Mackerras7a840842016-11-16 22:25:20 +110071#include <asm/mmu.h>
Paul Mackerrasf7257582016-11-18 09:02:08 +110072#include <asm/opal.h>
73#include <asm/xics.h>
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +100074#include <asm/xive.h>
Michael Neulingc1fe1902019-04-01 17:03:12 +110075#include <asm/hw_breakpoint.h>
Bharata B Raoca9f4942019-11-25 08:36:26 +053076#include <asm/kvm_book3s_uvmem.h>
Bharata B Raoc3262252019-11-25 08:36:29 +053077#include <asm/ultravisor.h>
Peter Zijlstrad6bdceb2020-05-29 22:41:01 +020078#include <asm/dtl.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000079
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053080#include "book3s.h"
81
Suresh E. Warrier3c78f782014-12-03 18:48:10 -060082#define CREATE_TRACE_POINTS
83#include "trace_hv.h"
84
Paul Mackerrasde56a942011-06-29 00:21:34 +000085/* #define EXIT_DEBUG */
86/* #define EXIT_DEBUG_SIMPLE */
87/* #define EXIT_DEBUG_INT */
88
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000089/* Used to indicate that a guest page fault needs to be handled */
90#define RESUME_PAGE_FAULT (RESUME_GUEST | RESUME_FLAG_ARCH1)
Suresh Warrierf7af5202016-08-19 15:35:52 +100091/* Used to indicate that a guest passthrough interrupt needs to be handled */
92#define RESUME_PASSTHROUGH (RESUME_GUEST | RESUME_FLAG_ARCH2)
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000093
Paul Mackerrasc7b67672012-10-15 01:18:07 +000094/* Used as a "null" value for timebase values */
95#define TB_NIL (~(u64)0)
96
Paul Mackerras699a0ea2014-06-02 11:02:59 +100097static DECLARE_BITMAP(default_enabled_hcalls, MAX_HCALL_OPCODE/4 + 1);
98
Paul Mackerrasb4deba52015-07-02 20:38:16 +100099static int dynamic_mt_modes = 6;
Russell Currey57ad583f2017-01-12 14:54:13 +1100100module_param(dynamic_mt_modes, int, 0644);
Paul Mackerrasb4deba52015-07-02 20:38:16 +1000101MODULE_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 +1000102static int target_smt_mode;
Russell Currey57ad583f2017-01-12 14:54:13 +1100103module_param(target_smt_mode, int, 0644);
Paul Mackerrasec257162015-06-24 21:18:03 +1000104MODULE_PARM_DESC(target_smt_mode, "Target threads per core (0 = max)");
Stewart Smith9678cda2014-07-18 14:18:43 +1000105
Paul Mackerras516f7892017-10-16 16:11:57 +1100106static bool indep_threads_mode = true;
107module_param(indep_threads_mode, bool, S_IRUGO | S_IWUSR);
108MODULE_PARM_DESC(indep_threads_mode, "Independent-threads mode (only on POWER9)");
109
Paul Mackerrasaa227862018-09-12 10:42:12 +1000110static bool one_vm_per_core;
111module_param(one_vm_per_core, bool, S_IRUGO | S_IWUSR);
112MODULE_PARM_DESC(one_vm_per_core, "Only run vCPUs from the same VM on a core (requires indep_threads_mode=N)");
113
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600114#ifdef CONFIG_KVM_XICS
Joe Perchesa4f1d942020-10-03 17:18:06 -0700115static const struct kernel_param_ops module_param_ops = {
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600116 .set = param_set_int,
117 .get = param_get_int,
118};
119
Russell Currey57ad583f2017-01-12 14:54:13 +1100120module_param_cb(kvm_irq_bypass, &module_param_ops, &kvm_irq_bypass, 0644);
Suresh Warrier644abbb2016-08-19 15:35:54 +1000121MODULE_PARM_DESC(kvm_irq_bypass, "Bypass passthrough interrupt optimization");
122
Russell Currey57ad583f2017-01-12 14:54:13 +1100123module_param_cb(h_ipi_redirect, &module_param_ops, &h_ipi_redirect, 0644);
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600124MODULE_PARM_DESC(h_ipi_redirect, "Redirect H_IPI wakeup to a free host core");
125#endif
126
Paul Mackerrasaa069a92018-09-21 20:02:01 +1000127/* If set, guests are allowed to create and control nested guests */
128static bool nested = true;
129module_param(nested, bool, S_IRUGO | S_IWUSR);
130MODULE_PARM_DESC(nested, "Enable nested virtualization (only on POWER9)");
131
132static inline bool nesting_enabled(struct kvm *kvm)
133{
134 return kvm->arch.nested_enable && kvm_is_radix(kvm);
135}
136
Paul Mackerras00608e12018-01-11 16:54:26 +1100137/* If set, the threads on each CPU core have to be in the same MMU mode */
Nicholas Pigginb1b16972021-01-18 16:28:06 +1000138static bool no_mixing_hpt_and_radix __read_mostly;
Paul Mackerras00608e12018-01-11 16:54:26 +1100139
Paul Mackerras32fad282012-05-04 02:32:53 +0000140static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000141
Paul Mackerras7aa15842018-04-20 19:53:22 +1000142/*
143 * RWMR values for POWER8. These control the rate at which PURR
144 * and SPURR count and should be set according to the number of
145 * online threads in the vcore being run.
146 */
Nicholas Mc Guire0abb75b2018-07-07 11:07:25 +0200147#define RWMR_RPA_P8_1THREAD 0x164520C62609AECAUL
148#define RWMR_RPA_P8_2THREAD 0x7FFF2908450D8DA9UL
149#define RWMR_RPA_P8_3THREAD 0x164520C62609AECAUL
150#define RWMR_RPA_P8_4THREAD 0x199A421245058DA9UL
151#define RWMR_RPA_P8_5THREAD 0x164520C62609AECAUL
152#define RWMR_RPA_P8_6THREAD 0x164520C62609AECAUL
153#define RWMR_RPA_P8_7THREAD 0x164520C62609AECAUL
154#define RWMR_RPA_P8_8THREAD 0x164520C62609AECAUL
Paul Mackerras7aa15842018-04-20 19:53:22 +1000155
156static unsigned long p8_rwmr_values[MAX_SMT_THREADS + 1] = {
157 RWMR_RPA_P8_1THREAD,
158 RWMR_RPA_P8_1THREAD,
159 RWMR_RPA_P8_2THREAD,
160 RWMR_RPA_P8_3THREAD,
161 RWMR_RPA_P8_4THREAD,
162 RWMR_RPA_P8_5THREAD,
163 RWMR_RPA_P8_6THREAD,
164 RWMR_RPA_P8_7THREAD,
165 RWMR_RPA_P8_8THREAD,
166};
167
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +1000168static inline struct kvm_vcpu *next_runnable_thread(struct kvmppc_vcore *vc,
169 int *ip)
170{
171 int i = *ip;
172 struct kvm_vcpu *vcpu;
173
174 while (++i < MAX_SMT_THREADS) {
175 vcpu = READ_ONCE(vc->runnable_threads[i]);
176 if (vcpu) {
177 *ip = i;
178 return vcpu;
179 }
180 }
181 return NULL;
182}
183
184/* Used to traverse the list of runnable threads for a given vcore */
185#define for_each_runnable_thread(i, vcpu, vc) \
186 for (i = -1; (vcpu = next_runnable_thread(vc, &i)); )
187
Paul Mackerras66feed62015-03-28 14:21:12 +1100188static bool kvmppc_ipi_thread(int cpu)
189{
Paul Mackerras1704a812016-11-18 08:47:08 +1100190 unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER);
191
Paul Mackerrasf3c18e92018-10-08 16:31:05 +1100192 /* If we're a nested hypervisor, fall back to ordinary IPIs for now */
193 if (kvmhv_on_pseries())
194 return false;
195
Paul Mackerras1704a812016-11-18 08:47:08 +1100196 /* On POWER9 we can use msgsnd to IPI any cpu */
197 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
198 msg |= get_hard_smp_processor_id(cpu);
199 smp_mb();
200 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
201 return true;
202 }
203
Paul Mackerras66feed62015-03-28 14:21:12 +1100204 /* On POWER8 for IPIs to threads in the same core, use msgsnd */
205 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
206 preempt_disable();
207 if (cpu_first_thread_sibling(cpu) ==
208 cpu_first_thread_sibling(smp_processor_id())) {
Paul Mackerras66feed62015-03-28 14:21:12 +1100209 msg |= cpu_thread_in_core(cpu);
210 smp_mb();
211 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
212 preempt_enable();
213 return true;
214 }
215 preempt_enable();
216 }
217
218#if defined(CONFIG_PPC_ICP_NATIVE) && defined(CONFIG_SMP)
Paul Mackerrasf7257582016-11-18 09:02:08 +1100219 if (cpu >= 0 && cpu < nr_cpu_ids) {
Nicholas Piggind2e60072018-02-14 01:08:12 +1000220 if (paca_ptrs[cpu]->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +1100221 xics_wake_cpu(cpu);
222 return true;
223 }
224 opal_int_set_mfrr(get_hard_smp_processor_id(cpu), IPI_PRIORITY);
Paul Mackerras66feed62015-03-28 14:21:12 +1100225 return true;
226 }
227#endif
228
229 return false;
230}
231
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530232static void kvmppc_fast_vcpu_kick_hv(struct kvm_vcpu *vcpu)
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000233{
Paul Mackerrasec257162015-06-24 21:18:03 +1000234 int cpu;
Davidlohr Buesoda4ad882020-04-23 22:48:37 -0700235 struct rcuwait *waitp;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000236
Davidlohr Buesoda4ad882020-04-23 22:48:37 -0700237 waitp = kvm_arch_vcpu_get_wait(vcpu);
238 if (rcuwait_wake_up(waitp))
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000239 ++vcpu->stat.halt_wakeup;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000240
Paul Mackerras3deda5e2016-12-20 14:02:29 +1100241 cpu = READ_ONCE(vcpu->arch.thread_cpu);
242 if (cpu >= 0 && kvmppc_ipi_thread(cpu))
Paul Mackerras66feed62015-03-28 14:21:12 +1100243 return;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000244
245 /* CPU points to the first thread of the core */
Paul Mackerrasec257162015-06-24 21:18:03 +1000246 cpu = vcpu->cpu;
Paul Mackerras66feed62015-03-28 14:21:12 +1100247 if (cpu >= 0 && cpu < nr_cpu_ids && cpu_online(cpu))
248 smp_send_reschedule(cpu);
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000249}
250
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000251/*
252 * We use the vcpu_load/put functions to measure stolen time.
253 * Stolen time is counted as time when either the vcpu is able to
254 * run as part of a virtual core, but the task running the vcore
255 * is preempted or sleeping, or when the vcpu needs something done
256 * in the kernel by the task running the vcpu, but that task is
257 * preempted or sleeping. Those two things have to be counted
258 * separately, since one of the vcpu tasks will take on the job
259 * of running the core, and the other vcpu tasks in the vcore will
260 * sleep waiting for it to do that, but that sleep shouldn't count
261 * as stolen time.
262 *
263 * Hence we accumulate stolen time when the vcpu can run as part of
264 * a vcore using vc->stolen_tb, and the stolen time when the vcpu
265 * needs its task to do other things in the kernel (for example,
266 * service a page fault) in busy_stolen. We don't accumulate
267 * stolen time for a vcore when it is inactive, or for a vcpu
268 * when it is in state RUNNING or NOTREADY. NOTREADY is a bit of
269 * a misnomer; it means that the vcpu task is not executing in
270 * the KVM_VCPU_RUN ioctl, i.e. it is in userspace or elsewhere in
271 * the kernel. We don't have any way of dividing up that time
272 * between time that the vcpu is genuinely stopped, time that
273 * the task is actively working on behalf of the vcpu, and time
274 * that the task is preempted, so we don't count any of it as
275 * stolen.
276 *
277 * Updates to busy_stolen are protected by arch.tbacct_lock;
Paul Mackerras2711e242014-12-04 16:43:28 +1100278 * updates to vc->stolen_tb are protected by the vcore->stoltb_lock
279 * lock. The stolen times are measured in units of timebase ticks.
280 * (Note that the != TB_NIL checks below are purely defensive;
281 * they should never fail.)
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000282 */
283
Paul Mackerrasec257162015-06-24 21:18:03 +1000284static void kvmppc_core_start_stolen(struct kvmppc_vcore *vc)
285{
286 unsigned long flags;
287
288 spin_lock_irqsave(&vc->stoltb_lock, flags);
289 vc->preempt_tb = mftb();
290 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
291}
292
293static void kvmppc_core_end_stolen(struct kvmppc_vcore *vc)
294{
295 unsigned long flags;
296
297 spin_lock_irqsave(&vc->stoltb_lock, flags);
298 if (vc->preempt_tb != TB_NIL) {
299 vc->stolen_tb += mftb() - vc->preempt_tb;
300 vc->preempt_tb = TB_NIL;
301 }
302 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
303}
304
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530305static void kvmppc_core_vcpu_load_hv(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000306{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000307 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100308 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000309
Paul Mackerras2711e242014-12-04 16:43:28 +1100310 /*
311 * We can test vc->runner without taking the vcore lock,
312 * because only this task ever sets vc->runner to this
313 * vcpu, and once it is set to this vcpu, only this task
314 * ever sets it to NULL.
315 */
Paul Mackerrasec257162015-06-24 21:18:03 +1000316 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
317 kvmppc_core_end_stolen(vc);
318
Paul Mackerras2711e242014-12-04 16:43:28 +1100319 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000320 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST &&
321 vcpu->arch.busy_preempt != TB_NIL) {
322 vcpu->arch.busy_stolen += mftb() - vcpu->arch.busy_preempt;
323 vcpu->arch.busy_preempt = TB_NIL;
324 }
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100325 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000326}
327
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530328static void kvmppc_core_vcpu_put_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000329{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000330 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100331 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000332
Paul Mackerrasec257162015-06-24 21:18:03 +1000333 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
334 kvmppc_core_start_stolen(vc);
335
Paul Mackerras2711e242014-12-04 16:43:28 +1100336 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000337 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST)
338 vcpu->arch.busy_preempt = mftb();
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100339 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000340}
341
Thomas Huth5358a962015-05-22 09:25:02 +0200342static void kvmppc_set_pvr_hv(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000343{
344 vcpu->arch.pvr = pvr;
345}
346
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000347/* Dummy value used in computing PCR value below */
348#define PCR_ARCH_31 (PCR_ARCH_300 << 1)
349
Thomas Huth5358a962015-05-22 09:25:02 +0200350static int kvmppc_set_arch_compat(struct kvm_vcpu *vcpu, u32 arch_compat)
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000351{
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100352 unsigned long host_pcr_bit = 0, guest_pcr_bit = 0;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000353 struct kvmppc_vcore *vc = vcpu->arch.vcore;
354
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100355 /* We can (emulate) our own architecture version and anything older */
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000356 if (cpu_has_feature(CPU_FTR_ARCH_31))
357 host_pcr_bit = PCR_ARCH_31;
358 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100359 host_pcr_bit = PCR_ARCH_300;
360 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
361 host_pcr_bit = PCR_ARCH_207;
362 else if (cpu_has_feature(CPU_FTR_ARCH_206))
363 host_pcr_bit = PCR_ARCH_206;
364 else
365 host_pcr_bit = PCR_ARCH_205;
366
367 /* Determine lowest PCR bit needed to run guest in given PVR level */
368 guest_pcr_bit = host_pcr_bit;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000369 if (arch_compat) {
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000370 switch (arch_compat) {
371 case PVR_ARCH_205:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100372 guest_pcr_bit = PCR_ARCH_205;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000373 break;
374 case PVR_ARCH_206:
375 case PVR_ARCH_206p:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100376 guest_pcr_bit = PCR_ARCH_206;
Paul Mackerras5557ae02014-01-08 21:25:24 +1100377 break;
378 case PVR_ARCH_207:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100379 guest_pcr_bit = PCR_ARCH_207;
380 break;
381 case PVR_ARCH_300:
382 guest_pcr_bit = PCR_ARCH_300;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000383 break;
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000384 case PVR_ARCH_31:
385 guest_pcr_bit = PCR_ARCH_31;
386 break;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000387 default:
388 return -EINVAL;
389 }
390 }
391
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100392 /* Check requested PCR bits don't exceed our capabilities */
393 if (guest_pcr_bit > host_pcr_bit)
394 return -EINVAL;
395
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000396 spin_lock(&vc->lock);
397 vc->arch_compat = arch_compat;
Jordan Niethe13c7bb32019-09-17 10:46:05 +1000398 /*
399 * Set all PCR bits for which guest_pcr_bit <= bit < host_pcr_bit
400 * Also set all reserved PCR bits
401 */
402 vc->pcr = (host_pcr_bit - guest_pcr_bit) | PCR_MASK;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000403 spin_unlock(&vc->lock);
404
405 return 0;
406}
407
Thomas Huth5358a962015-05-22 09:25:02 +0200408static void kvmppc_dump_regs(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000409{
410 int r;
411
412 pr_err("vcpu %p (%d):\n", vcpu, vcpu->vcpu_id);
413 pr_err("pc = %.16lx msr = %.16llx trap = %x\n",
Simon Guo173c5202018-05-07 14:20:08 +0800414 vcpu->arch.regs.nip, vcpu->arch.shregs.msr, vcpu->arch.trap);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000415 for (r = 0; r < 16; ++r)
416 pr_err("r%2d = %.16lx r%d = %.16lx\n",
417 r, kvmppc_get_gpr(vcpu, r),
418 r+16, kvmppc_get_gpr(vcpu, r+16));
419 pr_err("ctr = %.16lx lr = %.16lx\n",
Simon Guo173c5202018-05-07 14:20:08 +0800420 vcpu->arch.regs.ctr, vcpu->arch.regs.link);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000421 pr_err("srr0 = %.16llx srr1 = %.16llx\n",
422 vcpu->arch.shregs.srr0, vcpu->arch.shregs.srr1);
423 pr_err("sprg0 = %.16llx sprg1 = %.16llx\n",
424 vcpu->arch.shregs.sprg0, vcpu->arch.shregs.sprg1);
425 pr_err("sprg2 = %.16llx sprg3 = %.16llx\n",
426 vcpu->arch.shregs.sprg2, vcpu->arch.shregs.sprg3);
Paul Mackerrasfd0944b2018-10-08 16:30:58 +1100427 pr_err("cr = %.8lx xer = %.16lx dsisr = %.8x\n",
428 vcpu->arch.regs.ccr, vcpu->arch.regs.xer, vcpu->arch.shregs.dsisr);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000429 pr_err("dar = %.16llx\n", vcpu->arch.shregs.dar);
430 pr_err("fault dar = %.16lx dsisr = %.8x\n",
431 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
432 pr_err("SLB (%d entries):\n", vcpu->arch.slb_max);
433 for (r = 0; r < vcpu->arch.slb_max; ++r)
434 pr_err(" ESID = %.16llx VSID = %.16llx\n",
435 vcpu->arch.slb[r].orige, vcpu->arch.slb[r].origv);
436 pr_err("lpcr = %.16lx sdr1 = %.16lx last_inst = %.8x\n",
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000437 vcpu->arch.vcore->lpcr, vcpu->kvm->arch.sdr1,
Paul Mackerrasde56a942011-06-29 00:21:34 +0000438 vcpu->arch.last_inst);
439}
440
Thomas Huth5358a962015-05-22 09:25:02 +0200441static struct kvm_vcpu *kvmppc_find_vcpu(struct kvm *kvm, int id)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000442{
Paul Mackerras5a3f4932019-05-23 16:36:32 +1000443 return kvm_get_vcpu_by_id(kvm, id);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000444}
445
446static void init_vpa(struct kvm_vcpu *vcpu, struct lppaca *vpa)
447{
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000448 vpa->__old_status |= LPPACA_OLD_SHARED_PROC;
Alexander Graf02407552014-06-11 10:34:19 +0200449 vpa->yield_count = cpu_to_be32(1);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000450}
451
Paul Mackerras55b665b2012-09-25 20:33:06 +0000452static int set_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *v,
453 unsigned long addr, unsigned long len)
454{
455 /* check address is cacheline aligned */
456 if (addr & (L1_CACHE_BYTES - 1))
457 return -EINVAL;
458 spin_lock(&vcpu->arch.vpa_update_lock);
459 if (v->next_gpa != addr || v->len != len) {
460 v->next_gpa = addr;
461 v->len = addr ? len : 0;
462 v->update_pending = 1;
463 }
464 spin_unlock(&vcpu->arch.vpa_update_lock);
465 return 0;
466}
467
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000468/* Length for a per-processor buffer is passed in at offset 4 in the buffer */
469struct reg_vpa {
470 u32 dummy;
471 union {
Alexander Graf02407552014-06-11 10:34:19 +0200472 __be16 hword;
473 __be32 word;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000474 } length;
475};
476
477static int vpa_is_registered(struct kvmppc_vpa *vpap)
478{
479 if (vpap->update_pending)
480 return vpap->next_gpa != 0;
481 return vpap->pinned_addr != NULL;
482}
483
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000484static unsigned long do_h_register_vpa(struct kvm_vcpu *vcpu,
485 unsigned long flags,
486 unsigned long vcpuid, unsigned long vpa)
487{
488 struct kvm *kvm = vcpu->kvm;
Paul Mackerras93e60242011-12-12 12:28:55 +0000489 unsigned long len, nb;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000490 void *va;
491 struct kvm_vcpu *tvcpu;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000492 int err;
493 int subfunc;
494 struct kvmppc_vpa *vpap;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000495
496 tvcpu = kvmppc_find_vcpu(kvm, vcpuid);
497 if (!tvcpu)
498 return H_PARAMETER;
499
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000500 subfunc = (flags >> H_VPA_FUNC_SHIFT) & H_VPA_FUNC_MASK;
501 if (subfunc == H_VPA_REG_VPA || subfunc == H_VPA_REG_DTL ||
502 subfunc == H_VPA_REG_SLB) {
503 /* Registering new area - address must be cache-line aligned */
504 if ((vpa & (L1_CACHE_BYTES - 1)) || !vpa)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000505 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000506
507 /* convert logical addr to kernel addr and read length */
Paul Mackerras93e60242011-12-12 12:28:55 +0000508 va = kvmppc_pin_guest_page(kvm, vpa, &nb);
509 if (va == NULL)
Paul Mackerrasb2b2f162011-12-12 12:28:21 +0000510 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000511 if (subfunc == H_VPA_REG_VPA)
Alexander Graf02407552014-06-11 10:34:19 +0200512 len = be16_to_cpu(((struct reg_vpa *)va)->length.hword);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000513 else
Alexander Graf02407552014-06-11 10:34:19 +0200514 len = be32_to_cpu(((struct reg_vpa *)va)->length.word);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000515 kvmppc_unpin_guest_page(kvm, va, vpa, false);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000516
517 /* Check length */
518 if (len > nb || len < sizeof(struct reg_vpa))
519 return H_PARAMETER;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000520 } else {
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000521 vpa = 0;
522 len = 0;
523 }
524
525 err = H_PARAMETER;
526 vpap = NULL;
527 spin_lock(&tvcpu->arch.vpa_update_lock);
528
529 switch (subfunc) {
530 case H_VPA_REG_VPA: /* register VPA */
Nicholas Piggineaac112e2017-08-13 11:33:38 +1000531 /*
532 * The size of our lppaca is 1kB because of the way we align
533 * it for the guest to avoid crossing a 4kB boundary. We only
534 * use 640 bytes of the structure though, so we should accept
535 * clients that set a size of 640.
536 */
Nicholas Piggin499dcd42018-02-14 01:08:13 +1000537 BUILD_BUG_ON(sizeof(struct lppaca) != 640);
538 if (len < sizeof(struct lppaca))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000539 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000540 vpap = &tvcpu->arch.vpa;
541 err = 0;
542 break;
543
544 case H_VPA_REG_DTL: /* register DTL */
545 if (len < sizeof(struct dtl_entry))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000546 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000547 len -= len % sizeof(struct dtl_entry);
548
549 /* Check that they have previously registered a VPA */
550 err = H_RESOURCE;
551 if (!vpa_is_registered(&tvcpu->arch.vpa))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000552 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000553
554 vpap = &tvcpu->arch.dtl;
555 err = 0;
556 break;
557
558 case H_VPA_REG_SLB: /* register SLB shadow buffer */
559 /* Check that they have previously registered a VPA */
560 err = H_RESOURCE;
561 if (!vpa_is_registered(&tvcpu->arch.vpa))
562 break;
563
564 vpap = &tvcpu->arch.slb_shadow;
565 err = 0;
566 break;
567
568 case H_VPA_DEREG_VPA: /* deregister VPA */
569 /* Check they don't still have a DTL or SLB buf registered */
570 err = H_RESOURCE;
571 if (vpa_is_registered(&tvcpu->arch.dtl) ||
572 vpa_is_registered(&tvcpu->arch.slb_shadow))
573 break;
574
575 vpap = &tvcpu->arch.vpa;
576 err = 0;
577 break;
578
579 case H_VPA_DEREG_DTL: /* deregister DTL */
580 vpap = &tvcpu->arch.dtl;
581 err = 0;
582 break;
583
584 case H_VPA_DEREG_SLB: /* deregister SLB shadow buffer */
585 vpap = &tvcpu->arch.slb_shadow;
586 err = 0;
587 break;
588 }
589
590 if (vpap) {
591 vpap->next_gpa = vpa;
592 vpap->len = len;
593 vpap->update_pending = 1;
594 }
595
596 spin_unlock(&tvcpu->arch.vpa_update_lock);
597
598 return err;
599}
600
Paul Mackerras081f3232012-06-01 20:20:24 +1000601static void kvmppc_update_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *vpap)
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000602{
Paul Mackerras081f3232012-06-01 20:20:24 +1000603 struct kvm *kvm = vcpu->kvm;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000604 void *va;
605 unsigned long nb;
Paul Mackerras081f3232012-06-01 20:20:24 +1000606 unsigned long gpa;
607
608 /*
609 * We need to pin the page pointed to by vpap->next_gpa,
610 * but we can't call kvmppc_pin_guest_page under the lock
611 * as it does get_user_pages() and down_read(). So we
612 * have to drop the lock, pin the page, then get the lock
613 * again and check that a new area didn't get registered
614 * in the meantime.
615 */
616 for (;;) {
617 gpa = vpap->next_gpa;
618 spin_unlock(&vcpu->arch.vpa_update_lock);
619 va = NULL;
620 nb = 0;
621 if (gpa)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000622 va = kvmppc_pin_guest_page(kvm, gpa, &nb);
Paul Mackerras081f3232012-06-01 20:20:24 +1000623 spin_lock(&vcpu->arch.vpa_update_lock);
624 if (gpa == vpap->next_gpa)
625 break;
626 /* sigh... unpin that one and try again */
627 if (va)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000628 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000629 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000630
631 vpap->update_pending = 0;
Paul Mackerras081f3232012-06-01 20:20:24 +1000632 if (va && nb < vpap->len) {
633 /*
634 * If it's now too short, it must be that userspace
635 * has changed the mappings underlying guest memory,
636 * so unregister the region.
637 */
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000638 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000639 va = NULL;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000640 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000641 if (vpap->pinned_addr)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000642 kvmppc_unpin_guest_page(kvm, vpap->pinned_addr, vpap->gpa,
643 vpap->dirty);
644 vpap->gpa = gpa;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000645 vpap->pinned_addr = va;
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000646 vpap->dirty = false;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000647 if (va)
648 vpap->pinned_end = va + vpap->len;
649}
Paul Mackerras93e60242011-12-12 12:28:55 +0000650
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000651static void kvmppc_update_vpas(struct kvm_vcpu *vcpu)
652{
Paul Mackerras2f12f032012-10-15 01:17:17 +0000653 if (!(vcpu->arch.vpa.update_pending ||
654 vcpu->arch.slb_shadow.update_pending ||
655 vcpu->arch.dtl.update_pending))
656 return;
657
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000658 spin_lock(&vcpu->arch.vpa_update_lock);
659 if (vcpu->arch.vpa.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000660 kvmppc_update_vpa(vcpu, &vcpu->arch.vpa);
Paul Mackerras55b665b2012-09-25 20:33:06 +0000661 if (vcpu->arch.vpa.pinned_addr)
662 init_vpa(vcpu, vcpu->arch.vpa.pinned_addr);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000663 }
664 if (vcpu->arch.dtl.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000665 kvmppc_update_vpa(vcpu, &vcpu->arch.dtl);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000666 vcpu->arch.dtl_ptr = vcpu->arch.dtl.pinned_addr;
667 vcpu->arch.dtl_index = 0;
668 }
669 if (vcpu->arch.slb_shadow.update_pending)
Paul Mackerras081f3232012-06-01 20:20:24 +1000670 kvmppc_update_vpa(vcpu, &vcpu->arch.slb_shadow);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000671 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000672}
673
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000674/*
675 * Return the accumulated stolen time for the vcore up until `now'.
676 * The caller should hold the vcore lock.
677 */
678static u64 vcore_stolen_time(struct kvmppc_vcore *vc, u64 now)
679{
680 u64 p;
Paul Mackerras2711e242014-12-04 16:43:28 +1100681 unsigned long flags;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000682
Paul Mackerras2711e242014-12-04 16:43:28 +1100683 spin_lock_irqsave(&vc->stoltb_lock, flags);
684 p = vc->stolen_tb;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000685 if (vc->vcore_state != VCORE_INACTIVE &&
Paul Mackerras2711e242014-12-04 16:43:28 +1100686 vc->preempt_tb != TB_NIL)
687 p += now - vc->preempt_tb;
688 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000689 return p;
690}
691
Paul Mackerras0456ec42012-02-03 00:56:21 +0000692static void kvmppc_create_dtl_entry(struct kvm_vcpu *vcpu,
693 struct kvmppc_vcore *vc)
694{
695 struct dtl_entry *dt;
696 struct lppaca *vpa;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000697 unsigned long stolen;
698 unsigned long core_stolen;
699 u64 now;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000700 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000701
702 dt = vcpu->arch.dtl_ptr;
703 vpa = vcpu->arch.vpa.pinned_addr;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000704 now = mftb();
705 core_stolen = vcore_stolen_time(vc, now);
706 stolen = core_stolen - vcpu->arch.stolen_logged;
707 vcpu->arch.stolen_logged = core_stolen;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000708 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000709 stolen += vcpu->arch.busy_stolen;
710 vcpu->arch.busy_stolen = 0;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000711 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000712 if (!dt || !vpa)
713 return;
714 memset(dt, 0, sizeof(struct dtl_entry));
715 dt->dispatch_reason = 7;
Alexander Graf02407552014-06-11 10:34:19 +0200716 dt->processor_id = cpu_to_be16(vc->pcpu + vcpu->arch.ptid);
717 dt->timebase = cpu_to_be64(now + vc->tb_offset);
718 dt->enqueue_to_dispatch_time = cpu_to_be32(stolen);
719 dt->srr0 = cpu_to_be64(kvmppc_get_pc(vcpu));
720 dt->srr1 = cpu_to_be64(vcpu->arch.shregs.msr);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000721 ++dt;
722 if (dt == vcpu->arch.dtl.pinned_end)
723 dt = vcpu->arch.dtl.pinned_addr;
724 vcpu->arch.dtl_ptr = dt;
725 /* order writing *dt vs. writing vpa->dtl_idx */
726 smp_wmb();
Alexander Graf02407552014-06-11 10:34:19 +0200727 vpa->dtl_idx = cpu_to_be64(++vcpu->arch.dtl_index);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000728 vcpu->arch.dtl.dirty = true;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000729}
730
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000731/* See if there is a doorbell interrupt pending for a vcpu */
732static bool kvmppc_doorbell_pending(struct kvm_vcpu *vcpu)
733{
734 int thr;
735 struct kvmppc_vcore *vc;
736
Paul Mackerras57900692017-05-16 16:41:20 +1000737 if (vcpu->arch.doorbell_request)
738 return true;
739 /*
740 * Ensure that the read of vcore->dpdes comes after the read
741 * of vcpu->doorbell_request. This barrier matches the
Palmer Dabbelt6fabc9f2019-04-25 12:53:39 -0700742 * smp_wmb() in kvmppc_guest_entry_inject().
Paul Mackerras57900692017-05-16 16:41:20 +1000743 */
744 smp_rmb();
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000745 vc = vcpu->arch.vcore;
746 thr = vcpu->vcpu_id - vc->first_vcpuid;
747 return !!(vc->dpdes & (1 << thr));
748}
749
Michael Neuling96423822014-06-02 11:03:01 +1000750static bool kvmppc_power8_compatible(struct kvm_vcpu *vcpu)
751{
752 if (vcpu->arch.vcore->arch_compat >= PVR_ARCH_207)
753 return true;
754 if ((!vcpu->arch.vcore->arch_compat) &&
755 cpu_has_feature(CPU_FTR_ARCH_207S))
756 return true;
757 return false;
758}
759
760static int kvmppc_h_set_mode(struct kvm_vcpu *vcpu, unsigned long mflags,
761 unsigned long resource, unsigned long value1,
762 unsigned long value2)
763{
764 switch (resource) {
765 case H_SET_MODE_RESOURCE_SET_CIABR:
766 if (!kvmppc_power8_compatible(vcpu))
767 return H_P2;
768 if (value2)
769 return H_P4;
770 if (mflags)
771 return H_UNSUPPORTED_FLAG_START;
772 /* Guests can't breakpoint the hypervisor */
773 if ((value1 & CIABR_PRIV) == CIABR_PRIV_HYPER)
774 return H_P3;
775 vcpu->arch.ciabr = value1;
776 return H_SUCCESS;
Ravi Bangoria6f3fe292020-07-23 14:38:10 +0530777 case H_SET_MODE_RESOURCE_SET_DAWR0:
Michael Neuling96423822014-06-02 11:03:01 +1000778 if (!kvmppc_power8_compatible(vcpu))
779 return H_P2;
Michael Neuling398e7122018-03-27 15:37:20 +1100780 if (!ppc_breakpoint_available())
781 return H_P2;
Michael Neuling96423822014-06-02 11:03:01 +1000782 if (mflags)
783 return H_UNSUPPORTED_FLAG_START;
784 if (value2 & DABRX_HYP)
785 return H_P4;
Ravi Bangoria122954ed72020-12-16 16:12:17 +0530786 vcpu->arch.dawr0 = value1;
787 vcpu->arch.dawrx0 = value2;
Michael Neuling96423822014-06-02 11:03:01 +1000788 return H_SUCCESS;
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +0530789 case H_SET_MODE_RESOURCE_SET_DAWR1:
790 if (!kvmppc_power8_compatible(vcpu))
791 return H_P2;
792 if (!ppc_breakpoint_available())
793 return H_P2;
794 if (!cpu_has_feature(CPU_FTR_DAWR1))
795 return H_P2;
796 if (!vcpu->kvm->arch.dawr1_enabled)
797 return H_FUNCTION;
798 if (mflags)
799 return H_UNSUPPORTED_FLAG_START;
800 if (value2 & DABRX_HYP)
801 return H_P4;
802 vcpu->arch.dawr1 = value1;
803 vcpu->arch.dawrx1 = value2;
804 return H_SUCCESS;
Nicholas Piggin55d70042019-10-02 16:00:25 +1000805 case H_SET_MODE_RESOURCE_ADDR_TRANS_MODE:
Nicholas Pigginbcc92a02021-04-12 11:48:37 +1000806 /*
807 * KVM does not support mflags=2 (AIL=2) and AIL=1 is reserved.
808 * Keep this in synch with kvmppc_filter_guest_lpcr_hv.
809 */
Nicholas Piggin55d70042019-10-02 16:00:25 +1000810 if (mflags != 0 && mflags != 3)
811 return H_UNSUPPORTED_FLAG_START;
812 return H_TOO_HARD;
Michael Neuling96423822014-06-02 11:03:01 +1000813 default:
814 return H_TOO_HARD;
815 }
816}
817
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +1100818/* Copy guest memory in place - must reside within a single memslot */
819static int kvmppc_copy_guest(struct kvm *kvm, gpa_t to, gpa_t from,
820 unsigned long len)
821{
822 struct kvm_memory_slot *to_memslot = NULL;
823 struct kvm_memory_slot *from_memslot = NULL;
824 unsigned long to_addr, from_addr;
825 int r;
826
827 /* Get HPA for from address */
828 from_memslot = gfn_to_memslot(kvm, from >> PAGE_SHIFT);
829 if (!from_memslot)
830 return -EFAULT;
831 if ((from + len) >= ((from_memslot->base_gfn + from_memslot->npages)
832 << PAGE_SHIFT))
833 return -EINVAL;
834 from_addr = gfn_to_hva_memslot(from_memslot, from >> PAGE_SHIFT);
835 if (kvm_is_error_hva(from_addr))
836 return -EFAULT;
837 from_addr |= (from & (PAGE_SIZE - 1));
838
839 /* Get HPA for to address */
840 to_memslot = gfn_to_memslot(kvm, to >> PAGE_SHIFT);
841 if (!to_memslot)
842 return -EFAULT;
843 if ((to + len) >= ((to_memslot->base_gfn + to_memslot->npages)
844 << PAGE_SHIFT))
845 return -EINVAL;
846 to_addr = gfn_to_hva_memslot(to_memslot, to >> PAGE_SHIFT);
847 if (kvm_is_error_hva(to_addr))
848 return -EFAULT;
849 to_addr |= (to & (PAGE_SIZE - 1));
850
851 /* Perform copy */
852 r = raw_copy_in_user((void __user *)to_addr, (void __user *)from_addr,
853 len);
854 if (r)
855 return -EFAULT;
856 mark_page_dirty(kvm, to >> PAGE_SHIFT);
857 return 0;
858}
859
860static long kvmppc_h_page_init(struct kvm_vcpu *vcpu, unsigned long flags,
861 unsigned long dest, unsigned long src)
862{
863 u64 pg_sz = SZ_4K; /* 4K page size */
864 u64 pg_mask = SZ_4K - 1;
865 int ret;
866
867 /* Check for invalid flags (H_PAGE_SET_LOANED covers all CMO flags) */
868 if (flags & ~(H_ICACHE_INVALIDATE | H_ICACHE_SYNCHRONIZE |
869 H_ZERO_PAGE | H_COPY_PAGE | H_PAGE_SET_LOANED))
870 return H_PARAMETER;
871
872 /* dest (and src if copy_page flag set) must be page aligned */
873 if ((dest & pg_mask) || ((flags & H_COPY_PAGE) && (src & pg_mask)))
874 return H_PARAMETER;
875
876 /* zero and/or copy the page as determined by the flags */
877 if (flags & H_COPY_PAGE) {
878 ret = kvmppc_copy_guest(vcpu->kvm, dest, src, pg_sz);
879 if (ret < 0)
880 return H_PARAMETER;
881 } else if (flags & H_ZERO_PAGE) {
882 ret = kvm_clear_guest(vcpu->kvm, dest, pg_sz);
883 if (ret < 0)
884 return H_PARAMETER;
885 }
886
887 /* We can ignore the remaining flags */
888
889 return H_SUCCESS;
890}
891
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100892static int kvm_arch_vcpu_yield_to(struct kvm_vcpu *target)
893{
894 struct kvmppc_vcore *vcore = target->arch.vcore;
895
896 /*
897 * We expect to have been called by the real mode handler
898 * (kvmppc_rm_h_confer()) which would have directly returned
899 * H_SUCCESS if the source vcore wasn't idle (e.g. if it may
900 * have useful work to do and should not confer) so we don't
901 * recheck that here.
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +1000902 *
903 * In the case of the P9 single vcpu per vcore case, the real
904 * mode handler is not called but no other threads are in the
905 * source vcore.
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100906 */
907
908 spin_lock(&vcore->lock);
909 if (target->arch.state == KVMPPC_VCPU_RUNNABLE &&
Paul Mackerrasec257162015-06-24 21:18:03 +1000910 vcore->vcore_state != VCORE_INACTIVE &&
911 vcore->runner)
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100912 target = vcore->runner;
913 spin_unlock(&vcore->lock);
914
915 return kvm_vcpu_yield_to(target);
916}
917
918static int kvmppc_get_yield_count(struct kvm_vcpu *vcpu)
919{
920 int yield_count = 0;
921 struct lppaca *lppaca;
922
923 spin_lock(&vcpu->arch.vpa_update_lock);
924 lppaca = (struct lppaca *)vcpu->arch.vpa.pinned_addr;
925 if (lppaca)
Paul Mackerrasecb6d612015-03-20 20:39:39 +1100926 yield_count = be32_to_cpu(lppaca->yield_count);
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100927 spin_unlock(&vcpu->arch.vpa_update_lock);
928 return yield_count;
929}
930
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000931int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
932{
933 unsigned long req = kvmppc_get_gpr(vcpu, 3);
934 unsigned long target, ret = H_SUCCESS;
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100935 int yield_count;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000936 struct kvm_vcpu *tvcpu;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000937 int idx, rc;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000938
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000939 if (req <= MAX_HCALL_OPCODE &&
940 !test_bit(req/4, vcpu->kvm->arch.enabled_hcalls))
941 return RESUME_HOST;
942
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000943 switch (req) {
944 case H_CEDE:
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000945 break;
946 case H_PROD:
947 target = kvmppc_get_gpr(vcpu, 4);
948 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
949 if (!tvcpu) {
950 ret = H_PARAMETER;
951 break;
952 }
953 tvcpu->arch.prodded = 1;
954 smp_mb();
Paul Mackerras8464c882016-12-06 20:42:05 +1100955 if (tvcpu->arch.ceded)
956 kvmppc_fast_vcpu_kick_hv(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000957 break;
958 case H_CONFER:
Paul Mackerras42d76042013-09-06 13:23:21 +1000959 target = kvmppc_get_gpr(vcpu, 4);
960 if (target == -1)
961 break;
962 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
963 if (!tvcpu) {
964 ret = H_PARAMETER;
965 break;
966 }
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100967 yield_count = kvmppc_get_gpr(vcpu, 5);
968 if (kvmppc_get_yield_count(tvcpu) != yield_count)
969 break;
970 kvm_arch_vcpu_yield_to(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000971 break;
972 case H_REGISTER_VPA:
973 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
974 kvmppc_get_gpr(vcpu, 5),
975 kvmppc_get_gpr(vcpu, 6));
976 break;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000977 case H_RTAS:
978 if (list_empty(&vcpu->kvm->arch.rtas_tokens))
979 return RESUME_HOST;
980
Paul Mackerrasc9438092013-11-16 17:46:05 +1100981 idx = srcu_read_lock(&vcpu->kvm->srcu);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000982 rc = kvmppc_rtas_hcall(vcpu);
Paul Mackerrasc9438092013-11-16 17:46:05 +1100983 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000984
985 if (rc == -ENOENT)
986 return RESUME_HOST;
987 else if (rc == 0)
988 break;
989
990 /* Send the error out to userspace via KVM_RUN */
991 return rc;
David Gibson99342cf82015-02-05 11:53:25 +1100992 case H_LOGICAL_CI_LOAD:
993 ret = kvmppc_h_logical_ci_load(vcpu);
994 if (ret == H_TOO_HARD)
995 return RESUME_HOST;
996 break;
997 case H_LOGICAL_CI_STORE:
998 ret = kvmppc_h_logical_ci_store(vcpu);
999 if (ret == H_TOO_HARD)
1000 return RESUME_HOST;
1001 break;
Michael Neuling96423822014-06-02 11:03:01 +10001002 case H_SET_MODE:
1003 ret = kvmppc_h_set_mode(vcpu, kvmppc_get_gpr(vcpu, 4),
1004 kvmppc_get_gpr(vcpu, 5),
1005 kvmppc_get_gpr(vcpu, 6),
1006 kvmppc_get_gpr(vcpu, 7));
1007 if (ret == H_TOO_HARD)
1008 return RESUME_HOST;
1009 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +00001010 case H_XIRR:
1011 case H_CPPR:
1012 case H_EOI:
1013 case H_IPI:
Paul Mackerras8e44ddc2013-05-23 15:42:21 +00001014 case H_IPOLL:
1015 case H_XIRR_X:
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +00001016 if (kvmppc_xics_enabled(vcpu)) {
Paul Mackerras03f95332019-02-04 22:07:20 +11001017 if (xics_on_xive()) {
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001018 ret = H_NOT_AVAILABLE;
1019 return RESUME_GUEST;
1020 }
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +00001021 ret = kvmppc_xics_hcall(vcpu, req);
1022 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11001023 }
1024 return RESUME_HOST;
Paul Mackerras4bad7772018-10-08 16:31:06 +11001025 case H_SET_DABR:
1026 ret = kvmppc_h_set_dabr(vcpu, kvmppc_get_gpr(vcpu, 4));
1027 break;
1028 case H_SET_XDABR:
1029 ret = kvmppc_h_set_xdabr(vcpu, kvmppc_get_gpr(vcpu, 4),
1030 kvmppc_get_gpr(vcpu, 5));
1031 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001032#ifdef CONFIG_SPAPR_TCE_IOMMU
Paul Mackerras4bad7772018-10-08 16:31:06 +11001033 case H_GET_TCE:
1034 ret = kvmppc_h_get_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1035 kvmppc_get_gpr(vcpu, 5));
1036 if (ret == H_TOO_HARD)
1037 return RESUME_HOST;
1038 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11001039 case H_PUT_TCE:
1040 ret = kvmppc_h_put_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1041 kvmppc_get_gpr(vcpu, 5),
1042 kvmppc_get_gpr(vcpu, 6));
1043 if (ret == H_TOO_HARD)
1044 return RESUME_HOST;
1045 break;
1046 case H_PUT_TCE_INDIRECT:
1047 ret = kvmppc_h_put_tce_indirect(vcpu, kvmppc_get_gpr(vcpu, 4),
1048 kvmppc_get_gpr(vcpu, 5),
1049 kvmppc_get_gpr(vcpu, 6),
1050 kvmppc_get_gpr(vcpu, 7));
1051 if (ret == H_TOO_HARD)
1052 return RESUME_HOST;
1053 break;
1054 case H_STUFF_TCE:
1055 ret = kvmppc_h_stuff_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1056 kvmppc_get_gpr(vcpu, 5),
1057 kvmppc_get_gpr(vcpu, 6),
1058 kvmppc_get_gpr(vcpu, 7));
1059 if (ret == H_TOO_HARD)
1060 return RESUME_HOST;
1061 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001062#endif
Paul Mackerras4bad7772018-10-08 16:31:06 +11001063 case H_RANDOM:
1064 if (!powernv_get_random_long(&vcpu->arch.regs.gpr[4]))
1065 ret = H_HARDWARE;
1066 break;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001067
1068 case H_SET_PARTITION_TABLE:
1069 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001070 if (nesting_enabled(vcpu->kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001071 ret = kvmhv_set_partition_table(vcpu);
1072 break;
1073 case H_ENTER_NESTED:
1074 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001075 if (!nesting_enabled(vcpu->kvm))
Paul Mackerras360cae32018-10-08 16:31:04 +11001076 break;
1077 ret = kvmhv_enter_nested_guest(vcpu);
1078 if (ret == H_INTERRUPT) {
1079 kvmppc_set_gpr(vcpu, 3, 0);
Michael Roth6c08ec12018-11-08 21:27:23 -06001080 vcpu->arch.hcall_needed = 0;
Paul Mackerras360cae32018-10-08 16:31:04 +11001081 return -EINTR;
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11001082 } else if (ret == H_TOO_HARD) {
1083 kvmppc_set_gpr(vcpu, 3, 0);
1084 vcpu->arch.hcall_needed = 0;
1085 return RESUME_HOST;
Paul Mackerras360cae32018-10-08 16:31:04 +11001086 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001087 break;
1088 case H_TLB_INVALIDATE:
1089 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001090 if (nesting_enabled(vcpu->kvm))
1091 ret = kvmhv_do_nested_tlbie(vcpu);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001092 break;
Suraj Jitindar Singh6ff887b2018-12-14 16:29:09 +11001093 case H_COPY_TOFROM_GUEST:
1094 ret = H_FUNCTION;
1095 if (nesting_enabled(vcpu->kvm))
1096 ret = kvmhv_copy_tofrom_guest_nested(vcpu);
1097 break;
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001098 case H_PAGE_INIT:
1099 ret = kvmppc_h_page_init(vcpu, kvmppc_get_gpr(vcpu, 4),
1100 kvmppc_get_gpr(vcpu, 5),
1101 kvmppc_get_gpr(vcpu, 6));
1102 break;
Bharata B Raoca9f4942019-11-25 08:36:26 +05301103 case H_SVM_PAGE_IN:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001104 ret = H_UNSUPPORTED;
1105 if (kvmppc_get_srr1(vcpu) & MSR_S)
1106 ret = kvmppc_h_svm_page_in(vcpu->kvm,
1107 kvmppc_get_gpr(vcpu, 4),
1108 kvmppc_get_gpr(vcpu, 5),
1109 kvmppc_get_gpr(vcpu, 6));
Bharata B Raoca9f4942019-11-25 08:36:26 +05301110 break;
1111 case H_SVM_PAGE_OUT:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001112 ret = H_UNSUPPORTED;
1113 if (kvmppc_get_srr1(vcpu) & MSR_S)
1114 ret = kvmppc_h_svm_page_out(vcpu->kvm,
1115 kvmppc_get_gpr(vcpu, 4),
1116 kvmppc_get_gpr(vcpu, 5),
1117 kvmppc_get_gpr(vcpu, 6));
Bharata B Raoca9f4942019-11-25 08:36:26 +05301118 break;
1119 case H_SVM_INIT_START:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001120 ret = H_UNSUPPORTED;
1121 if (kvmppc_get_srr1(vcpu) & MSR_S)
1122 ret = kvmppc_h_svm_init_start(vcpu->kvm);
Bharata B Raoca9f4942019-11-25 08:36:26 +05301123 break;
1124 case H_SVM_INIT_DONE:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001125 ret = H_UNSUPPORTED;
1126 if (kvmppc_get_srr1(vcpu) & MSR_S)
1127 ret = kvmppc_h_svm_init_done(vcpu->kvm);
Bharata B Raoca9f4942019-11-25 08:36:26 +05301128 break;
Sukadev Bhattiprolu3a439702020-01-06 18:02:37 -08001129 case H_SVM_INIT_ABORT:
Laurent Dufoure3326ae2020-05-20 19:43:08 +02001130 /*
1131 * Even if that call is made by the Ultravisor, the SSR1 value
1132 * is the guest context one, with the secure bit clear as it has
1133 * not yet been secured. So we can't check it here.
1134 * Instead the kvm->arch.secure_guest flag is checked inside
1135 * kvmppc_h_svm_init_abort().
1136 */
1137 ret = kvmppc_h_svm_init_abort(vcpu->kvm);
Sukadev Bhattiprolu3a439702020-01-06 18:02:37 -08001138 break;
Bharata B Raoca9f4942019-11-25 08:36:26 +05301139
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001140 default:
1141 return RESUME_HOST;
1142 }
1143 kvmppc_set_gpr(vcpu, 3, ret);
1144 vcpu->arch.hcall_needed = 0;
1145 return RESUME_GUEST;
1146}
1147
Paul Mackerras4bad7772018-10-08 16:31:06 +11001148/*
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001149 * Handle H_CEDE in the P9 path where we don't call the real-mode hcall
1150 * handlers in book3s_hv_rmhandlers.S.
1151 *
Paul Mackerras4bad7772018-10-08 16:31:06 +11001152 * This has to be done early, not in kvmppc_pseries_do_hcall(), so
1153 * that the cede logic in kvmppc_run_single_vcpu() works properly.
1154 */
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001155static void kvmppc_cede(struct kvm_vcpu *vcpu)
Paul Mackerras4bad7772018-10-08 16:31:06 +11001156{
1157 vcpu->arch.shregs.msr |= MSR_EE;
1158 vcpu->arch.ceded = 1;
1159 smp_mb();
1160 if (vcpu->arch.prodded) {
1161 vcpu->arch.prodded = 0;
1162 smp_mb();
1163 vcpu->arch.ceded = 0;
1164 }
1165}
1166
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001167static int kvmppc_hcall_impl_hv(unsigned long cmd)
1168{
1169 switch (cmd) {
1170 case H_CEDE:
1171 case H_PROD:
1172 case H_CONFER:
1173 case H_REGISTER_VPA:
Michael Neuling96423822014-06-02 11:03:01 +10001174 case H_SET_MODE:
David Gibson99342cf82015-02-05 11:53:25 +11001175 case H_LOGICAL_CI_LOAD:
1176 case H_LOGICAL_CI_STORE:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001177#ifdef CONFIG_KVM_XICS
1178 case H_XIRR:
1179 case H_CPPR:
1180 case H_EOI:
1181 case H_IPI:
1182 case H_IPOLL:
1183 case H_XIRR_X:
1184#endif
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001185 case H_PAGE_INIT:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001186 return 1;
1187 }
1188
1189 /* See if it's in the real-mode table */
1190 return kvmppc_hcall_impl_hv_realmode(cmd);
1191}
1192
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001193static int kvmppc_emulate_debug_inst(struct kvm_vcpu *vcpu)
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301194{
1195 u32 last_inst;
1196
1197 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst) !=
1198 EMULATE_DONE) {
1199 /*
1200 * Fetch failed, so return to guest and
1201 * try executing it again.
1202 */
1203 return RESUME_GUEST;
1204 }
1205
1206 if (last_inst == KVMPPC_INST_SW_BREAKPOINT) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001207 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
1208 vcpu->run->debug.arch.address = kvmppc_get_pc(vcpu);
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301209 return RESUME_HOST;
1210 } else {
1211 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1212 return RESUME_GUEST;
1213 }
1214}
1215
Paul Mackerras57900692017-05-16 16:41:20 +10001216static void do_nothing(void *x)
1217{
1218}
1219
1220static unsigned long kvmppc_read_dpdes(struct kvm_vcpu *vcpu)
1221{
1222 int thr, cpu, pcpu, nthreads;
1223 struct kvm_vcpu *v;
1224 unsigned long dpdes;
1225
1226 nthreads = vcpu->kvm->arch.emul_smt_mode;
1227 dpdes = 0;
1228 cpu = vcpu->vcpu_id & ~(nthreads - 1);
1229 for (thr = 0; thr < nthreads; ++thr, ++cpu) {
1230 v = kvmppc_find_vcpu(vcpu->kvm, cpu);
1231 if (!v)
1232 continue;
1233 /*
1234 * If the vcpu is currently running on a physical cpu thread,
1235 * interrupt it in order to pull it out of the guest briefly,
1236 * which will update its vcore->dpdes value.
1237 */
1238 pcpu = READ_ONCE(v->cpu);
1239 if (pcpu >= 0)
1240 smp_call_function_single(pcpu, do_nothing, NULL, 1);
1241 if (kvmppc_doorbell_pending(v))
1242 dpdes |= 1 << thr;
1243 }
1244 return dpdes;
1245}
1246
1247/*
1248 * On POWER9, emulate doorbell-related instructions in order to
1249 * give the guest the illusion of running on a multi-threaded core.
1250 * The instructions emulated are msgsndp, msgclrp, mfspr TIR,
1251 * and mfspr DPDES.
1252 */
1253static int kvmppc_emulate_doorbell_instr(struct kvm_vcpu *vcpu)
1254{
1255 u32 inst, rb, thr;
1256 unsigned long arg;
1257 struct kvm *kvm = vcpu->kvm;
1258 struct kvm_vcpu *tvcpu;
1259
Paul Mackerras57900692017-05-16 16:41:20 +10001260 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &inst) != EMULATE_DONE)
1261 return RESUME_GUEST;
1262 if (get_op(inst) != 31)
1263 return EMULATE_FAIL;
1264 rb = get_rb(inst);
1265 thr = vcpu->vcpu_id & (kvm->arch.emul_smt_mode - 1);
1266 switch (get_xop(inst)) {
1267 case OP_31_XOP_MSGSNDP:
1268 arg = kvmppc_get_gpr(vcpu, rb);
Leonardo Bras87fb4972020-12-08 18:57:08 -03001269 if (((arg >> 27) & 0x1f) != PPC_DBELL_SERVER)
Paul Mackerras57900692017-05-16 16:41:20 +10001270 break;
Leonardo Bras87fb4972020-12-08 18:57:08 -03001271 arg &= 0x7f;
Paul Mackerras57900692017-05-16 16:41:20 +10001272 if (arg >= kvm->arch.emul_smt_mode)
1273 break;
1274 tvcpu = kvmppc_find_vcpu(kvm, vcpu->vcpu_id - thr + arg);
1275 if (!tvcpu)
1276 break;
1277 if (!tvcpu->arch.doorbell_request) {
1278 tvcpu->arch.doorbell_request = 1;
1279 kvmppc_fast_vcpu_kick_hv(tvcpu);
1280 }
1281 break;
1282 case OP_31_XOP_MSGCLRP:
1283 arg = kvmppc_get_gpr(vcpu, rb);
Leonardo Bras87fb4972020-12-08 18:57:08 -03001284 if (((arg >> 27) & 0x1f) != PPC_DBELL_SERVER)
Paul Mackerras57900692017-05-16 16:41:20 +10001285 break;
1286 vcpu->arch.vcore->dpdes = 0;
1287 vcpu->arch.doorbell_request = 0;
1288 break;
1289 case OP_31_XOP_MFSPR:
1290 switch (get_sprn(inst)) {
1291 case SPRN_TIR:
1292 arg = thr;
1293 break;
1294 case SPRN_DPDES:
1295 arg = kvmppc_read_dpdes(vcpu);
1296 break;
1297 default:
1298 return EMULATE_FAIL;
1299 }
1300 kvmppc_set_gpr(vcpu, get_rt(inst), arg);
1301 break;
1302 default:
1303 return EMULATE_FAIL;
1304 }
1305 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
1306 return RESUME_GUEST;
1307}
1308
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001309static int kvmppc_handle_exit_hv(struct kvm_vcpu *vcpu,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301310 struct task_struct *tsk)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001311{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001312 struct kvm_run *run = vcpu->run;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001313 int r = RESUME_HOST;
1314
1315 vcpu->stat.sum_exits++;
1316
Paul Mackerras1c9e3d52015-11-12 16:43:48 +11001317 /*
1318 * This can happen if an interrupt occurs in the last stages
1319 * of guest entry or the first stages of guest exit (i.e. after
1320 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1321 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1322 * That can happen due to a bug, or due to a machine check
1323 * occurring at just the wrong time.
1324 */
1325 if (vcpu->arch.shregs.msr & MSR_HV) {
1326 printk(KERN_EMERG "KVM trap in HV mode!\n");
1327 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1328 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1329 vcpu->arch.shregs.msr);
1330 kvmppc_dump_regs(vcpu);
1331 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1332 run->hw.hardware_exit_reason = vcpu->arch.trap;
1333 return RESUME_HOST;
1334 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001335 run->exit_reason = KVM_EXIT_UNKNOWN;
1336 run->ready_for_interrupt_injection = 1;
1337 switch (vcpu->arch.trap) {
1338 /* We're good on these - the host merely wanted to get our attention */
1339 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1340 vcpu->stat.dec_exits++;
1341 r = RESUME_GUEST;
1342 break;
1343 case BOOK3S_INTERRUPT_EXTERNAL:
Paul Mackerras5d00f662014-01-08 21:25:28 +11001344 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerras84f71392016-11-22 14:30:14 +11001345 case BOOK3S_INTERRUPT_H_VIRT:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001346 vcpu->stat.ext_intr_exits++;
1347 r = RESUME_GUEST;
1348 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11001349 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
Mahesh Salgaonkardee6f242014-11-03 15:51:57 +11001350 case BOOK3S_INTERRUPT_HMI:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001351 case BOOK3S_INTERRUPT_PERFMON:
Nicholas Piggin6de66382017-11-05 23:33:55 +11001352 case BOOK3S_INTERRUPT_SYSTEM_RESET:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001353 r = RESUME_GUEST;
1354 break;
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001355 case BOOK3S_INTERRUPT_MACHINE_CHECK: {
1356 static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,
1357 DEFAULT_RATELIMIT_BURST);
1358 /*
1359 * Print the MCE event to host console. Ratelimit so the guest
1360 * can't flood the host log.
1361 */
1362 if (__ratelimit(&rs))
1363 machine_check_print_event_info(&vcpu->arch.mce_evt,false, true);
Paul Mackerras884dfb72019-02-21 13:38:49 +11001364
1365 /*
1366 * If the guest can do FWNMI, exit to userspace so it can
1367 * deliver a FWNMI to the guest.
1368 * Otherwise we synthesize a machine check for the guest
1369 * so that it knows that the machine check occurred.
1370 */
1371 if (!vcpu->kvm->arch.fwnmi_enabled) {
1372 ulong flags = vcpu->arch.shregs.msr & 0x083c0000;
1373 kvmppc_core_queue_machine_check(vcpu, flags);
1374 r = RESUME_GUEST;
1375 break;
1376 }
1377
Aravinda Prasade20bbd32017-05-11 16:33:37 +05301378 /* Exit to guest with KVM_EXIT_NMI as exit reason */
1379 run->exit_reason = KVM_EXIT_NMI;
1380 run->hw.hardware_exit_reason = vcpu->arch.trap;
1381 /* Clear out the old NMI status from run->flags */
1382 run->flags &= ~KVM_RUN_PPC_NMI_DISP_MASK;
1383 /* Now set the NMI status */
1384 if (vcpu->arch.mce_evt.disposition == MCE_DISPOSITION_RECOVERED)
1385 run->flags |= KVM_RUN_PPC_NMI_DISP_FULLY_RECOV;
1386 else
1387 run->flags |= KVM_RUN_PPC_NMI_DISP_NOT_RECOV;
1388
1389 r = RESUME_HOST;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001390 break;
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001391 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001392 case BOOK3S_INTERRUPT_PROGRAM:
1393 {
1394 ulong flags;
1395 /*
1396 * Normally program interrupts are delivered directly
1397 * to the guest by the hardware, but we can get here
1398 * as a result of a hypervisor emulation interrupt
1399 * (e40) getting turned into a 700 by BML RTAS.
1400 */
1401 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
1402 kvmppc_core_queue_program(vcpu, flags);
1403 r = RESUME_GUEST;
1404 break;
1405 }
1406 case BOOK3S_INTERRUPT_SYSCALL:
1407 {
Paul Mackerrasde56a942011-06-29 00:21:34 +00001408 int i;
1409
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001410 if (unlikely(vcpu->arch.shregs.msr & MSR_PR)) {
1411 /*
1412 * Guest userspace executed sc 1. This can only be
1413 * reached by the P9 path because the old path
1414 * handles this case in realmode hcall handlers.
1415 *
1416 * Radix guests can not run PR KVM or nested HV hash
1417 * guests which might run PR KVM, so this is always
1418 * a privilege fault. Send a program check to guest
1419 * kernel.
1420 */
1421 kvmppc_core_queue_program(vcpu, SRR1_PROGPRIV);
1422 r = RESUME_GUEST;
1423 break;
1424 }
Liu Ping Fan27025a62013-11-19 14:12:48 +08001425
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10001426 /*
1427 * hcall - gather args and set exit_reason. This will next be
1428 * handled by kvmppc_pseries_do_hcall which may be able to deal
1429 * with it and resume guest, or may punt to userspace.
1430 */
Paul Mackerrasde56a942011-06-29 00:21:34 +00001431 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
1432 for (i = 0; i < 9; ++i)
1433 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
1434 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1435 vcpu->arch.hcall_needed = 1;
1436 r = RESUME_HOST;
1437 break;
1438 }
1439 /*
Paul Mackerras342d3db2011-12-12 12:38:05 +00001440 * We get these next two if the guest accesses a page which it thinks
1441 * it has mapped but which is not actually present, either because
1442 * it is for an emulated I/O device or because the corresonding
1443 * host page has been paged out. Any other HDSI/HISI interrupts
1444 * have been handled already.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001445 */
1446 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001447 r = RESUME_PAGE_FAULT;
Nicholas Piggin89d35b22021-05-28 19:07:34 +10001448 if (vcpu->arch.fault_dsisr == HDSISR_CANARY)
1449 r = RESUME_GUEST; /* Just retry if it's the canary */
Paul Mackerrasde56a942011-06-29 00:21:34 +00001450 break;
1451 case BOOK3S_INTERRUPT_H_INST_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001452 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
Paul Mackerras32eb1502018-10-08 16:30:56 +11001453 vcpu->arch.fault_dsisr = vcpu->arch.shregs.msr &
1454 DSISR_SRR1_MATCH_64S;
1455 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1456 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001457 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001458 break;
1459 /*
1460 * This occurs if the guest executes an illegal instruction.
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301461 * If the guest debug is disabled, generate a program interrupt
1462 * to the guest. If guest debug is enabled, we need to check
1463 * whether the instruction is a software breakpoint instruction.
1464 * Accordingly return to Guest or Host.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001465 */
1466 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerras4a157d62014-12-03 13:30:39 +11001467 if (vcpu->arch.emul_inst != KVM_INST_FETCH_FAILED)
1468 vcpu->arch.last_inst = kvmppc_need_byteswap(vcpu) ?
1469 swab32(vcpu->arch.emul_inst) :
1470 vcpu->arch.emul_inst;
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301471 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001472 r = kvmppc_emulate_debug_inst(vcpu);
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301473 } else {
1474 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1475 r = RESUME_GUEST;
1476 }
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001477 break;
1478 /*
1479 * This occurs if the guest (kernel or userspace), does something that
Paul Mackerras57900692017-05-16 16:41:20 +10001480 * is prohibited by HFSCR.
1481 * On POWER9, this could be a doorbell instruction that we need
1482 * to emulate.
1483 * Otherwise, we just generate a program interrupt to the guest.
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001484 */
1485 case BOOK3S_INTERRUPT_H_FAC_UNAVAIL:
Paul Mackerras57900692017-05-16 16:41:20 +10001486 r = EMULATE_FAIL;
Paul Mackerras36ee41d2018-01-30 10:51:32 +11001487 if (((vcpu->arch.hfscr >> 56) == FSCR_MSGP_LG) &&
Paul Mackerras53655dd2018-10-08 16:30:54 +11001488 cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras57900692017-05-16 16:41:20 +10001489 r = kvmppc_emulate_doorbell_instr(vcpu);
1490 if (r == EMULATE_FAIL) {
1491 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1492 r = RESUME_GUEST;
1493 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001494 break;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11001495
1496#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1497 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1498 /*
1499 * This occurs for various TM-related instructions that
1500 * we need to emulate on POWER9 DD2.2. We have already
1501 * handled the cases where the guest was in real-suspend
1502 * mode and was transitioning to transactional state.
1503 */
1504 r = kvmhv_p9_tm_emulation(vcpu);
1505 break;
1506#endif
1507
Suresh Warrierf7af5202016-08-19 15:35:52 +10001508 case BOOK3S_INTERRUPT_HV_RM_HARD:
1509 r = RESUME_PASSTHROUGH;
1510 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001511 default:
1512 kvmppc_dump_regs(vcpu);
1513 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1514 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1515 vcpu->arch.shregs.msr);
Paul Mackerrasf3271d42013-09-20 14:52:41 +10001516 run->hw.hardware_exit_reason = vcpu->arch.trap;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001517 r = RESUME_HOST;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001518 break;
1519 }
1520
Paul Mackerrasde56a942011-06-29 00:21:34 +00001521 return r;
1522}
1523
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001524static int kvmppc_handle_nested_exit(struct kvm_vcpu *vcpu)
Paul Mackerras360cae32018-10-08 16:31:04 +11001525{
1526 int r;
1527 int srcu_idx;
1528
1529 vcpu->stat.sum_exits++;
1530
1531 /*
1532 * This can happen if an interrupt occurs in the last stages
1533 * of guest entry or the first stages of guest exit (i.e. after
1534 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1535 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1536 * That can happen due to a bug, or due to a machine check
1537 * occurring at just the wrong time.
1538 */
1539 if (vcpu->arch.shregs.msr & MSR_HV) {
1540 pr_emerg("KVM trap in HV mode while nested!\n");
1541 pr_emerg("trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1542 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1543 vcpu->arch.shregs.msr);
1544 kvmppc_dump_regs(vcpu);
1545 return RESUME_HOST;
1546 }
1547 switch (vcpu->arch.trap) {
1548 /* We're good on these - the host merely wanted to get our attention */
1549 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1550 vcpu->stat.dec_exits++;
1551 r = RESUME_GUEST;
1552 break;
1553 case BOOK3S_INTERRUPT_EXTERNAL:
1554 vcpu->stat.ext_intr_exits++;
1555 r = RESUME_HOST;
1556 break;
1557 case BOOK3S_INTERRUPT_H_DOORBELL:
1558 case BOOK3S_INTERRUPT_H_VIRT:
1559 vcpu->stat.ext_intr_exits++;
1560 r = RESUME_GUEST;
1561 break;
1562 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
1563 case BOOK3S_INTERRUPT_HMI:
1564 case BOOK3S_INTERRUPT_PERFMON:
1565 case BOOK3S_INTERRUPT_SYSTEM_RESET:
1566 r = RESUME_GUEST;
1567 break;
1568 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001569 {
1570 static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,
1571 DEFAULT_RATELIMIT_BURST);
Paul Mackerras360cae32018-10-08 16:31:04 +11001572 /* Pass the machine check to the L1 guest */
1573 r = RESUME_HOST;
1574 /* Print the MCE event to host console. */
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001575 if (__ratelimit(&rs))
1576 machine_check_print_event_info(&vcpu->arch.mce_evt, false, true);
Paul Mackerras360cae32018-10-08 16:31:04 +11001577 break;
Nicholas Piggin1d15ffd2020-11-28 17:07:24 +10001578 }
Paul Mackerras360cae32018-10-08 16:31:04 +11001579 /*
1580 * We get these next two if the guest accesses a page which it thinks
1581 * it has mapped but which is not actually present, either because
1582 * it is for an emulated I/O device or because the corresonding
1583 * host page has been paged out.
1584 */
1585 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
1586 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001587 r = kvmhv_nested_page_fault(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11001588 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1589 break;
1590 case BOOK3S_INTERRUPT_H_INST_STORAGE:
1591 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
1592 vcpu->arch.fault_dsisr = kvmppc_get_msr(vcpu) &
1593 DSISR_SRR1_MATCH_64S;
1594 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1595 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
1596 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001597 r = kvmhv_nested_page_fault(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11001598 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1599 break;
1600
1601#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1602 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1603 /*
1604 * This occurs for various TM-related instructions that
1605 * we need to emulate on POWER9 DD2.2. We have already
1606 * handled the cases where the guest was in real-suspend
1607 * mode and was transitioning to transactional state.
1608 */
1609 r = kvmhv_p9_tm_emulation(vcpu);
1610 break;
1611#endif
1612
1613 case BOOK3S_INTERRUPT_HV_RM_HARD:
1614 vcpu->arch.trap = 0;
1615 r = RESUME_GUEST;
Paul Mackerras03f95332019-02-04 22:07:20 +11001616 if (!xics_on_xive())
Paul Mackerras360cae32018-10-08 16:31:04 +11001617 kvmppc_xics_rm_complete(vcpu, 0);
1618 break;
1619 default:
1620 r = RESUME_HOST;
1621 break;
1622 }
1623
1624 return r;
1625}
1626
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301627static int kvm_arch_vcpu_ioctl_get_sregs_hv(struct kvm_vcpu *vcpu,
1628 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001629{
1630 int i;
1631
Paul Mackerrasde56a942011-06-29 00:21:34 +00001632 memset(sregs, 0, sizeof(struct kvm_sregs));
Aneesh Kumar K.V87916442013-08-22 17:08:39 +05301633 sregs->pvr = vcpu->arch.pvr;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001634 for (i = 0; i < vcpu->arch.slb_max; i++) {
1635 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
1636 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1637 }
1638
1639 return 0;
1640}
1641
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301642static int kvm_arch_vcpu_ioctl_set_sregs_hv(struct kvm_vcpu *vcpu,
1643 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001644{
1645 int i, j;
1646
Paul Mackerras9333e6c2014-09-02 16:14:43 +10001647 /* Only accept the same PVR as the host's, since we can't spoof it */
1648 if (sregs->pvr != vcpu->arch.pvr)
1649 return -EINVAL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001650
1651 j = 0;
1652 for (i = 0; i < vcpu->arch.slb_nr; i++) {
1653 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
1654 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
1655 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
1656 ++j;
1657 }
1658 }
1659 vcpu->arch.slb_max = j;
1660
1661 return 0;
1662}
1663
Nicholas Piggin67145ef2021-04-12 11:48:36 +10001664/*
1665 * Enforce limits on guest LPCR values based on hardware availability,
1666 * guest configuration, and possibly hypervisor support and security
1667 * concerns.
1668 */
1669unsigned long kvmppc_filter_lpcr_hv(struct kvm *kvm, unsigned long lpcr)
1670{
Nicholas Piggin72c15282021-04-12 11:48:38 +10001671 /* LPCR_TC only applies to HPT guests */
1672 if (kvm_is_radix(kvm))
1673 lpcr &= ~LPCR_TC;
1674
Nicholas Piggin67145ef2021-04-12 11:48:36 +10001675 /* On POWER8 and above, userspace can modify AIL */
1676 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
1677 lpcr &= ~LPCR_AIL;
Nicholas Pigginbcc92a02021-04-12 11:48:37 +10001678 if ((lpcr & LPCR_AIL) != LPCR_AIL_3)
1679 lpcr &= ~LPCR_AIL; /* LPCR[AIL]=1/2 is disallowed */
Nicholas Piggin67145ef2021-04-12 11:48:36 +10001680
1681 /*
1682 * On POWER9, allow userspace to enable large decrementer for the
1683 * guest, whether or not the host has it enabled.
1684 */
1685 if (!cpu_has_feature(CPU_FTR_ARCH_300))
1686 lpcr &= ~LPCR_LD;
1687
1688 return lpcr;
1689}
1690
1691static void verify_lpcr(struct kvm *kvm, unsigned long lpcr)
1692{
1693 if (lpcr != kvmppc_filter_lpcr_hv(kvm, lpcr)) {
1694 WARN_ONCE(1, "lpcr 0x%lx differs from filtered 0x%lx\n",
1695 lpcr, kvmppc_filter_lpcr_hv(kvm, lpcr));
1696 }
1697}
1698
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001699static void kvmppc_set_lpcr(struct kvm_vcpu *vcpu, u64 new_lpcr,
1700 bool preserve_top32)
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001701{
Paul Mackerras8f902b02015-03-20 20:39:38 +11001702 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001703 struct kvmppc_vcore *vc = vcpu->arch.vcore;
1704 u64 mask;
1705
1706 spin_lock(&vc->lock);
Nicholas Piggin67145ef2021-04-12 11:48:36 +10001707
1708 /*
1709 * Userspace can only modify
1710 * DPFD (default prefetch depth), ILE (interrupt little-endian),
1711 * TC (translation control), AIL (alternate interrupt location),
1712 * LD (large decrementer).
1713 * These are subject to restrictions from kvmppc_filter_lcpr_hv().
1714 */
1715 mask = LPCR_DPFD | LPCR_ILE | LPCR_TC | LPCR_AIL | LPCR_LD;
1716
1717 /* Broken 32-bit version of LPCR must not clear top bits */
1718 if (preserve_top32)
1719 mask &= 0xFFFFFFFF;
1720
1721 new_lpcr = kvmppc_filter_lpcr_hv(kvm,
1722 (vc->lpcr & ~mask) | (new_lpcr & mask));
1723
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001724 /*
Anton Blanchardd6829162014-01-08 21:25:30 +11001725 * If ILE (interrupt little-endian) has changed, update the
1726 * MSR_LE bit in the intr_msr for each vcpu in this vcore.
1727 */
1728 if ((new_lpcr & LPCR_ILE) != (vc->lpcr & LPCR_ILE)) {
Anton Blanchardd6829162014-01-08 21:25:30 +11001729 struct kvm_vcpu *vcpu;
1730 int i;
1731
Anton Blanchardd6829162014-01-08 21:25:30 +11001732 kvm_for_each_vcpu(i, vcpu, kvm) {
1733 if (vcpu->arch.vcore != vc)
1734 continue;
1735 if (new_lpcr & LPCR_ILE)
1736 vcpu->arch.intr_msr |= MSR_LE;
1737 else
1738 vcpu->arch.intr_msr &= ~MSR_LE;
1739 }
Anton Blanchardd6829162014-01-08 21:25:30 +11001740 }
1741
Nicholas Piggin67145ef2021-04-12 11:48:36 +10001742 vc->lpcr = new_lpcr;
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001743
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001744 spin_unlock(&vc->lock);
1745}
1746
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301747static int kvmppc_get_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1748 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001749{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001750 int r = 0;
1751 long int i;
Paul Mackerras31f34382011-12-12 12:26:50 +00001752
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001753 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301754 case KVM_REG_PPC_DEBUG_INST:
1755 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1756 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001757 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001758 *val = get_reg_val(id, 0);
1759 break;
1760 case KVM_REG_PPC_DABR:
1761 *val = get_reg_val(id, vcpu->arch.dabr);
1762 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001763 case KVM_REG_PPC_DABRX:
1764 *val = get_reg_val(id, vcpu->arch.dabrx);
1765 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001766 case KVM_REG_PPC_DSCR:
1767 *val = get_reg_val(id, vcpu->arch.dscr);
1768 break;
1769 case KVM_REG_PPC_PURR:
1770 *val = get_reg_val(id, vcpu->arch.purr);
1771 break;
1772 case KVM_REG_PPC_SPURR:
1773 *val = get_reg_val(id, vcpu->arch.spurr);
1774 break;
1775 case KVM_REG_PPC_AMR:
1776 *val = get_reg_val(id, vcpu->arch.amr);
1777 break;
1778 case KVM_REG_PPC_UAMOR:
1779 *val = get_reg_val(id, vcpu->arch.uamor);
1780 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04001781 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCR1:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001782 i = id - KVM_REG_PPC_MMCR0;
1783 *val = get_reg_val(id, vcpu->arch.mmcr[i]);
1784 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04001785 case KVM_REG_PPC_MMCR2:
1786 *val = get_reg_val(id, vcpu->arch.mmcr[2]);
1787 break;
1788 case KVM_REG_PPC_MMCRA:
1789 *val = get_reg_val(id, vcpu->arch.mmcra);
1790 break;
1791 case KVM_REG_PPC_MMCRS:
1792 *val = get_reg_val(id, vcpu->arch.mmcrs);
1793 break;
Athira Rajeev5752fe02020-07-17 10:38:17 -04001794 case KVM_REG_PPC_MMCR3:
1795 *val = get_reg_val(id, vcpu->arch.mmcr[3]);
1796 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001797 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1798 i = id - KVM_REG_PPC_PMC1;
1799 *val = get_reg_val(id, vcpu->arch.pmc[i]);
Paul Mackerras31f34382011-12-12 12:26:50 +00001800 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001801 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1802 i = id - KVM_REG_PPC_SPMC1;
1803 *val = get_reg_val(id, vcpu->arch.spmc[i]);
1804 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001805 case KVM_REG_PPC_SIAR:
1806 *val = get_reg_val(id, vcpu->arch.siar);
1807 break;
1808 case KVM_REG_PPC_SDAR:
1809 *val = get_reg_val(id, vcpu->arch.sdar);
1810 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001811 case KVM_REG_PPC_SIER:
Athira Rajeev5752fe02020-07-17 10:38:17 -04001812 *val = get_reg_val(id, vcpu->arch.sier[0]);
1813 break;
1814 case KVM_REG_PPC_SIER2:
1815 *val = get_reg_val(id, vcpu->arch.sier[1]);
1816 break;
1817 case KVM_REG_PPC_SIER3:
1818 *val = get_reg_val(id, vcpu->arch.sier[2]);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001819 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001820 case KVM_REG_PPC_IAMR:
1821 *val = get_reg_val(id, vcpu->arch.iamr);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001822 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001823 case KVM_REG_PPC_PSPB:
1824 *val = get_reg_val(id, vcpu->arch.pspb);
1825 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001826 case KVM_REG_PPC_DPDES:
Paul Mackerrasff42df42019-08-27 11:35:40 +10001827 /*
1828 * On POWER9, where we are emulating msgsndp etc.,
1829 * we return 1 bit for each vcpu, which can come from
1830 * either vcore->dpdes or doorbell_request.
1831 * On POWER8, doorbell_request is 0.
1832 */
1833 *val = get_reg_val(id, vcpu->arch.vcore->dpdes |
1834 vcpu->arch.doorbell_request);
Michael Neulingb005255e2014-01-08 21:25:21 +11001835 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001836 case KVM_REG_PPC_VTB:
1837 *val = get_reg_val(id, vcpu->arch.vcore->vtb);
1838 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001839 case KVM_REG_PPC_DAWR:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05301840 *val = get_reg_val(id, vcpu->arch.dawr0);
Michael Neulingb005255e2014-01-08 21:25:21 +11001841 break;
1842 case KVM_REG_PPC_DAWRX:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05301843 *val = get_reg_val(id, vcpu->arch.dawrx0);
Michael Neulingb005255e2014-01-08 21:25:21 +11001844 break;
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +05301845 case KVM_REG_PPC_DAWR1:
1846 *val = get_reg_val(id, vcpu->arch.dawr1);
1847 break;
1848 case KVM_REG_PPC_DAWRX1:
1849 *val = get_reg_val(id, vcpu->arch.dawrx1);
1850 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001851 case KVM_REG_PPC_CIABR:
1852 *val = get_reg_val(id, vcpu->arch.ciabr);
1853 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001854 case KVM_REG_PPC_CSIGR:
1855 *val = get_reg_val(id, vcpu->arch.csigr);
1856 break;
1857 case KVM_REG_PPC_TACR:
1858 *val = get_reg_val(id, vcpu->arch.tacr);
1859 break;
1860 case KVM_REG_PPC_TCSCR:
1861 *val = get_reg_val(id, vcpu->arch.tcscr);
1862 break;
1863 case KVM_REG_PPC_PID:
1864 *val = get_reg_val(id, vcpu->arch.pid);
1865 break;
1866 case KVM_REG_PPC_ACOP:
1867 *val = get_reg_val(id, vcpu->arch.acop);
1868 break;
1869 case KVM_REG_PPC_WORT:
1870 *val = get_reg_val(id, vcpu->arch.wort);
1871 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001872 case KVM_REG_PPC_TIDR:
1873 *val = get_reg_val(id, vcpu->arch.tid);
1874 break;
1875 case KVM_REG_PPC_PSSCR:
1876 *val = get_reg_val(id, vcpu->arch.psscr);
1877 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001878 case KVM_REG_PPC_VPA_ADDR:
1879 spin_lock(&vcpu->arch.vpa_update_lock);
1880 *val = get_reg_val(id, vcpu->arch.vpa.next_gpa);
1881 spin_unlock(&vcpu->arch.vpa_update_lock);
1882 break;
1883 case KVM_REG_PPC_VPA_SLB:
1884 spin_lock(&vcpu->arch.vpa_update_lock);
1885 val->vpaval.addr = vcpu->arch.slb_shadow.next_gpa;
1886 val->vpaval.length = vcpu->arch.slb_shadow.len;
1887 spin_unlock(&vcpu->arch.vpa_update_lock);
1888 break;
1889 case KVM_REG_PPC_VPA_DTL:
1890 spin_lock(&vcpu->arch.vpa_update_lock);
1891 val->vpaval.addr = vcpu->arch.dtl.next_gpa;
1892 val->vpaval.length = vcpu->arch.dtl.len;
1893 spin_unlock(&vcpu->arch.vpa_update_lock);
1894 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001895 case KVM_REG_PPC_TB_OFFSET:
1896 *val = get_reg_val(id, vcpu->arch.vcore->tb_offset);
1897 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001898 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001899 case KVM_REG_PPC_LPCR_64:
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001900 *val = get_reg_val(id, vcpu->arch.vcore->lpcr);
1901 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001902 case KVM_REG_PPC_PPR:
1903 *val = get_reg_val(id, vcpu->arch.ppr);
1904 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001905#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1906 case KVM_REG_PPC_TFHAR:
1907 *val = get_reg_val(id, vcpu->arch.tfhar);
1908 break;
1909 case KVM_REG_PPC_TFIAR:
1910 *val = get_reg_val(id, vcpu->arch.tfiar);
1911 break;
1912 case KVM_REG_PPC_TEXASR:
1913 *val = get_reg_val(id, vcpu->arch.texasr);
1914 break;
1915 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
1916 i = id - KVM_REG_PPC_TM_GPR0;
1917 *val = get_reg_val(id, vcpu->arch.gpr_tm[i]);
1918 break;
1919 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
1920 {
1921 int j;
1922 i = id - KVM_REG_PPC_TM_VSR0;
1923 if (i < 32)
1924 for (j = 0; j < TS_FPRWIDTH; j++)
1925 val->vsxval[j] = vcpu->arch.fp_tm.fpr[i][j];
1926 else {
1927 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1928 val->vval = vcpu->arch.vr_tm.vr[i-32];
1929 else
1930 r = -ENXIO;
1931 }
1932 break;
1933 }
1934 case KVM_REG_PPC_TM_CR:
1935 *val = get_reg_val(id, vcpu->arch.cr_tm);
1936 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11001937 case KVM_REG_PPC_TM_XER:
1938 *val = get_reg_val(id, vcpu->arch.xer_tm);
1939 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001940 case KVM_REG_PPC_TM_LR:
1941 *val = get_reg_val(id, vcpu->arch.lr_tm);
1942 break;
1943 case KVM_REG_PPC_TM_CTR:
1944 *val = get_reg_val(id, vcpu->arch.ctr_tm);
1945 break;
1946 case KVM_REG_PPC_TM_FPSCR:
1947 *val = get_reg_val(id, vcpu->arch.fp_tm.fpscr);
1948 break;
1949 case KVM_REG_PPC_TM_AMR:
1950 *val = get_reg_val(id, vcpu->arch.amr_tm);
1951 break;
1952 case KVM_REG_PPC_TM_PPR:
1953 *val = get_reg_val(id, vcpu->arch.ppr_tm);
1954 break;
1955 case KVM_REG_PPC_TM_VRSAVE:
1956 *val = get_reg_val(id, vcpu->arch.vrsave_tm);
1957 break;
1958 case KVM_REG_PPC_TM_VSCR:
1959 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1960 *val = get_reg_val(id, vcpu->arch.vr_tm.vscr.u[3]);
1961 else
1962 r = -ENXIO;
1963 break;
1964 case KVM_REG_PPC_TM_DSCR:
1965 *val = get_reg_val(id, vcpu->arch.dscr_tm);
1966 break;
1967 case KVM_REG_PPC_TM_TAR:
1968 *val = get_reg_val(id, vcpu->arch.tar_tm);
1969 break;
1970#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10001971 case KVM_REG_PPC_ARCH_COMPAT:
1972 *val = get_reg_val(id, vcpu->arch.vcore->arch_compat);
1973 break;
Paul Mackerras58555642018-01-12 20:55:20 +11001974 case KVM_REG_PPC_DEC_EXPIRY:
1975 *val = get_reg_val(id, vcpu->arch.dec_expires +
1976 vcpu->arch.vcore->tb_offset);
1977 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10001978 case KVM_REG_PPC_ONLINE:
1979 *val = get_reg_val(id, vcpu->arch.online);
1980 break;
Paul Mackerras30323412018-10-08 16:31:13 +11001981 case KVM_REG_PPC_PTCR:
1982 *val = get_reg_val(id, vcpu->kvm->arch.l1_ptcr);
1983 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001984 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001985 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001986 break;
1987 }
1988
1989 return r;
1990}
1991
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301992static int kvmppc_set_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1993 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001994{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001995 int r = 0;
1996 long int i;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001997 unsigned long addr, len;
Paul Mackerras31f34382011-12-12 12:26:50 +00001998
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001999 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00002000 case KVM_REG_PPC_HIOR:
Paul Mackerras31f34382011-12-12 12:26:50 +00002001 /* Only allow this to be set to zero */
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002002 if (set_reg_val(id, *val))
Paul Mackerras31f34382011-12-12 12:26:50 +00002003 r = -EINVAL;
2004 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002005 case KVM_REG_PPC_DABR:
2006 vcpu->arch.dabr = set_reg_val(id, *val);
2007 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11002008 case KVM_REG_PPC_DABRX:
2009 vcpu->arch.dabrx = set_reg_val(id, *val) & ~DABRX_HYP;
2010 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002011 case KVM_REG_PPC_DSCR:
2012 vcpu->arch.dscr = set_reg_val(id, *val);
2013 break;
2014 case KVM_REG_PPC_PURR:
2015 vcpu->arch.purr = set_reg_val(id, *val);
2016 break;
2017 case KVM_REG_PPC_SPURR:
2018 vcpu->arch.spurr = set_reg_val(id, *val);
2019 break;
2020 case KVM_REG_PPC_AMR:
2021 vcpu->arch.amr = set_reg_val(id, *val);
2022 break;
2023 case KVM_REG_PPC_UAMOR:
2024 vcpu->arch.uamor = set_reg_val(id, *val);
2025 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04002026 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCR1:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002027 i = id - KVM_REG_PPC_MMCR0;
2028 vcpu->arch.mmcr[i] = set_reg_val(id, *val);
2029 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04002030 case KVM_REG_PPC_MMCR2:
2031 vcpu->arch.mmcr[2] = set_reg_val(id, *val);
2032 break;
2033 case KVM_REG_PPC_MMCRA:
2034 vcpu->arch.mmcra = set_reg_val(id, *val);
2035 break;
2036 case KVM_REG_PPC_MMCRS:
2037 vcpu->arch.mmcrs = set_reg_val(id, *val);
2038 break;
Athira Rajeev5752fe02020-07-17 10:38:17 -04002039 case KVM_REG_PPC_MMCR3:
2040 *val = get_reg_val(id, vcpu->arch.mmcr[3]);
2041 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002042 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
2043 i = id - KVM_REG_PPC_PMC1;
2044 vcpu->arch.pmc[i] = set_reg_val(id, *val);
2045 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002046 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
2047 i = id - KVM_REG_PPC_SPMC1;
2048 vcpu->arch.spmc[i] = set_reg_val(id, *val);
2049 break;
Paul Mackerras14941782013-09-06 13:11:18 +10002050 case KVM_REG_PPC_SIAR:
2051 vcpu->arch.siar = set_reg_val(id, *val);
2052 break;
2053 case KVM_REG_PPC_SDAR:
2054 vcpu->arch.sdar = set_reg_val(id, *val);
2055 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002056 case KVM_REG_PPC_SIER:
Athira Rajeev5752fe02020-07-17 10:38:17 -04002057 vcpu->arch.sier[0] = set_reg_val(id, *val);
2058 break;
2059 case KVM_REG_PPC_SIER2:
2060 vcpu->arch.sier[1] = set_reg_val(id, *val);
2061 break;
2062 case KVM_REG_PPC_SIER3:
2063 vcpu->arch.sier[2] = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00002064 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002065 case KVM_REG_PPC_IAMR:
2066 vcpu->arch.iamr = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00002067 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002068 case KVM_REG_PPC_PSPB:
2069 vcpu->arch.pspb = set_reg_val(id, *val);
2070 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002071 case KVM_REG_PPC_DPDES:
2072 vcpu->arch.vcore->dpdes = set_reg_val(id, *val);
2073 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10002074 case KVM_REG_PPC_VTB:
2075 vcpu->arch.vcore->vtb = set_reg_val(id, *val);
2076 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002077 case KVM_REG_PPC_DAWR:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05302078 vcpu->arch.dawr0 = set_reg_val(id, *val);
Michael Neulingb005255e2014-01-08 21:25:21 +11002079 break;
2080 case KVM_REG_PPC_DAWRX:
Ravi Bangoria122954ed72020-12-16 16:12:17 +05302081 vcpu->arch.dawrx0 = set_reg_val(id, *val) & ~DAWRX_HYP;
Michael Neulingb005255e2014-01-08 21:25:21 +11002082 break;
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +05302083 case KVM_REG_PPC_DAWR1:
2084 vcpu->arch.dawr1 = set_reg_val(id, *val);
2085 break;
2086 case KVM_REG_PPC_DAWRX1:
2087 vcpu->arch.dawrx1 = set_reg_val(id, *val) & ~DAWRX_HYP;
2088 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002089 case KVM_REG_PPC_CIABR:
2090 vcpu->arch.ciabr = set_reg_val(id, *val);
2091 /* Don't allow setting breakpoints in hypervisor code */
2092 if ((vcpu->arch.ciabr & CIABR_PRIV) == CIABR_PRIV_HYPER)
2093 vcpu->arch.ciabr &= ~CIABR_PRIV; /* disable */
2094 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11002095 case KVM_REG_PPC_CSIGR:
2096 vcpu->arch.csigr = set_reg_val(id, *val);
2097 break;
2098 case KVM_REG_PPC_TACR:
2099 vcpu->arch.tacr = set_reg_val(id, *val);
2100 break;
2101 case KVM_REG_PPC_TCSCR:
2102 vcpu->arch.tcscr = set_reg_val(id, *val);
2103 break;
2104 case KVM_REG_PPC_PID:
2105 vcpu->arch.pid = set_reg_val(id, *val);
2106 break;
2107 case KVM_REG_PPC_ACOP:
2108 vcpu->arch.acop = set_reg_val(id, *val);
2109 break;
2110 case KVM_REG_PPC_WORT:
2111 vcpu->arch.wort = set_reg_val(id, *val);
2112 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11002113 case KVM_REG_PPC_TIDR:
2114 vcpu->arch.tid = set_reg_val(id, *val);
2115 break;
2116 case KVM_REG_PPC_PSSCR:
2117 vcpu->arch.psscr = set_reg_val(id, *val) & PSSCR_GUEST_VIS;
2118 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00002119 case KVM_REG_PPC_VPA_ADDR:
2120 addr = set_reg_val(id, *val);
2121 r = -EINVAL;
2122 if (!addr && (vcpu->arch.slb_shadow.next_gpa ||
2123 vcpu->arch.dtl.next_gpa))
2124 break;
2125 r = set_vpa(vcpu, &vcpu->arch.vpa, addr, sizeof(struct lppaca));
2126 break;
2127 case KVM_REG_PPC_VPA_SLB:
2128 addr = val->vpaval.addr;
2129 len = val->vpaval.length;
2130 r = -EINVAL;
2131 if (addr && !vcpu->arch.vpa.next_gpa)
2132 break;
2133 r = set_vpa(vcpu, &vcpu->arch.slb_shadow, addr, len);
2134 break;
2135 case KVM_REG_PPC_VPA_DTL:
2136 addr = val->vpaval.addr;
2137 len = val->vpaval.length;
2138 r = -EINVAL;
Paul Mackerras9f8c8c72012-10-15 01:18:37 +00002139 if (addr && (len < sizeof(struct dtl_entry) ||
2140 !vcpu->arch.vpa.next_gpa))
Paul Mackerras55b665b2012-09-25 20:33:06 +00002141 break;
2142 len -= len % sizeof(struct dtl_entry);
2143 r = set_vpa(vcpu, &vcpu->arch.dtl, addr, len);
2144 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10002145 case KVM_REG_PPC_TB_OFFSET:
2146 /* round up to multiple of 2^24 */
2147 vcpu->arch.vcore->tb_offset =
2148 ALIGN(set_reg_val(id, *val), 1UL << 24);
2149 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002150 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10002151 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), true);
2152 break;
2153 case KVM_REG_PPC_LPCR_64:
2154 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), false);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002155 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10002156 case KVM_REG_PPC_PPR:
2157 vcpu->arch.ppr = set_reg_val(id, *val);
2158 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002159#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
2160 case KVM_REG_PPC_TFHAR:
2161 vcpu->arch.tfhar = set_reg_val(id, *val);
2162 break;
2163 case KVM_REG_PPC_TFIAR:
2164 vcpu->arch.tfiar = set_reg_val(id, *val);
2165 break;
2166 case KVM_REG_PPC_TEXASR:
2167 vcpu->arch.texasr = set_reg_val(id, *val);
2168 break;
2169 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
2170 i = id - KVM_REG_PPC_TM_GPR0;
2171 vcpu->arch.gpr_tm[i] = set_reg_val(id, *val);
2172 break;
2173 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
2174 {
2175 int j;
2176 i = id - KVM_REG_PPC_TM_VSR0;
2177 if (i < 32)
2178 for (j = 0; j < TS_FPRWIDTH; j++)
2179 vcpu->arch.fp_tm.fpr[i][j] = val->vsxval[j];
2180 else
2181 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2182 vcpu->arch.vr_tm.vr[i-32] = val->vval;
2183 else
2184 r = -ENXIO;
2185 break;
2186 }
2187 case KVM_REG_PPC_TM_CR:
2188 vcpu->arch.cr_tm = set_reg_val(id, *val);
2189 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11002190 case KVM_REG_PPC_TM_XER:
2191 vcpu->arch.xer_tm = set_reg_val(id, *val);
2192 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002193 case KVM_REG_PPC_TM_LR:
2194 vcpu->arch.lr_tm = set_reg_val(id, *val);
2195 break;
2196 case KVM_REG_PPC_TM_CTR:
2197 vcpu->arch.ctr_tm = set_reg_val(id, *val);
2198 break;
2199 case KVM_REG_PPC_TM_FPSCR:
2200 vcpu->arch.fp_tm.fpscr = set_reg_val(id, *val);
2201 break;
2202 case KVM_REG_PPC_TM_AMR:
2203 vcpu->arch.amr_tm = set_reg_val(id, *val);
2204 break;
2205 case KVM_REG_PPC_TM_PPR:
2206 vcpu->arch.ppr_tm = set_reg_val(id, *val);
2207 break;
2208 case KVM_REG_PPC_TM_VRSAVE:
2209 vcpu->arch.vrsave_tm = set_reg_val(id, *val);
2210 break;
2211 case KVM_REG_PPC_TM_VSCR:
2212 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2213 vcpu->arch.vr.vscr.u[3] = set_reg_val(id, *val);
2214 else
2215 r = - ENXIO;
2216 break;
2217 case KVM_REG_PPC_TM_DSCR:
2218 vcpu->arch.dscr_tm = set_reg_val(id, *val);
2219 break;
2220 case KVM_REG_PPC_TM_TAR:
2221 vcpu->arch.tar_tm = set_reg_val(id, *val);
2222 break;
2223#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10002224 case KVM_REG_PPC_ARCH_COMPAT:
2225 r = kvmppc_set_arch_compat(vcpu, set_reg_val(id, *val));
2226 break;
Paul Mackerras58555642018-01-12 20:55:20 +11002227 case KVM_REG_PPC_DEC_EXPIRY:
2228 vcpu->arch.dec_expires = set_reg_val(id, *val) -
2229 vcpu->arch.vcore->tb_offset;
2230 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002231 case KVM_REG_PPC_ONLINE:
Paul Mackerras7aa15842018-04-20 19:53:22 +10002232 i = set_reg_val(id, *val);
2233 if (i && !vcpu->arch.online)
2234 atomic_inc(&vcpu->arch.vcore->online_count);
2235 else if (!i && vcpu->arch.online)
2236 atomic_dec(&vcpu->arch.vcore->online_count);
2237 vcpu->arch.online = i;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002238 break;
Paul Mackerras30323412018-10-08 16:31:13 +11002239 case KVM_REG_PPC_PTCR:
2240 vcpu->kvm->arch.l1_ptcr = set_reg_val(id, *val);
2241 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00002242 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002243 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00002244 break;
2245 }
2246
2247 return r;
2248}
2249
Paul Mackerras45c940b2016-11-18 17:43:30 +11002250/*
2251 * On POWER9, threads are independent and can be in different partitions.
2252 * Therefore we consider each thread to be a subcore.
2253 * There is a restriction that all threads have to be in the same
2254 * MMU mode (radix or HPT), unfortunately, but since we only support
2255 * HPT guests on a HPT host so far, that isn't an impediment yet.
2256 */
Paul Mackerras516f7892017-10-16 16:11:57 +11002257static int threads_per_vcore(struct kvm *kvm)
Paul Mackerras45c940b2016-11-18 17:43:30 +11002258{
Paul Mackerras516f7892017-10-16 16:11:57 +11002259 if (kvm->arch.threads_indep)
Paul Mackerras45c940b2016-11-18 17:43:30 +11002260 return 1;
2261 return threads_per_subcore;
2262}
2263
Sam Bobroff1e175d22018-07-25 16:12:02 +10002264static struct kvmppc_vcore *kvmppc_vcore_create(struct kvm *kvm, int id)
Stewart Smithde9bdd12014-07-18 14:18:42 +10002265{
2266 struct kvmppc_vcore *vcore;
2267
2268 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
2269
2270 if (vcore == NULL)
2271 return NULL;
2272
Stewart Smithde9bdd12014-07-18 14:18:42 +10002273 spin_lock_init(&vcore->lock);
Paul Mackerras2711e242014-12-04 16:43:28 +11002274 spin_lock_init(&vcore->stoltb_lock);
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07002275 rcuwait_init(&vcore->wait);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002276 vcore->preempt_tb = TB_NIL;
2277 vcore->lpcr = kvm->arch.lpcr;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002278 vcore->first_vcpuid = id;
Stewart Smithde9bdd12014-07-18 14:18:42 +10002279 vcore->kvm = kvm;
Paul Mackerrasec257162015-06-24 21:18:03 +10002280 INIT_LIST_HEAD(&vcore->preempt_list);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002281
2282 return vcore;
2283}
2284
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002285#ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
2286static struct debugfs_timings_element {
2287 const char *name;
2288 size_t offset;
2289} timings[] = {
2290 {"rm_entry", offsetof(struct kvm_vcpu, arch.rm_entry)},
2291 {"rm_intr", offsetof(struct kvm_vcpu, arch.rm_intr)},
2292 {"rm_exit", offsetof(struct kvm_vcpu, arch.rm_exit)},
2293 {"guest", offsetof(struct kvm_vcpu, arch.guest_time)},
2294 {"cede", offsetof(struct kvm_vcpu, arch.cede_time)},
2295};
2296
Thomas Meyer4bb817ed2017-09-03 14:19:31 +02002297#define N_TIMINGS (ARRAY_SIZE(timings))
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002298
2299struct debugfs_timings_state {
2300 struct kvm_vcpu *vcpu;
2301 unsigned int buflen;
2302 char buf[N_TIMINGS * 100];
2303};
2304
2305static int debugfs_timings_open(struct inode *inode, struct file *file)
2306{
2307 struct kvm_vcpu *vcpu = inode->i_private;
2308 struct debugfs_timings_state *p;
2309
2310 p = kzalloc(sizeof(*p), GFP_KERNEL);
2311 if (!p)
2312 return -ENOMEM;
2313
2314 kvm_get_kvm(vcpu->kvm);
2315 p->vcpu = vcpu;
2316 file->private_data = p;
2317
2318 return nonseekable_open(inode, file);
2319}
2320
2321static int debugfs_timings_release(struct inode *inode, struct file *file)
2322{
2323 struct debugfs_timings_state *p = file->private_data;
2324
2325 kvm_put_kvm(p->vcpu->kvm);
2326 kfree(p);
2327 return 0;
2328}
2329
2330static ssize_t debugfs_timings_read(struct file *file, char __user *buf,
2331 size_t len, loff_t *ppos)
2332{
2333 struct debugfs_timings_state *p = file->private_data;
2334 struct kvm_vcpu *vcpu = p->vcpu;
2335 char *s, *buf_end;
2336 struct kvmhv_tb_accumulator tb;
2337 u64 count;
2338 loff_t pos;
2339 ssize_t n;
2340 int i, loops;
2341 bool ok;
2342
2343 if (!p->buflen) {
2344 s = p->buf;
2345 buf_end = s + sizeof(p->buf);
2346 for (i = 0; i < N_TIMINGS; ++i) {
2347 struct kvmhv_tb_accumulator *acc;
2348
2349 acc = (struct kvmhv_tb_accumulator *)
2350 ((unsigned long)vcpu + timings[i].offset);
2351 ok = false;
2352 for (loops = 0; loops < 1000; ++loops) {
2353 count = acc->seqcount;
2354 if (!(count & 1)) {
2355 smp_rmb();
2356 tb = *acc;
2357 smp_rmb();
2358 if (count == acc->seqcount) {
2359 ok = true;
2360 break;
2361 }
2362 }
2363 udelay(1);
2364 }
2365 if (!ok)
2366 snprintf(s, buf_end - s, "%s: stuck\n",
2367 timings[i].name);
2368 else
2369 snprintf(s, buf_end - s,
2370 "%s: %llu %llu %llu %llu\n",
2371 timings[i].name, count / 2,
2372 tb_to_ns(tb.tb_total),
2373 tb_to_ns(tb.tb_min),
2374 tb_to_ns(tb.tb_max));
2375 s += strlen(s);
2376 }
2377 p->buflen = s - p->buf;
2378 }
2379
2380 pos = *ppos;
2381 if (pos >= p->buflen)
2382 return 0;
2383 if (len > p->buflen - pos)
2384 len = p->buflen - pos;
2385 n = copy_to_user(buf, p->buf + pos, len);
2386 if (n) {
2387 if (n == len)
2388 return -EFAULT;
2389 len -= n;
2390 }
2391 *ppos = pos + len;
2392 return len;
2393}
2394
2395static ssize_t debugfs_timings_write(struct file *file, const char __user *buf,
2396 size_t len, loff_t *ppos)
2397{
2398 return -EACCES;
2399}
2400
2401static const struct file_operations debugfs_timings_ops = {
2402 .owner = THIS_MODULE,
2403 .open = debugfs_timings_open,
2404 .release = debugfs_timings_release,
2405 .read = debugfs_timings_read,
2406 .write = debugfs_timings_write,
2407 .llseek = generic_file_llseek,
2408};
2409
2410/* Create a debugfs directory for the vcpu */
2411static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2412{
2413 char buf[16];
2414 struct kvm *kvm = vcpu->kvm;
2415
2416 snprintf(buf, sizeof(buf), "vcpu%u", id);
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002417 vcpu->arch.debugfs_dir = debugfs_create_dir(buf, kvm->arch.debugfs_dir);
Greg Kroah-Hartmanc4fd5272020-02-09 11:58:57 +01002418 debugfs_create_file("timings", 0444, vcpu->arch.debugfs_dir, vcpu,
2419 &debugfs_timings_ops);
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002420}
2421
2422#else /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2423static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2424{
2425}
2426#endif /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2427
Sean Christophersonff030fd2019-12-18 13:55:00 -08002428static int kvmppc_core_vcpu_create_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002429{
Paul Mackerras3c313522017-02-06 13:24:41 +11002430 int err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002431 int core;
2432 struct kvmppc_vcore *vcore;
Sean Christophersonff030fd2019-12-18 13:55:00 -08002433 struct kvm *kvm;
2434 unsigned int id;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002435
Sean Christophersonff030fd2019-12-18 13:55:00 -08002436 kvm = vcpu->kvm;
2437 id = vcpu->vcpu_id;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002438
2439 vcpu->arch.shared = &vcpu->arch.shregs;
Alexander Graf5deb8e72014-04-24 13:46:24 +02002440#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2441 /*
2442 * The shared struct is never shared on HV,
2443 * so we can always use host endianness
2444 */
2445#ifdef __BIG_ENDIAN__
2446 vcpu->arch.shared_big_endian = true;
2447#else
2448 vcpu->arch.shared_big_endian = false;
2449#endif
2450#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +00002451 vcpu->arch.mmcr[0] = MMCR0_FC;
2452 vcpu->arch.ctrl = CTRL_RUNLATCH;
2453 /* default to host PVR, since we can't spoof it */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302454 kvmppc_set_pvr_hv(vcpu, mfspr(SPRN_PVR));
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002455 spin_lock_init(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002456 spin_lock_init(&vcpu->arch.tbacct_lock);
2457 vcpu->arch.busy_preempt = TB_NIL;
Anton Blanchardd6829162014-01-08 21:25:30 +11002458 vcpu->arch.intr_msr = MSR_SF | MSR_ME;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002459
Paul Mackerras769377f2017-02-15 14:30:17 +11002460 /*
2461 * Set the default HFSCR for the guest from the host value.
2462 * This value is only used on POWER9.
Paul Mackerras57900692017-05-16 16:41:20 +10002463 * On POWER9, we want to virtualize the doorbell facility, so we
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002464 * don't set the HFSCR_MSGP bit, and that causes those instructions
2465 * to trap and then we emulate them.
Paul Mackerras769377f2017-02-15 14:30:17 +11002466 */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002467 vcpu->arch.hfscr = HFSCR_TAR | HFSCR_EBB | HFSCR_PM | HFSCR_BHRB |
Alistair Popple4cb4ade2020-06-02 15:53:25 +10002468 HFSCR_DSCR | HFSCR_VECVSX | HFSCR_FP | HFSCR_PREFIX;
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002469 if (cpu_has_feature(CPU_FTR_HVMODE)) {
2470 vcpu->arch.hfscr &= mfspr(SPRN_HFSCR);
2471 if (cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
2472 vcpu->arch.hfscr |= HFSCR_TM;
2473 }
2474 if (cpu_has_feature(CPU_FTR_TM_COMP))
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002475 vcpu->arch.hfscr |= HFSCR_TM;
Paul Mackerras769377f2017-02-15 14:30:17 +11002476
Paul Mackerrasde56a942011-06-29 00:21:34 +00002477 kvmppc_mmu_book3s_hv_init(vcpu);
2478
Paul Mackerras8455d792012-10-15 01:17:42 +00002479 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002480
2481 init_waitqueue_head(&vcpu->arch.cpu_run);
2482
2483 mutex_lock(&kvm->lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002484 vcore = NULL;
2485 err = -EINVAL;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002486 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasb5c6f762018-07-26 15:38:41 +10002487 if (id >= (KVM_MAX_VCPUS * kvm->arch.emul_smt_mode)) {
2488 pr_devel("KVM: VCPU ID too high\n");
2489 core = KVM_MAX_VCORES;
2490 } else {
2491 BUG_ON(kvm->arch.smt_mode != 1);
2492 core = kvmppc_pack_vcpu_id(kvm, id);
2493 }
Sam Bobroff1e175d22018-07-25 16:12:02 +10002494 } else {
2495 core = id / kvm->arch.smt_mode;
2496 }
Paul Mackerras3c313522017-02-06 13:24:41 +11002497 if (core < KVM_MAX_VCORES) {
2498 vcore = kvm->arch.vcores[core];
Sam Bobroff1e175d22018-07-25 16:12:02 +10002499 if (vcore && cpu_has_feature(CPU_FTR_ARCH_300)) {
2500 pr_devel("KVM: collision on id %u", id);
2501 vcore = NULL;
2502 } else if (!vcore) {
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002503 /*
2504 * Take mmu_setup_lock for mutual exclusion
2505 * with kvmppc_update_lpcr().
2506 */
Paul Mackerras3c313522017-02-06 13:24:41 +11002507 err = -ENOMEM;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002508 vcore = kvmppc_vcore_create(kvm,
2509 id & ~(kvm->arch.smt_mode - 1));
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002510 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002511 kvm->arch.vcores[core] = vcore;
2512 kvm->arch.online_vcores++;
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002513 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002514 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002515 }
2516 mutex_unlock(&kvm->lock);
2517
2518 if (!vcore)
Sean Christophersonff030fd2019-12-18 13:55:00 -08002519 return err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002520
2521 spin_lock(&vcore->lock);
2522 ++vcore->num_threads;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002523 spin_unlock(&vcore->lock);
2524 vcpu->arch.vcore = vcore;
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11002525 vcpu->arch.ptid = vcpu->vcpu_id - vcore->first_vcpuid;
Paul Mackerrasec257162015-06-24 21:18:03 +10002526 vcpu->arch.thread_cpu = -1;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002527 vcpu->arch.prev_cpu = -1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002528
Alexander Grafaf8f38b2011-08-10 13:57:08 +02002529 vcpu->arch.cpu_type = KVM_CPU_3S_64;
2530 kvmppc_sanity_check(vcpu);
2531
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002532 debugfs_vcpu_init(vcpu, id);
2533
Sean Christophersonc50bfbd2019-12-18 13:54:57 -08002534 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002535}
2536
Paul Mackerras3c313522017-02-06 13:24:41 +11002537static int kvmhv_set_smt_mode(struct kvm *kvm, unsigned long smt_mode,
2538 unsigned long flags)
2539{
2540 int err;
Paul Mackerras57900692017-05-16 16:41:20 +10002541 int esmt = 0;
Paul Mackerras3c313522017-02-06 13:24:41 +11002542
2543 if (flags)
2544 return -EINVAL;
2545 if (smt_mode > MAX_SMT_THREADS || !is_power_of_2(smt_mode))
2546 return -EINVAL;
2547 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
2548 /*
2549 * On POWER8 (or POWER7), the threading mode is "strict",
2550 * so we pack smt_mode vcpus per vcore.
2551 */
2552 if (smt_mode > threads_per_subcore)
2553 return -EINVAL;
2554 } else {
2555 /*
2556 * On POWER9, the threading mode is "loose",
2557 * so each vcpu gets its own vcore.
2558 */
Paul Mackerras57900692017-05-16 16:41:20 +10002559 esmt = smt_mode;
Paul Mackerras3c313522017-02-06 13:24:41 +11002560 smt_mode = 1;
2561 }
2562 mutex_lock(&kvm->lock);
2563 err = -EBUSY;
2564 if (!kvm->arch.online_vcores) {
2565 kvm->arch.smt_mode = smt_mode;
Paul Mackerras57900692017-05-16 16:41:20 +10002566 kvm->arch.emul_smt_mode = esmt;
Paul Mackerras3c313522017-02-06 13:24:41 +11002567 err = 0;
2568 }
2569 mutex_unlock(&kvm->lock);
2570
2571 return err;
2572}
2573
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002574static void unpin_vpa(struct kvm *kvm, struct kvmppc_vpa *vpa)
2575{
2576 if (vpa->pinned_addr)
2577 kvmppc_unpin_guest_page(kvm, vpa->pinned_addr, vpa->gpa,
2578 vpa->dirty);
2579}
2580
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302581static void kvmppc_core_vcpu_free_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002582{
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002583 spin_lock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002584 unpin_vpa(vcpu->kvm, &vcpu->arch.dtl);
2585 unpin_vpa(vcpu->kvm, &vcpu->arch.slb_shadow);
2586 unpin_vpa(vcpu->kvm, &vcpu->arch.vpa);
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002587 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002588}
2589
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302590static int kvmppc_core_check_requests_hv(struct kvm_vcpu *vcpu)
2591{
2592 /* Indicate we want to get back into the guest */
2593 return 1;
2594}
2595
Paul Mackerras19ccb762011-07-23 17:42:46 +10002596static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002597{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002598 unsigned long dec_nsec, now;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002599
Paul Mackerras19ccb762011-07-23 17:42:46 +10002600 now = get_tb();
2601 if (now > vcpu->arch.dec_expires) {
2602 /* decrementer has already gone negative */
2603 kvmppc_core_queue_dec(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -06002604 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002605 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002606 }
Paul Mackerrasc43befc2018-10-20 20:54:55 +11002607 dec_nsec = tb_to_ns(vcpu->arch.dec_expires - now);
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002608 hrtimer_start(&vcpu->arch.dec_timer, dec_nsec, HRTIMER_MODE_REL);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002609 vcpu->arch.timer_running = 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002610}
2611
Paul Mackerras8b24e692017-06-26 15:45:51 +10002612extern int __kvmppc_vcore_entry(void);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002613
2614static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
2615 struct kvm_vcpu *vcpu)
2616{
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002617 u64 now;
2618
Paul Mackerras371fefd2011-06-29 00:23:08 +00002619 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
2620 return;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002621 spin_lock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002622 now = mftb();
2623 vcpu->arch.busy_stolen += vcore_stolen_time(vc, now) -
2624 vcpu->arch.stolen_logged;
2625 vcpu->arch.busy_preempt = now;
2626 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002627 spin_unlock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002628 --vc->n_runnable;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002629 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], NULL);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002630}
2631
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002632static int kvmppc_grab_hwthread(int cpu)
2633{
2634 struct paca_struct *tpaca;
Paul Mackerrasb754c732014-09-02 16:14:42 +10002635 long timeout = 10000;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002636
Nicholas Piggind2e60072018-02-14 01:08:12 +10002637 tpaca = paca_ptrs[cpu];
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002638
2639 /* Ensure the thread won't go into the kernel if it wakes */
Paul Mackerras7b444c62012-10-15 01:16:14 +00002640 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002641 tpaca->kvm_hstate.kvm_vcore = NULL;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002642 tpaca->kvm_hstate.napping = 0;
2643 smp_wmb();
2644 tpaca->kvm_hstate.hwthread_req = 1;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002645
2646 /*
2647 * If the thread is already executing in the kernel (e.g. handling
2648 * a stray interrupt), wait for it to get back to nap mode.
2649 * The smp_mb() is to ensure that our setting of hwthread_req
2650 * is visible before we look at hwthread_state, so if this
2651 * races with the code at system_reset_pSeries and the thread
2652 * misses our setting of hwthread_req, we are sure to see its
2653 * setting of hwthread_state, and vice versa.
2654 */
2655 smp_mb();
2656 while (tpaca->kvm_hstate.hwthread_state == KVM_HWTHREAD_IN_KERNEL) {
2657 if (--timeout <= 0) {
2658 pr_err("KVM: couldn't grab cpu %d\n", cpu);
2659 return -EBUSY;
2660 }
2661 udelay(1);
2662 }
2663 return 0;
2664}
2665
2666static void kvmppc_release_hwthread(int cpu)
2667{
2668 struct paca_struct *tpaca;
2669
Nicholas Piggind2e60072018-02-14 01:08:12 +10002670 tpaca = paca_ptrs[cpu];
Paul Mackerras31a4d442017-10-19 15:14:20 +11002671 tpaca->kvm_hstate.hwthread_req = 0;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002672 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002673 tpaca->kvm_hstate.kvm_vcore = NULL;
2674 tpaca->kvm_hstate.kvm_split_mode = NULL;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002675}
2676
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002677static void radix_flush_cpu(struct kvm *kvm, int cpu, struct kvm_vcpu *vcpu)
2678{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002679 struct kvm_nested_guest *nested = vcpu->arch.nested;
2680 cpumask_t *cpu_in_guest;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002681 int i;
2682
2683 cpu = cpu_first_thread_sibling(cpu);
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002684 if (nested) {
2685 cpumask_set_cpu(cpu, &nested->need_tlb_flush);
2686 cpu_in_guest = &nested->cpu_in_guest;
2687 } else {
2688 cpumask_set_cpu(cpu, &kvm->arch.need_tlb_flush);
2689 cpu_in_guest = &kvm->arch.cpu_in_guest;
2690 }
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002691 /*
2692 * Make sure setting of bit in need_tlb_flush precedes
2693 * testing of cpu_in_guest bits. The matching barrier on
2694 * the other side is the first smp_mb() in kvmppc_run_core().
2695 */
2696 smp_mb();
2697 for (i = 0; i < threads_per_core; ++i)
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002698 if (cpumask_test_cpu(cpu + i, cpu_in_guest))
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002699 smp_call_function_single(cpu + i, do_nothing, NULL, 1);
2700}
2701
Paul Mackerras8b24e692017-06-26 15:45:51 +10002702static void kvmppc_prepare_radix_vcpu(struct kvm_vcpu *vcpu, int pcpu)
2703{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002704 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002705 struct kvm *kvm = vcpu->kvm;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002706 int prev_cpu;
2707
2708 if (!cpu_has_feature(CPU_FTR_HVMODE))
2709 return;
2710
2711 if (nested)
2712 prev_cpu = nested->prev_cpu[vcpu->arch.nested_vcpu_id];
2713 else
2714 prev_cpu = vcpu->arch.prev_cpu;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002715
2716 /*
2717 * With radix, the guest can do TLB invalidations itself,
2718 * and it could choose to use the local form (tlbiel) if
2719 * it is invalidating a translation that has only ever been
2720 * used on one vcpu. However, that doesn't mean it has
2721 * only ever been used on one physical cpu, since vcpus
2722 * can move around between pcpus. To cope with this, when
2723 * a vcpu moves from one pcpu to another, we need to tell
2724 * any vcpus running on the same core as this vcpu previously
2725 * ran to flush the TLB. The TLB is shared between threads,
2726 * so we use a single bit in .need_tlb_flush for all 4 threads.
2727 */
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002728 if (prev_cpu != pcpu) {
2729 if (prev_cpu >= 0 &&
2730 cpu_first_thread_sibling(prev_cpu) !=
Paul Mackerras8b24e692017-06-26 15:45:51 +10002731 cpu_first_thread_sibling(pcpu))
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002732 radix_flush_cpu(kvm, prev_cpu, vcpu);
2733 if (nested)
2734 nested->prev_cpu[vcpu->arch.nested_vcpu_id] = pcpu;
2735 else
2736 vcpu->arch.prev_cpu = pcpu;
2737 }
2738}
2739
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002740static void kvmppc_start_thread(struct kvm_vcpu *vcpu, struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002741{
2742 int cpu;
2743 struct paca_struct *tpaca;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002744 struct kvm *kvm = vc->kvm;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002745
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002746 cpu = vc->pcpu;
2747 if (vcpu) {
2748 if (vcpu->arch.timer_running) {
2749 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2750 vcpu->arch.timer_running = 0;
2751 }
2752 cpu += vcpu->arch.ptid;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002753 vcpu->cpu = vc->pcpu;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002754 vcpu->arch.thread_cpu = cpu;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002755 cpumask_set_cpu(cpu, &kvm->arch.cpu_in_guest);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002756 }
Nicholas Piggind2e60072018-02-14 01:08:12 +10002757 tpaca = paca_ptrs[cpu];
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002758 tpaca->kvm_hstate.kvm_vcpu = vcpu;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002759 tpaca->kvm_hstate.ptid = cpu - vc->pcpu;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002760 tpaca->kvm_hstate.fake_suspend = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002761 /* Order stores to hstate.kvm_vcpu etc. before store to kvm_vcore */
Paul Mackerras19ccb762011-07-23 17:42:46 +10002762 smp_wmb();
Paul Mackerras898b25b2017-06-22 15:08:42 +10002763 tpaca->kvm_hstate.kvm_vcore = vc;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002764 if (cpu != smp_processor_id())
Paul Mackerras66feed62015-03-28 14:21:12 +11002765 kvmppc_ipi_thread(cpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002766}
2767
Paul Mackerras516f7892017-10-16 16:11:57 +11002768static void kvmppc_wait_for_nap(int n_threads)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002769{
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002770 int cpu = smp_processor_id();
2771 int i, loops;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002772
Paul Mackerras45c940b2016-11-18 17:43:30 +11002773 if (n_threads <= 1)
2774 return;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002775 for (loops = 0; loops < 1000000; ++loops) {
2776 /*
2777 * Check if all threads are finished.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002778 * We set the vcore pointer when starting a thread
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002779 * and the thread clears it when finished, so we look
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002780 * for any threads that still have a non-NULL vcore ptr.
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002781 */
Paul Mackerras45c940b2016-11-18 17:43:30 +11002782 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002783 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002784 break;
Paul Mackerras45c940b2016-11-18 17:43:30 +11002785 if (i == n_threads) {
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002786 HMT_medium();
2787 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002788 }
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002789 HMT_low();
Paul Mackerras371fefd2011-06-29 00:23:08 +00002790 }
2791 HMT_medium();
Paul Mackerras45c940b2016-11-18 17:43:30 +11002792 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002793 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002794 pr_err("KVM: CPU %d seems to be stuck\n", cpu + i);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002795}
2796
2797/*
2798 * Check that we are on thread 0 and that any other threads in
Paul Mackerras7b444c62012-10-15 01:16:14 +00002799 * this core are off-line. Then grab the threads so they can't
2800 * enter the kernel.
Paul Mackerras371fefd2011-06-29 00:23:08 +00002801 */
2802static int on_primary_thread(void)
2803{
2804 int cpu = smp_processor_id();
Michael Ellerman3102f782014-05-23 18:15:29 +10002805 int thr;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002806
Michael Ellerman3102f782014-05-23 18:15:29 +10002807 /* Are we on a primary subcore? */
2808 if (cpu_thread_in_subcore(cpu))
Paul Mackerras371fefd2011-06-29 00:23:08 +00002809 return 0;
Michael Ellerman3102f782014-05-23 18:15:29 +10002810
2811 thr = 0;
2812 while (++thr < threads_per_subcore)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002813 if (cpu_online(cpu + thr))
2814 return 0;
Paul Mackerras7b444c62012-10-15 01:16:14 +00002815
2816 /* Grab all hw threads so they can't go into the kernel */
Michael Ellerman3102f782014-05-23 18:15:29 +10002817 for (thr = 1; thr < threads_per_subcore; ++thr) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00002818 if (kvmppc_grab_hwthread(cpu + thr)) {
2819 /* Couldn't grab one; let the others go */
2820 do {
2821 kvmppc_release_hwthread(cpu + thr);
2822 } while (--thr > 0);
2823 return 0;
2824 }
2825 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002826 return 1;
2827}
2828
Paul Mackerrasec257162015-06-24 21:18:03 +10002829/*
2830 * A list of virtual cores for each physical CPU.
2831 * These are vcores that could run but their runner VCPU tasks are
2832 * (or may be) preempted.
2833 */
2834struct preempted_vcore_list {
2835 struct list_head list;
2836 spinlock_t lock;
2837};
2838
2839static DEFINE_PER_CPU(struct preempted_vcore_list, preempted_vcores);
2840
2841static void init_vcore_lists(void)
2842{
2843 int cpu;
2844
2845 for_each_possible_cpu(cpu) {
2846 struct preempted_vcore_list *lp = &per_cpu(preempted_vcores, cpu);
2847 spin_lock_init(&lp->lock);
2848 INIT_LIST_HEAD(&lp->list);
2849 }
2850}
2851
2852static void kvmppc_vcore_preempt(struct kvmppc_vcore *vc)
2853{
2854 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2855
2856 vc->vcore_state = VCORE_PREEMPT;
2857 vc->pcpu = smp_processor_id();
Paul Mackerras516f7892017-10-16 16:11:57 +11002858 if (vc->num_threads < threads_per_vcore(vc->kvm)) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002859 spin_lock(&lp->lock);
2860 list_add_tail(&vc->preempt_list, &lp->list);
2861 spin_unlock(&lp->lock);
2862 }
2863
2864 /* Start accumulating stolen time */
2865 kvmppc_core_start_stolen(vc);
2866}
2867
2868static void kvmppc_vcore_end_preempt(struct kvmppc_vcore *vc)
2869{
Paul Mackerras402813f2015-07-16 17:11:13 +10002870 struct preempted_vcore_list *lp;
Paul Mackerrasec257162015-06-24 21:18:03 +10002871
2872 kvmppc_core_end_stolen(vc);
2873 if (!list_empty(&vc->preempt_list)) {
Paul Mackerras402813f2015-07-16 17:11:13 +10002874 lp = &per_cpu(preempted_vcores, vc->pcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002875 spin_lock(&lp->lock);
2876 list_del_init(&vc->preempt_list);
2877 spin_unlock(&lp->lock);
2878 }
2879 vc->vcore_state = VCORE_INACTIVE;
2880}
2881
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002882/*
2883 * This stores information about the virtual cores currently
2884 * assigned to a physical core.
2885 */
Paul Mackerrasec257162015-06-24 21:18:03 +10002886struct core_info {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002887 int n_subcores;
2888 int max_subcore_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002889 int total_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002890 int subcore_threads[MAX_SUBCORES];
Paul Mackerras898b25b2017-06-22 15:08:42 +10002891 struct kvmppc_vcore *vc[MAX_SUBCORES];
Paul Mackerrasec257162015-06-24 21:18:03 +10002892};
2893
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002894/*
2895 * This mapping means subcores 0 and 1 can use threads 0-3 and 4-7
Paul Mackerras516f7892017-10-16 16:11:57 +11002896 * respectively in 2-way micro-threading (split-core) mode on POWER8.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002897 */
2898static int subcore_thread_map[MAX_SUBCORES] = { 0, 4, 2, 6 };
2899
Paul Mackerrasec257162015-06-24 21:18:03 +10002900static void init_core_info(struct core_info *cip, struct kvmppc_vcore *vc)
2901{
2902 memset(cip, 0, sizeof(*cip));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002903 cip->n_subcores = 1;
2904 cip->max_subcore_threads = vc->num_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002905 cip->total_threads = vc->num_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002906 cip->subcore_threads[0] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002907 cip->vc[0] = vc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002908}
2909
2910static bool subcore_config_ok(int n_subcores, int n_threads)
2911{
Paul Mackerras516f7892017-10-16 16:11:57 +11002912 /*
Paul Mackerras00608e12018-01-11 16:54:26 +11002913 * POWER9 "SMT4" cores are permanently in what is effectively a 4-way
2914 * split-core mode, with one thread per subcore.
Paul Mackerras516f7892017-10-16 16:11:57 +11002915 */
2916 if (cpu_has_feature(CPU_FTR_ARCH_300))
2917 return n_subcores <= 4 && n_threads == 1;
2918
2919 /* On POWER8, can only dynamically split if unsplit to begin with */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002920 if (n_subcores > 1 && threads_per_subcore < MAX_SMT_THREADS)
2921 return false;
2922 if (n_subcores > MAX_SUBCORES)
2923 return false;
2924 if (n_subcores > 1) {
2925 if (!(dynamic_mt_modes & 2))
2926 n_subcores = 4;
2927 if (n_subcores > 2 && !(dynamic_mt_modes & 4))
2928 return false;
2929 }
2930
2931 return n_subcores * roundup_pow_of_two(n_threads) <= MAX_SMT_THREADS;
Paul Mackerrasec257162015-06-24 21:18:03 +10002932}
2933
Paul Mackerras898b25b2017-06-22 15:08:42 +10002934static void init_vcore_to_run(struct kvmppc_vcore *vc)
Paul Mackerrasec257162015-06-24 21:18:03 +10002935{
Paul Mackerrasec257162015-06-24 21:18:03 +10002936 vc->entry_exit_map = 0;
2937 vc->in_guest = 0;
2938 vc->napping_threads = 0;
2939 vc->conferring_threads = 0;
Paul Mackerras57b8daa2018-04-20 22:51:11 +10002940 vc->tb_offset_applied = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002941}
2942
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002943static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip)
2944{
2945 int n_threads = vc->num_threads;
2946 int sub;
2947
2948 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
2949 return false;
2950
Paul Mackerrasaa227862018-09-12 10:42:12 +10002951 /* In one_vm_per_core mode, require all vcores to be from the same vm */
2952 if (one_vm_per_core && vc->kvm != cip->vc[0]->kvm)
2953 return false;
2954
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002955 if (n_threads < cip->max_subcore_threads)
2956 n_threads = cip->max_subcore_threads;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002957 if (!subcore_config_ok(cip->n_subcores + 1, n_threads))
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002958 return false;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002959 cip->max_subcore_threads = n_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002960
2961 sub = cip->n_subcores;
2962 ++cip->n_subcores;
2963 cip->total_threads += vc->num_threads;
2964 cip->subcore_threads[sub] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002965 cip->vc[sub] = vc;
2966 init_vcore_to_run(vc);
2967 list_del_init(&vc->preempt_list);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002968
2969 return true;
2970}
2971
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002972/*
2973 * Work out whether it is possible to piggyback the execution of
2974 * vcore *pvc onto the execution of the other vcores described in *cip.
2975 */
2976static bool can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip,
2977 int target_threads)
2978{
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002979 if (cip->total_threads + pvc->num_threads > target_threads)
2980 return false;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002981
Paul Mackerrasb0090312016-09-15 16:27:41 +10002982 return can_dynamic_split(pvc, cip);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002983}
2984
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002985static void prepare_threads(struct kvmppc_vcore *vc)
2986{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002987 int i;
2988 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002989
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002990 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002991 if (signal_pending(vcpu->arch.run_task))
2992 vcpu->arch.ret = -EINTR;
Nicholas Pigginb1b16972021-01-18 16:28:06 +10002993 else if (no_mixing_hpt_and_radix &&
2994 kvm_is_radix(vc->kvm) != radix_enabled())
2995 vcpu->arch.ret = -EINVAL;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002996 else if (vcpu->arch.vpa.update_pending ||
2997 vcpu->arch.slb_shadow.update_pending ||
2998 vcpu->arch.dtl.update_pending)
2999 vcpu->arch.ret = RESUME_GUEST;
3000 else
3001 continue;
3002 kvmppc_remove_runnable(vc, vcpu);
3003 wake_up(&vcpu->arch.cpu_run);
3004 }
3005}
3006
Paul Mackerrasec257162015-06-24 21:18:03 +10003007static void collect_piggybacks(struct core_info *cip, int target_threads)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003008{
Paul Mackerrasec257162015-06-24 21:18:03 +10003009 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
3010 struct kvmppc_vcore *pvc, *vcnext;
3011
3012 spin_lock(&lp->lock);
3013 list_for_each_entry_safe(pvc, vcnext, &lp->list, preempt_list) {
3014 if (!spin_trylock(&pvc->lock))
3015 continue;
3016 prepare_threads(pvc);
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003017 if (!pvc->n_runnable || !pvc->kvm->arch.mmu_ready) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003018 list_del_init(&pvc->preempt_list);
3019 if (pvc->runner == NULL) {
3020 pvc->vcore_state = VCORE_INACTIVE;
3021 kvmppc_core_end_stolen(pvc);
3022 }
3023 spin_unlock(&pvc->lock);
3024 continue;
3025 }
3026 if (!can_piggyback(pvc, cip, target_threads)) {
3027 spin_unlock(&pvc->lock);
3028 continue;
3029 }
3030 kvmppc_core_end_stolen(pvc);
3031 pvc->vcore_state = VCORE_PIGGYBACK;
3032 if (cip->total_threads >= target_threads)
3033 break;
3034 }
3035 spin_unlock(&lp->lock);
3036}
3037
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003038static bool recheck_signals_and_mmu(struct core_info *cip)
Paul Mackerras8b24e692017-06-26 15:45:51 +10003039{
3040 int sub, i;
3041 struct kvm_vcpu *vcpu;
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003042 struct kvmppc_vcore *vc;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003043
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003044 for (sub = 0; sub < cip->n_subcores; ++sub) {
3045 vc = cip->vc[sub];
3046 if (!vc->kvm->arch.mmu_ready)
3047 return true;
3048 for_each_runnable_thread(i, vcpu, vc)
Paul Mackerras8b24e692017-06-26 15:45:51 +10003049 if (signal_pending(vcpu->arch.run_task))
3050 return true;
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003051 }
Paul Mackerras8b24e692017-06-26 15:45:51 +10003052 return false;
3053}
3054
Paul Mackerrasec257162015-06-24 21:18:03 +10003055static void post_guest_process(struct kvmppc_vcore *vc, bool is_master)
3056{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003057 int still_running = 0, i;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003058 u64 now;
3059 long ret;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003060 struct kvm_vcpu *vcpu;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003061
Paul Mackerrasec257162015-06-24 21:18:03 +10003062 spin_lock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003063 now = get_tb();
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003064 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras53655dd2018-10-08 16:30:54 +11003065 /*
3066 * It's safe to unlock the vcore in the loop here, because
3067 * for_each_runnable_thread() is safe against removal of
3068 * the vcpu, and the vcore state is VCORE_EXITING here,
3069 * so any vcpus becoming runnable will have their arch.trap
3070 * set to zero and can't actually run in the guest.
3071 */
3072 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003073 /* cancel pending dec exception if dec is positive */
3074 if (now < vcpu->arch.dec_expires &&
3075 kvmppc_core_pending_dec(vcpu))
3076 kvmppc_core_dequeue_dec(vcpu);
3077
3078 trace_kvm_guest_exit(vcpu);
3079
3080 ret = RESUME_GUEST;
3081 if (vcpu->arch.trap)
Tianjia Zhang8c99d342020-04-27 12:35:11 +08003082 ret = kvmppc_handle_exit_hv(vcpu,
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003083 vcpu->arch.run_task);
3084
3085 vcpu->arch.ret = ret;
3086 vcpu->arch.trap = 0;
3087
Paul Mackerras53655dd2018-10-08 16:30:54 +11003088 spin_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10003089 if (is_kvmppc_resume_guest(vcpu->arch.ret)) {
3090 if (vcpu->arch.pending_exceptions)
3091 kvmppc_core_prepare_to_enter(vcpu);
3092 if (vcpu->arch.ceded)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003093 kvmppc_set_timer(vcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10003094 else
3095 ++still_running;
3096 } else {
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003097 kvmppc_remove_runnable(vc, vcpu);
3098 wake_up(&vcpu->arch.cpu_run);
3099 }
3100 }
Paul Mackerrasec257162015-06-24 21:18:03 +10003101 if (!is_master) {
Paul Mackerras563a1e92015-07-16 17:11:14 +10003102 if (still_running > 0) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003103 kvmppc_vcore_preempt(vc);
Paul Mackerras563a1e92015-07-16 17:11:14 +10003104 } else if (vc->runner) {
3105 vc->vcore_state = VCORE_PREEMPT;
3106 kvmppc_core_start_stolen(vc);
3107 } else {
3108 vc->vcore_state = VCORE_INACTIVE;
3109 }
Paul Mackerrasec257162015-06-24 21:18:03 +10003110 if (vc->n_runnable > 0 && vc->runner == NULL) {
3111 /* make sure there's a candidate runner awake */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003112 i = -1;
3113 vcpu = next_runnable_thread(vc, &i);
Paul Mackerrasec257162015-06-24 21:18:03 +10003114 wake_up(&vcpu->arch.cpu_run);
3115 }
3116 }
3117 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003118}
3119
Paul Mackerras371fefd2011-06-29 00:23:08 +00003120/*
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003121 * Clear core from the list of active host cores as we are about to
3122 * enter the guest. Only do this if it is the primary thread of the
3123 * core (not if a subcore) that is entering the guest.
3124 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003125static inline int kvmppc_clear_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003126{
3127 int core;
3128
3129 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003130 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003131 /*
3132 * Memory barrier can be omitted here as we will do a smp_wmb()
3133 * later in kvmppc_start_thread and we need ensure that state is
3134 * visible to other CPUs only after we enter guest.
3135 */
3136 core = cpu >> threads_shift;
3137 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 0;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003138 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003139}
3140
3141/*
3142 * Advertise this core as an active host core since we exited the guest
3143 * Only need to do this if it is the primary thread of the core that is
3144 * exiting.
3145 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003146static inline int kvmppc_set_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003147{
3148 int core;
3149
3150 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003151 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003152
3153 /*
3154 * Memory barrier can be omitted here because we do a spin_unlock
3155 * immediately after this which provides the memory barrier.
3156 */
3157 core = cpu >> threads_shift;
3158 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 1;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003159 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003160}
3161
Paul Mackerras8b24e692017-06-26 15:45:51 +10003162static void set_irq_happened(int trap)
3163{
3164 switch (trap) {
3165 case BOOK3S_INTERRUPT_EXTERNAL:
3166 local_paca->irq_happened |= PACA_IRQ_EE;
3167 break;
3168 case BOOK3S_INTERRUPT_H_DOORBELL:
3169 local_paca->irq_happened |= PACA_IRQ_DBELL;
3170 break;
3171 case BOOK3S_INTERRUPT_HMI:
3172 local_paca->irq_happened |= PACA_IRQ_HMI;
3173 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11003174 case BOOK3S_INTERRUPT_SYSTEM_RESET:
3175 replay_system_reset();
3176 break;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003177 }
3178}
3179
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003180/*
Paul Mackerras371fefd2011-06-29 00:23:08 +00003181 * Run a set of guest threads on a physical core.
3182 * Called with vc->lock held.
3183 */
Paul Mackerras66feed62015-03-28 14:21:12 +11003184static noinline void kvmppc_run_core(struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003185{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003186 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003187 int i;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003188 int srcu_idx;
Paul Mackerrasec257162015-06-24 21:18:03 +10003189 struct core_info core_info;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003190 struct kvmppc_vcore *pvc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003191 struct kvm_split_mode split_info, *sip;
3192 int split, subcore_size, active;
3193 int sub;
3194 bool thr0_done;
3195 unsigned long cmd_bit, stat_bit;
Paul Mackerrasec257162015-06-24 21:18:03 +10003196 int pcpu, thr;
3197 int target_threads;
Paul Mackerras45c940b2016-11-18 17:43:30 +11003198 int controlled_threads;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003199 int trap;
Paul Mackerras516f7892017-10-16 16:11:57 +11003200 bool is_power8;
Paul Mackerras081f3232012-06-01 20:20:24 +10003201
3202 /*
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003203 * Remove from the list any threads that have a signal pending
3204 * or need a VPA update done
3205 */
3206 prepare_threads(vc);
3207
3208 /* if the runner is no longer runnable, let the caller pick a new one */
3209 if (vc->runner->arch.state != KVMPPC_VCPU_RUNNABLE)
3210 return;
3211
3212 /*
3213 * Initialize *vc.
Paul Mackerras081f3232012-06-01 20:20:24 +10003214 */
Paul Mackerras898b25b2017-06-22 15:08:42 +10003215 init_vcore_to_run(vc);
Paul Mackerras2711e242014-12-04 16:43:28 +11003216 vc->preempt_tb = TB_NIL;
Paul Mackerras081f3232012-06-01 20:20:24 +10003217
3218 /*
Paul Mackerras45c940b2016-11-18 17:43:30 +11003219 * Number of threads that we will be controlling: the same as
3220 * the number of threads per subcore, except on POWER9,
3221 * where it's 1 because the threads are (mostly) independent.
3222 */
Paul Mackerras516f7892017-10-16 16:11:57 +11003223 controlled_threads = threads_per_vcore(vc->kvm);
Paul Mackerras45c940b2016-11-18 17:43:30 +11003224
3225 /*
Michael Ellerman3102f782014-05-23 18:15:29 +10003226 * Make sure we are running on primary threads, and that secondary
3227 * threads are offline. Also check if the number of threads in this
3228 * guest are greater than the current system threads per guest.
Paul Mackerrasc0101502017-10-19 14:11:23 +11003229 * On POWER9, we need to be not in independent-threads mode if
Paul Mackerras00608e12018-01-11 16:54:26 +11003230 * this is a HPT guest on a radix host machine where the
3231 * CPU threads may not be in different MMU modes.
Paul Mackerras7b444c62012-10-15 01:16:14 +00003232 */
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003233 if ((controlled_threads > 1) &&
3234 ((vc->num_threads > threads_per_subcore) || !on_primary_thread())) {
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003235 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00003236 vcpu->arch.ret = -EBUSY;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003237 kvmppc_remove_runnable(vc, vcpu);
3238 wake_up(&vcpu->arch.cpu_run);
3239 }
Paul Mackerras7b444c62012-10-15 01:16:14 +00003240 goto out;
3241 }
3242
Paul Mackerrasec257162015-06-24 21:18:03 +10003243 /*
3244 * See if we could run any other vcores on the physical core
3245 * along with this one.
3246 */
3247 init_core_info(&core_info, vc);
3248 pcpu = smp_processor_id();
Paul Mackerras45c940b2016-11-18 17:43:30 +11003249 target_threads = controlled_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10003250 if (target_smt_mode && target_smt_mode < target_threads)
3251 target_threads = target_smt_mode;
3252 if (vc->num_threads < target_threads)
3253 collect_piggybacks(&core_info, target_threads);
Michael Ellerman3102f782014-05-23 18:15:29 +10003254
Paul Mackerras8b24e692017-06-26 15:45:51 +10003255 /*
3256 * On radix, arrange for TLB flushing if necessary.
3257 * This has to be done before disabling interrupts since
3258 * it uses smp_call_function().
3259 */
3260 pcpu = smp_processor_id();
3261 if (kvm_is_radix(vc->kvm)) {
3262 for (sub = 0; sub < core_info.n_subcores; ++sub)
3263 for_each_runnable_thread(i, vcpu, core_info.vc[sub])
3264 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
3265 }
3266
3267 /*
3268 * Hard-disable interrupts, and check resched flag and signals.
3269 * If we need to reschedule or deliver a signal, clean up
3270 * and return without going into the guest(s).
Paul Mackerras072df812017-11-09 14:30:24 +11003271 * If the mmu_ready flag has been cleared, don't go into the
Paul Mackerras38c53af2017-11-08 14:44:04 +11003272 * guest because that means a HPT resize operation is in progress.
Paul Mackerras8b24e692017-06-26 15:45:51 +10003273 */
3274 local_irq_disable();
3275 hard_irq_disable();
3276 if (lazy_irq_pending() || need_resched() ||
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003277 recheck_signals_and_mmu(&core_info)) {
Paul Mackerras8b24e692017-06-26 15:45:51 +10003278 local_irq_enable();
3279 vc->vcore_state = VCORE_INACTIVE;
3280 /* Unlock all except the primary vcore */
3281 for (sub = 1; sub < core_info.n_subcores; ++sub) {
3282 pvc = core_info.vc[sub];
3283 /* Put back on to the preempted vcores list */
3284 kvmppc_vcore_preempt(pvc);
3285 spin_unlock(&pvc->lock);
3286 }
3287 for (i = 0; i < controlled_threads; ++i)
3288 kvmppc_release_hwthread(pcpu + i);
3289 return;
3290 }
3291
3292 kvmppc_clear_host_core(pcpu);
3293
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003294 /* Decide on micro-threading (split-core) mode */
3295 subcore_size = threads_per_subcore;
3296 cmd_bit = stat_bit = 0;
3297 split = core_info.n_subcores;
3298 sip = NULL;
Paul Mackerras516f7892017-10-16 16:11:57 +11003299 is_power8 = cpu_has_feature(CPU_FTR_ARCH_207S)
3300 && !cpu_has_feature(CPU_FTR_ARCH_300);
3301
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003302 if (split > 1) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003303 sip = &split_info;
3304 memset(&split_info, 0, sizeof(split_info));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003305 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003306 split_info.vc[sub] = core_info.vc[sub];
Paul Mackerras516f7892017-10-16 16:11:57 +11003307
3308 if (is_power8) {
3309 if (split == 2 && (dynamic_mt_modes & 2)) {
3310 cmd_bit = HID0_POWER8_1TO2LPAR;
3311 stat_bit = HID0_POWER8_2LPARMODE;
3312 } else {
3313 split = 4;
3314 cmd_bit = HID0_POWER8_1TO4LPAR;
3315 stat_bit = HID0_POWER8_4LPARMODE;
3316 }
3317 subcore_size = MAX_SMT_THREADS / split;
3318 split_info.rpr = mfspr(SPRN_RPR);
3319 split_info.pmmar = mfspr(SPRN_PMMAR);
3320 split_info.ldbar = mfspr(SPRN_LDBAR);
3321 split_info.subcore_size = subcore_size;
3322 } else {
3323 split_info.subcore_size = 1;
3324 }
3325
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003326 /* order writes to split_info before kvm_split_mode pointer */
3327 smp_wmb();
3328 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003329
Paul Mackerrasc0101502017-10-19 14:11:23 +11003330 for (thr = 0; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003331 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3332
Nicholas Piggind2e60072018-02-14 01:08:12 +10003333 paca->kvm_hstate.napping = 0;
3334 paca->kvm_hstate.kvm_split_mode = sip;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003335 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003336
Paul Mackerras516f7892017-10-16 16:11:57 +11003337 /* Initiate micro-threading (split-core) on POWER8 if required */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003338 if (cmd_bit) {
3339 unsigned long hid0 = mfspr(SPRN_HID0);
3340
3341 hid0 |= cmd_bit | HID0_POWER8_DYNLPARDIS;
3342 mb();
3343 mtspr(SPRN_HID0, hid0);
3344 isync();
3345 for (;;) {
3346 hid0 = mfspr(SPRN_HID0);
3347 if (hid0 & stat_bit)
3348 break;
3349 cpu_relax();
3350 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +00003351 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003352
Paul Mackerras7aa15842018-04-20 19:53:22 +10003353 /*
3354 * On POWER8, set RWMR register.
3355 * Since it only affects PURR and SPURR, it doesn't affect
3356 * the host, so we don't save/restore the host value.
3357 */
3358 if (is_power8) {
3359 unsigned long rwmr_val = RWMR_RPA_P8_8THREAD;
3360 int n_online = atomic_read(&vc->online_count);
3361
3362 /*
3363 * Use the 8-thread value if we're doing split-core
3364 * or if the vcore's online count looks bogus.
3365 */
3366 if (split == 1 && threads_per_subcore == MAX_SMT_THREADS &&
3367 n_online >= 1 && n_online <= MAX_SMT_THREADS)
3368 rwmr_val = p8_rwmr_values[n_online];
3369 mtspr(SPRN_RWMR, rwmr_val);
3370 }
3371
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003372 /* Start all the threads */
3373 active = 0;
3374 for (sub = 0; sub < core_info.n_subcores; ++sub) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003375 thr = is_power8 ? subcore_thread_map[sub] : sub;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003376 thr0_done = false;
3377 active |= 1 << thr;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003378 pvc = core_info.vc[sub];
3379 pvc->pcpu = pcpu + thr;
3380 for_each_runnable_thread(i, vcpu, pvc) {
3381 kvmppc_start_thread(vcpu, pvc);
3382 kvmppc_create_dtl_entry(vcpu, pvc);
3383 trace_kvm_guest_enter(vcpu);
3384 if (!vcpu->arch.ptid)
3385 thr0_done = true;
3386 active |= 1 << (thr + vcpu->arch.ptid);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003387 }
Paul Mackerras898b25b2017-06-22 15:08:42 +10003388 /*
3389 * We need to start the first thread of each subcore
3390 * even if it doesn't have a vcpu.
3391 */
3392 if (!thr0_done)
3393 kvmppc_start_thread(NULL, pvc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003394 }
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303395
3396 /*
3397 * Ensure that split_info.do_nap is set after setting
3398 * the vcore pointer in the PACA of the secondaries.
3399 */
3400 smp_mb();
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303401
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003402 /*
3403 * When doing micro-threading, poke the inactive threads as well.
3404 * This gets them to the nap instruction after kvm_do_nap,
3405 * which reduces the time taken to unsplit later.
3406 */
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003407 if (cmd_bit) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003408 split_info.do_nap = 1; /* ask secondaries to nap when done */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003409 for (thr = 1; thr < threads_per_subcore; ++thr)
3410 if (!(active & (1 << thr)))
3411 kvmppc_ipi_thread(pcpu + thr);
Paul Mackerras516f7892017-10-16 16:11:57 +11003412 }
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003413
Paul Mackerras2f12f032012-10-15 01:17:17 +00003414 vc->vcore_state = VCORE_RUNNING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003415 preempt_disable();
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003416
3417 trace_kvmppc_run_core(vc, 0);
3418
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003419 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003420 spin_unlock(&core_info.vc[sub]->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003421
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003422 guest_enter_irqoff();
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003423
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003424 srcu_idx = srcu_read_lock(&vc->kvm->srcu);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003425
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303426 this_cpu_disable_ftrace();
3427
Alexey Kardashevskiy3309bec2019-03-29 16:40:13 +11003428 /*
3429 * Interrupts will be enabled once we get into the guest,
3430 * so tell lockdep that we're about to enable interrupts.
3431 */
3432 trace_hardirqs_on();
3433
Paul Mackerras8b24e692017-06-26 15:45:51 +10003434 trap = __kvmppc_vcore_entry();
Paul Mackerras19ccb762011-07-23 17:42:46 +10003435
Alexey Kardashevskiy3309bec2019-03-29 16:40:13 +11003436 trace_hardirqs_off();
3437
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303438 this_cpu_enable_ftrace();
3439
Paul Mackerrasec257162015-06-24 21:18:03 +10003440 srcu_read_unlock(&vc->kvm->srcu, srcu_idx);
3441
Paul Mackerras8b24e692017-06-26 15:45:51 +10003442 set_irq_happened(trap);
3443
Paul Mackerrasec257162015-06-24 21:18:03 +10003444 spin_lock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003445 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
Paul Mackerras19ccb762011-07-23 17:42:46 +10003446 vc->vcore_state = VCORE_EXITING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003447
Paul Mackerras371fefd2011-06-29 00:23:08 +00003448 /* wait for secondary threads to finish writing their state to memory */
Paul Mackerras516f7892017-10-16 16:11:57 +11003449 kvmppc_wait_for_nap(controlled_threads);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003450
3451 /* Return to whole-core mode if we split the core earlier */
Paul Mackerras516f7892017-10-16 16:11:57 +11003452 if (cmd_bit) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003453 unsigned long hid0 = mfspr(SPRN_HID0);
3454 unsigned long loops = 0;
3455
3456 hid0 &= ~HID0_POWER8_DYNLPARDIS;
3457 stat_bit = HID0_POWER8_2LPARMODE | HID0_POWER8_4LPARMODE;
3458 mb();
3459 mtspr(SPRN_HID0, hid0);
3460 isync();
3461 for (;;) {
3462 hid0 = mfspr(SPRN_HID0);
3463 if (!(hid0 & stat_bit))
3464 break;
3465 cpu_relax();
3466 ++loops;
3467 }
Nicholas Pigginb1b16972021-01-18 16:28:06 +10003468 split_info.do_nap = 0;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003469 }
3470
Paul Mackerras8b24e692017-06-26 15:45:51 +10003471 kvmppc_set_host_core(pcpu);
3472
Nicholas Piggin11266522021-01-30 23:08:12 +10003473 guest_exit_irqoff();
3474
Paul Mackerras8b24e692017-06-26 15:45:51 +10003475 local_irq_enable();
3476
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003477 /* Let secondaries go back to the offline loop */
Paul Mackerras45c940b2016-11-18 17:43:30 +11003478 for (i = 0; i < controlled_threads; ++i) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003479 kvmppc_release_hwthread(pcpu + i);
3480 if (sip && sip->napped[i])
3481 kvmppc_ipi_thread(pcpu + i);
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003482 cpumask_clear_cpu(pcpu + i, &vc->kvm->arch.cpu_in_guest);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003483 }
3484
Paul Mackerras371fefd2011-06-29 00:23:08 +00003485 spin_unlock(&vc->lock);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003486
Paul Mackerras371fefd2011-06-29 00:23:08 +00003487 /* make sure updates to secondary vcpu structs are visible now */
3488 smp_mb();
Paul Mackerrasde56a942011-06-29 00:21:34 +00003489
Paul Mackerras36ee41d2018-01-30 10:51:32 +11003490 preempt_enable();
3491
Paul Mackerras898b25b2017-06-22 15:08:42 +10003492 for (sub = 0; sub < core_info.n_subcores; ++sub) {
3493 pvc = core_info.vc[sub];
3494 post_guest_process(pvc, pvc == vc);
3495 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00003496
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003497 spin_lock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003498
Paul Mackerrasde56a942011-06-29 00:21:34 +00003499 out:
Paul Mackerras19ccb762011-07-23 17:42:46 +10003500 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003501 trace_kvmppc_run_core(vc, 1);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003502}
3503
Nicholas Piggin48013cb2021-05-28 19:07:32 +10003504static void switch_mmu_to_guest_radix(struct kvm *kvm, struct kvm_vcpu *vcpu, u64 lpcr)
3505{
3506 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3507 struct kvm_nested_guest *nested = vcpu->arch.nested;
3508 u32 lpid;
3509
3510 lpid = nested ? nested->shadow_lpid : kvm->arch.lpid;
3511
3512 /*
3513 * All the isync()s are overkill but trivially follow the ISA
3514 * requirements. Some can likely be replaced with justification
3515 * comment for why they are not needed.
3516 */
3517 isync();
3518 mtspr(SPRN_LPID, lpid);
3519 isync();
3520 mtspr(SPRN_LPCR, lpcr);
3521 isync();
3522 mtspr(SPRN_PID, vcpu->arch.pid);
3523 isync();
3524
3525 /* TLBIEL must have LPIDR set, so set guest LPID before flushing. */
3526 kvmppc_check_need_tlb_flush(kvm, vc->pcpu, nested);
3527}
3528
3529static void switch_mmu_to_host_radix(struct kvm *kvm, u32 pid)
3530{
3531 isync();
3532 mtspr(SPRN_PID, pid);
3533 isync();
3534 mtspr(SPRN_LPID, kvm->arch.host_lpid);
3535 isync();
3536 mtspr(SPRN_LPCR, kvm->arch.host_lpcr);
3537 isync();
3538}
3539
Paul Mackerras19ccb762011-07-23 17:42:46 +10003540/*
Paul Mackerras95a64322018-10-08 16:30:55 +11003541 * Load up hypervisor-mode registers on P9.
3542 */
Paul Mackerras360cae32018-10-08 16:31:04 +11003543static int kvmhv_load_hv_regs_and_go(struct kvm_vcpu *vcpu, u64 time_limit,
3544 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003545{
Nicholas Piggin48013cb2021-05-28 19:07:32 +10003546 struct kvm *kvm = vcpu->kvm;
Paul Mackerras95a64322018-10-08 16:30:55 +11003547 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3548 s64 hdec;
3549 u64 tb, purr, spurr;
3550 int trap;
3551 unsigned long host_hfscr = mfspr(SPRN_HFSCR);
3552 unsigned long host_ciabr = mfspr(SPRN_CIABR);
Ravi Bangoria122954ed72020-12-16 16:12:17 +05303553 unsigned long host_dawr0 = mfspr(SPRN_DAWR0);
3554 unsigned long host_dawrx0 = mfspr(SPRN_DAWRX0);
Paul Mackerras95a64322018-10-08 16:30:55 +11003555 unsigned long host_psscr = mfspr(SPRN_PSSCR);
3556 unsigned long host_pidr = mfspr(SPRN_PID);
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +05303557 unsigned long host_dawr1 = 0;
3558 unsigned long host_dawrx1 = 0;
3559
3560 if (cpu_has_feature(CPU_FTR_DAWR1)) {
3561 host_dawr1 = mfspr(SPRN_DAWR1);
3562 host_dawrx1 = mfspr(SPRN_DAWRX1);
3563 }
Paul Mackerras95a64322018-10-08 16:30:55 +11003564
3565 hdec = time_limit - mftb();
Nicholas Piggin413679e2021-05-28 19:07:29 +10003566 if (hdec < 0)
Paul Mackerras95a64322018-10-08 16:30:55 +11003567 return BOOK3S_INTERRUPT_HV_DECREMENTER;
Paul Mackerras95a64322018-10-08 16:30:55 +11003568
3569 if (vc->tb_offset) {
3570 u64 new_tb = mftb() + vc->tb_offset;
3571 mtspr(SPRN_TBU40, new_tb);
3572 tb = mftb();
3573 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3574 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3575 vc->tb_offset_applied = vc->tb_offset;
3576 }
3577
3578 if (vc->pcr)
Jordan Niethe13c7bb32019-09-17 10:46:05 +10003579 mtspr(SPRN_PCR, vc->pcr | PCR_MASK);
Paul Mackerras95a64322018-10-08 16:30:55 +11003580 mtspr(SPRN_DPDES, vc->dpdes);
3581 mtspr(SPRN_VTB, vc->vtb);
3582
3583 local_paca->kvm_hstate.host_purr = mfspr(SPRN_PURR);
3584 local_paca->kvm_hstate.host_spurr = mfspr(SPRN_SPURR);
3585 mtspr(SPRN_PURR, vcpu->arch.purr);
3586 mtspr(SPRN_SPURR, vcpu->arch.spurr);
3587
Michael Neulingc1fe1902019-04-01 17:03:12 +11003588 if (dawr_enabled()) {
Ravi Bangoria122954ed72020-12-16 16:12:17 +05303589 mtspr(SPRN_DAWR0, vcpu->arch.dawr0);
3590 mtspr(SPRN_DAWRX0, vcpu->arch.dawrx0);
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +05303591 if (cpu_has_feature(CPU_FTR_DAWR1)) {
3592 mtspr(SPRN_DAWR1, vcpu->arch.dawr1);
3593 mtspr(SPRN_DAWRX1, vcpu->arch.dawrx1);
3594 }
Paul Mackerras95a64322018-10-08 16:30:55 +11003595 }
3596 mtspr(SPRN_CIABR, vcpu->arch.ciabr);
3597 mtspr(SPRN_IC, vcpu->arch.ic);
Paul Mackerras95a64322018-10-08 16:30:55 +11003598
3599 mtspr(SPRN_PSSCR, vcpu->arch.psscr | PSSCR_EC |
3600 (local_paca->kvm_hstate.fake_suspend << PSSCR_FAKE_SUSPEND_LG));
3601
3602 mtspr(SPRN_HFSCR, vcpu->arch.hfscr);
3603
3604 mtspr(SPRN_SPRG0, vcpu->arch.shregs.sprg0);
3605 mtspr(SPRN_SPRG1, vcpu->arch.shregs.sprg1);
3606 mtspr(SPRN_SPRG2, vcpu->arch.shregs.sprg2);
3607 mtspr(SPRN_SPRG3, vcpu->arch.shregs.sprg3);
3608
3609 mtspr(SPRN_AMOR, ~0UL);
3610
Nicholas Piggin48013cb2021-05-28 19:07:32 +10003611 switch_mmu_to_guest_radix(kvm, vcpu, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11003612
Nicholas Piggin413679e2021-05-28 19:07:29 +10003613 /*
3614 * P9 suppresses the HDEC exception when LPCR[HDICE] = 0,
3615 * so set guest LPCR (with HDICE) before writing HDEC.
3616 */
3617 mtspr(SPRN_HDEC, hdec);
3618
Paul Mackerras95a64322018-10-08 16:30:55 +11003619 mtspr(SPRN_SRR0, vcpu->arch.shregs.srr0);
3620 mtspr(SPRN_SRR1, vcpu->arch.shregs.srr1);
3621
3622 trap = __kvmhv_vcpu_entry_p9(vcpu);
3623
3624 /* Advance host PURR/SPURR by the amount used by guest */
3625 purr = mfspr(SPRN_PURR);
3626 spurr = mfspr(SPRN_SPURR);
3627 mtspr(SPRN_PURR, local_paca->kvm_hstate.host_purr +
3628 purr - vcpu->arch.purr);
3629 mtspr(SPRN_SPURR, local_paca->kvm_hstate.host_spurr +
3630 spurr - vcpu->arch.spurr);
3631 vcpu->arch.purr = purr;
3632 vcpu->arch.spurr = spurr;
3633
3634 vcpu->arch.ic = mfspr(SPRN_IC);
3635 vcpu->arch.pid = mfspr(SPRN_PID);
3636 vcpu->arch.psscr = mfspr(SPRN_PSSCR) & PSSCR_GUEST_VIS;
3637
3638 vcpu->arch.shregs.sprg0 = mfspr(SPRN_SPRG0);
3639 vcpu->arch.shregs.sprg1 = mfspr(SPRN_SPRG1);
3640 vcpu->arch.shregs.sprg2 = mfspr(SPRN_SPRG2);
3641 vcpu->arch.shregs.sprg3 = mfspr(SPRN_SPRG3);
3642
Suraj Jitindar Singh7cb9eb12019-03-18 13:59:46 +11003643 /* Preserve PSSCR[FAKE_SUSPEND] until we've called kvmppc_save_tm_hv */
3644 mtspr(SPRN_PSSCR, host_psscr |
3645 (local_paca->kvm_hstate.fake_suspend << PSSCR_FAKE_SUSPEND_LG));
Paul Mackerras95a64322018-10-08 16:30:55 +11003646 mtspr(SPRN_HFSCR, host_hfscr);
3647 mtspr(SPRN_CIABR, host_ciabr);
Ravi Bangoria122954ed72020-12-16 16:12:17 +05303648 mtspr(SPRN_DAWR0, host_dawr0);
3649 mtspr(SPRN_DAWRX0, host_dawrx0);
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +05303650 if (cpu_has_feature(CPU_FTR_DAWR1)) {
3651 mtspr(SPRN_DAWR1, host_dawr1);
3652 mtspr(SPRN_DAWRX1, host_dawrx1);
3653 }
Paul Mackerras95a64322018-10-08 16:30:55 +11003654
3655 /*
3656 * Since this is radix, do a eieio; tlbsync; ptesync sequence in
3657 * case we interrupted the guest between a tlbie and a ptesync.
3658 */
3659 asm volatile("eieio; tlbsync; ptesync");
3660
Nicholas Piggindc462262020-08-25 17:55:35 +10003661 /*
3662 * cp_abort is required if the processor supports local copy-paste
3663 * to clear the copy buffer that was under control of the guest.
3664 */
3665 if (cpu_has_feature(CPU_FTR_ARCH_31))
3666 asm volatile(PPC_CP_ABORT);
3667
Paul Mackerras95a64322018-10-08 16:30:55 +11003668 vc->dpdes = mfspr(SPRN_DPDES);
3669 vc->vtb = mfspr(SPRN_VTB);
3670 mtspr(SPRN_DPDES, 0);
3671 if (vc->pcr)
Jordan Niethe13c7bb32019-09-17 10:46:05 +10003672 mtspr(SPRN_PCR, PCR_MASK);
Paul Mackerras95a64322018-10-08 16:30:55 +11003673
3674 if (vc->tb_offset_applied) {
3675 u64 new_tb = mftb() - vc->tb_offset_applied;
3676 mtspr(SPRN_TBU40, new_tb);
3677 tb = mftb();
3678 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3679 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3680 vc->tb_offset_applied = 0;
3681 }
3682
3683 mtspr(SPRN_HDEC, 0x7fffffff);
Nicholas Piggin48013cb2021-05-28 19:07:32 +10003684
3685 switch_mmu_to_host_radix(kvm, host_pidr);
Paul Mackerras95a64322018-10-08 16:30:55 +11003686
3687 return trap;
3688}
3689
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10003690static inline bool hcall_is_xics(unsigned long req)
3691{
3692 return req == H_EOI || req == H_CPPR || req == H_IPI ||
3693 req == H_IPOLL || req == H_XIRR || req == H_XIRR_X;
3694}
3695
Paul Mackerras95a64322018-10-08 16:30:55 +11003696/*
3697 * Virtual-mode guest entry for POWER9 and later when the host and
3698 * guest are both using the radix MMU. The LPIDR has already been set.
3699 */
Wang Wenshengcf59eb12020-09-21 11:22:11 +00003700static int kvmhv_p9_guest_entry(struct kvm_vcpu *vcpu, u64 time_limit,
Paul Mackerras360cae32018-10-08 16:31:04 +11003701 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003702{
3703 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3704 unsigned long host_dscr = mfspr(SPRN_DSCR);
3705 unsigned long host_tidr = mfspr(SPRN_TIDR);
3706 unsigned long host_iamr = mfspr(SPRN_IAMR);
Michael Ellermand976f682019-02-20 19:55:00 +11003707 unsigned long host_amr = mfspr(SPRN_AMR);
Fabiano Rosas25edcc52021-02-04 17:05:17 -03003708 unsigned long host_fscr = mfspr(SPRN_FSCR);
Paul Mackerras95a64322018-10-08 16:30:55 +11003709 s64 dec;
3710 u64 tb;
3711 int trap, save_pmu;
3712
Nicholas Piggin89d35b22021-05-28 19:07:34 +10003713 WARN_ON_ONCE(vcpu->arch.ceded);
3714
Paul Mackerras95a64322018-10-08 16:30:55 +11003715 dec = mfspr(SPRN_DEC);
3716 tb = mftb();
Paul Mackerras35dfb432020-09-03 17:55:40 +10003717 if (dec < 0)
Paul Mackerras95a64322018-10-08 16:30:55 +11003718 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3719 local_paca->kvm_hstate.dec_expires = dec + tb;
3720 if (local_paca->kvm_hstate.dec_expires < time_limit)
3721 time_limit = local_paca->kvm_hstate.dec_expires;
3722
Paul Mackerras95a64322018-10-08 16:30:55 +11003723 kvmhv_save_host_pmu(); /* saves it to PACA kvm_hstate */
3724
3725 kvmppc_subcore_enter_guest();
3726
3727 vc->entry_exit_map = 1;
3728 vc->in_guest = 1;
3729
3730 if (vcpu->arch.vpa.pinned_addr) {
3731 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3732 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3733 lp->yield_count = cpu_to_be32(yield_count);
3734 vcpu->arch.vpa.dirty = 1;
3735 }
3736
3737 if (cpu_has_feature(CPU_FTR_TM) ||
3738 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3739 kvmppc_restore_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3740
3741 kvmhv_load_guest_pmu(vcpu);
3742
3743 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3744 load_fp_state(&vcpu->arch.fp);
3745#ifdef CONFIG_ALTIVEC
3746 load_vr_state(&vcpu->arch.vr);
3747#endif
Suraj Jitindar Singh44b198a2019-04-30 10:41:23 +10003748 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
Paul Mackerras95a64322018-10-08 16:30:55 +11003749
3750 mtspr(SPRN_DSCR, vcpu->arch.dscr);
3751 mtspr(SPRN_IAMR, vcpu->arch.iamr);
3752 mtspr(SPRN_PSPB, vcpu->arch.pspb);
3753 mtspr(SPRN_FSCR, vcpu->arch.fscr);
3754 mtspr(SPRN_TAR, vcpu->arch.tar);
3755 mtspr(SPRN_EBBHR, vcpu->arch.ebbhr);
3756 mtspr(SPRN_EBBRR, vcpu->arch.ebbrr);
3757 mtspr(SPRN_BESCR, vcpu->arch.bescr);
3758 mtspr(SPRN_WORT, vcpu->arch.wort);
3759 mtspr(SPRN_TIDR, vcpu->arch.tid);
3760 mtspr(SPRN_DAR, vcpu->arch.shregs.dar);
3761 mtspr(SPRN_DSISR, vcpu->arch.shregs.dsisr);
3762 mtspr(SPRN_AMR, vcpu->arch.amr);
3763 mtspr(SPRN_UAMOR, vcpu->arch.uamor);
3764
3765 if (!(vcpu->arch.ctrl & 1))
3766 mtspr(SPRN_CTRLT, mfspr(SPRN_CTRLF) & ~1);
3767
Nicholas Piggin6ffe2c62021-05-28 19:07:30 +10003768 /*
3769 * When setting DEC, we must always deal with irq_work_raise via NMI vs
3770 * setting DEC. The problem occurs right as we switch into guest mode
3771 * if a NMI hits and sets pending work and sets DEC, then that will
3772 * apply to the guest and not bring us back to the host.
3773 *
3774 * irq_work_raise could check a flag (or possibly LPCR[HDICE] for
3775 * example) and set HDEC to 1? That wouldn't solve the nested hv
3776 * case which needs to abort the hcall or zero the time limit.
3777 *
3778 * XXX: Another day's problem.
3779 */
Paul Mackerras95a64322018-10-08 16:30:55 +11003780 mtspr(SPRN_DEC, vcpu->arch.dec_expires - mftb());
3781
Paul Mackerras360cae32018-10-08 16:31:04 +11003782 if (kvmhv_on_pseries()) {
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003783 /*
3784 * We need to save and restore the guest visible part of the
3785 * psscr (i.e. using SPRN_PSSCR_PR) since the hypervisor
3786 * doesn't do this for us. Note only required if pseries since
3787 * this is done in kvmhv_load_hv_regs_and_go() below otherwise.
3788 */
3789 unsigned long host_psscr;
Paul Mackerras360cae32018-10-08 16:31:04 +11003790 /* call our hypervisor to load up HV regs and go */
3791 struct hv_guest_state hvregs;
Paul Mackerras95a64322018-10-08 16:30:55 +11003792
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003793 host_psscr = mfspr(SPRN_PSSCR_PR);
3794 mtspr(SPRN_PSSCR_PR, vcpu->arch.psscr);
Paul Mackerras360cae32018-10-08 16:31:04 +11003795 kvmhv_save_hv_regs(vcpu, &hvregs);
3796 hvregs.lpcr = lpcr;
3797 vcpu->arch.regs.msr = vcpu->arch.shregs.msr;
3798 hvregs.version = HV_GUEST_STATE_VERSION;
3799 if (vcpu->arch.nested) {
3800 hvregs.lpid = vcpu->arch.nested->shadow_lpid;
3801 hvregs.vcpu_token = vcpu->arch.nested_vcpu_id;
3802 } else {
3803 hvregs.lpid = vcpu->kvm->arch.lpid;
3804 hvregs.vcpu_token = vcpu->vcpu_id;
3805 }
3806 hvregs.hdec_expiry = time_limit;
3807 trap = plpar_hcall_norets(H_ENTER_NESTED, __pa(&hvregs),
3808 __pa(&vcpu->arch.regs));
3809 kvmhv_restore_hv_return_state(vcpu, &hvregs);
3810 vcpu->arch.shregs.msr = vcpu->arch.regs.msr;
3811 vcpu->arch.shregs.dar = mfspr(SPRN_DAR);
3812 vcpu->arch.shregs.dsisr = mfspr(SPRN_DSISR);
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003813 vcpu->arch.psscr = mfspr(SPRN_PSSCR_PR);
3814 mtspr(SPRN_PSSCR_PR, host_psscr);
Paul Mackerras4bad7772018-10-08 16:31:06 +11003815
3816 /* H_CEDE has to be handled now, not later */
3817 if (trap == BOOK3S_INTERRUPT_SYSCALL && !vcpu->arch.nested &&
3818 kvmppc_get_gpr(vcpu, 3) == H_CEDE) {
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10003819 kvmppc_cede(vcpu);
Michael Roth1f50cc12020-03-10 16:11:28 -05003820 kvmppc_set_gpr(vcpu, 3, 0);
Paul Mackerras4bad7772018-10-08 16:31:06 +11003821 trap = 0;
3822 }
Paul Mackerras360cae32018-10-08 16:31:04 +11003823 } else {
Nicholas Piggin09512c22021-05-28 19:07:31 +10003824 kvmppc_xive_push_vcpu(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11003825 trap = kvmhv_load_hv_regs_and_go(vcpu, time_limit, lpcr);
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10003826 if (trap == BOOK3S_INTERRUPT_SYSCALL && !vcpu->arch.nested &&
3827 !(vcpu->arch.shregs.msr & MSR_PR)) {
3828 unsigned long req = kvmppc_get_gpr(vcpu, 3);
Nicholas Piggin09512c22021-05-28 19:07:31 +10003829
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10003830 /* H_CEDE has to be handled now, not later */
3831 if (req == H_CEDE) {
3832 kvmppc_cede(vcpu);
3833 kvmppc_xive_rearm_escalation(vcpu); /* may un-cede */
3834 kvmppc_set_gpr(vcpu, 3, 0);
3835 trap = 0;
3836
3837 /* XICS hcalls must be handled before xive is pulled */
3838 } else if (hcall_is_xics(req)) {
3839 int ret;
3840
3841 ret = kvmppc_xive_xics_hcall(vcpu, req);
3842 if (ret != H_TOO_HARD) {
3843 kvmppc_set_gpr(vcpu, 3, ret);
3844 trap = 0;
3845 }
3846 }
3847 }
3848 kvmppc_xive_pull_vcpu(vcpu);
Nicholas Piggin89d35b22021-05-28 19:07:34 +10003849
3850 vcpu->arch.slb_max = 0;
Paul Mackerras360cae32018-10-08 16:31:04 +11003851 }
Paul Mackerras95a64322018-10-08 16:30:55 +11003852
Paul Mackerras95a64322018-10-08 16:30:55 +11003853 dec = mfspr(SPRN_DEC);
Suraj Jitindar Singh86953772019-06-20 11:46:50 +10003854 if (!(lpcr & LPCR_LD)) /* Sign extend if not using large decrementer */
3855 dec = (s32) dec;
Paul Mackerras95a64322018-10-08 16:30:55 +11003856 tb = mftb();
3857 vcpu->arch.dec_expires = dec + tb;
3858 vcpu->cpu = -1;
3859 vcpu->arch.thread_cpu = -1;
Nicholas Piggin5088eb42021-04-12 11:48:34 +10003860 /* Save guest CTRL register, set runlatch to 1 */
Paul Mackerras95a64322018-10-08 16:30:55 +11003861 vcpu->arch.ctrl = mfspr(SPRN_CTRLF);
Nicholas Piggin5088eb42021-04-12 11:48:34 +10003862 if (!(vcpu->arch.ctrl & 1))
3863 mtspr(SPRN_CTRLT, vcpu->arch.ctrl | 1);
Paul Mackerras95a64322018-10-08 16:30:55 +11003864
3865 vcpu->arch.iamr = mfspr(SPRN_IAMR);
3866 vcpu->arch.pspb = mfspr(SPRN_PSPB);
3867 vcpu->arch.fscr = mfspr(SPRN_FSCR);
3868 vcpu->arch.tar = mfspr(SPRN_TAR);
3869 vcpu->arch.ebbhr = mfspr(SPRN_EBBHR);
3870 vcpu->arch.ebbrr = mfspr(SPRN_EBBRR);
3871 vcpu->arch.bescr = mfspr(SPRN_BESCR);
3872 vcpu->arch.wort = mfspr(SPRN_WORT);
3873 vcpu->arch.tid = mfspr(SPRN_TIDR);
3874 vcpu->arch.amr = mfspr(SPRN_AMR);
3875 vcpu->arch.uamor = mfspr(SPRN_UAMOR);
3876 vcpu->arch.dscr = mfspr(SPRN_DSCR);
3877
3878 mtspr(SPRN_PSPB, 0);
3879 mtspr(SPRN_WORT, 0);
Paul Mackerras95a64322018-10-08 16:30:55 +11003880 mtspr(SPRN_UAMOR, 0);
3881 mtspr(SPRN_DSCR, host_dscr);
3882 mtspr(SPRN_TIDR, host_tidr);
3883 mtspr(SPRN_IAMR, host_iamr);
Paul Mackerras95a64322018-10-08 16:30:55 +11003884
Michael Ellermand976f682019-02-20 19:55:00 +11003885 if (host_amr != vcpu->arch.amr)
3886 mtspr(SPRN_AMR, host_amr);
3887
Fabiano Rosas25edcc52021-02-04 17:05:17 -03003888 if (host_fscr != vcpu->arch.fscr)
3889 mtspr(SPRN_FSCR, host_fscr);
3890
Paul Mackerras95a64322018-10-08 16:30:55 +11003891 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3892 store_fp_state(&vcpu->arch.fp);
3893#ifdef CONFIG_ALTIVEC
3894 store_vr_state(&vcpu->arch.vr);
3895#endif
Suraj Jitindar Singh44b198a2019-04-30 10:41:23 +10003896 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerras95a64322018-10-08 16:30:55 +11003897
3898 if (cpu_has_feature(CPU_FTR_TM) ||
3899 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3900 kvmppc_save_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3901
3902 save_pmu = 1;
3903 if (vcpu->arch.vpa.pinned_addr) {
3904 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3905 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3906 lp->yield_count = cpu_to_be32(yield_count);
3907 vcpu->arch.vpa.dirty = 1;
3908 save_pmu = lp->pmcregs_in_use;
3909 }
Suraj Jitindar Singh63279ee2019-07-03 11:20:20 +10003910 /* Must save pmu if this guest is capable of running nested guests */
3911 save_pmu |= nesting_enabled(vcpu->kvm);
Paul Mackerras95a64322018-10-08 16:30:55 +11003912
3913 kvmhv_save_guest_pmu(vcpu, save_pmu);
3914
3915 vc->entry_exit_map = 0x101;
3916 vc->in_guest = 0;
3917
3918 mtspr(SPRN_DEC, local_paca->kvm_hstate.dec_expires - mftb());
Nicholas Piggin6ffe2c62021-05-28 19:07:30 +10003919 /* We may have raced with new irq work */
3920 if (test_irq_work_pending())
3921 set_dec(1);
Suraj Jitindar Singhd724c9e2019-05-30 12:17:18 +10003922 mtspr(SPRN_SPRG_VDSO_WRITE, local_paca->sprg_vdso);
Paul Mackerras95a64322018-10-08 16:30:55 +11003923
3924 kvmhv_load_host_pmu();
3925
3926 kvmppc_subcore_exit_guest();
3927
3928 return trap;
3929}
3930
3931/*
Paul Mackerras19ccb762011-07-23 17:42:46 +10003932 * Wait for some other vcpu thread to execute us, and
3933 * wake us up when we need to handle something in the host.
3934 */
Paul Mackerrasec257162015-06-24 21:18:03 +10003935static void kvmppc_wait_for_exec(struct kvmppc_vcore *vc,
3936 struct kvm_vcpu *vcpu, int wait_state)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003937{
Paul Mackerras371fefd2011-06-29 00:23:08 +00003938 DEFINE_WAIT(wait);
3939
Paul Mackerras19ccb762011-07-23 17:42:46 +10003940 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
Paul Mackerrasec257162015-06-24 21:18:03 +10003941 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
3942 spin_unlock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003943 schedule();
Paul Mackerrasec257162015-06-24 21:18:03 +10003944 spin_lock(&vc->lock);
3945 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003946 finish_wait(&vcpu->arch.cpu_run, &wait);
3947}
Paul Mackerras371fefd2011-06-29 00:23:08 +00003948
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003949static void grow_halt_poll_ns(struct kvmppc_vcore *vc)
3950{
Nir Weiner7fa08e72019-01-27 12:17:14 +02003951 if (!halt_poll_ns_grow)
3952 return;
3953
Nir Weinerdee339b2019-01-27 12:17:16 +02003954 vc->halt_poll_ns *= halt_poll_ns_grow;
3955 if (vc->halt_poll_ns < halt_poll_ns_grow_start)
Nir Weiner49113d32019-01-27 12:17:15 +02003956 vc->halt_poll_ns = halt_poll_ns_grow_start;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003957}
3958
3959static void shrink_halt_poll_ns(struct kvmppc_vcore *vc)
3960{
3961 if (halt_poll_ns_shrink == 0)
3962 vc->halt_poll_ns = 0;
3963 else
3964 vc->halt_poll_ns /= halt_poll_ns_shrink;
3965}
3966
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003967#ifdef CONFIG_KVM_XICS
3968static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3969{
Paul Mackerras03f95332019-02-04 22:07:20 +11003970 if (!xics_on_xive())
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003971 return false;
Benjamin Herrenschmidt2267ea72018-01-12 13:37:13 +11003972 return vcpu->arch.irq_pending || vcpu->arch.xive_saved_state.pipr <
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003973 vcpu->arch.xive_saved_state.cppr;
3974}
3975#else
3976static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3977{
3978 return false;
3979}
3980#endif /* CONFIG_KVM_XICS */
3981
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003982static bool kvmppc_vcpu_woken(struct kvm_vcpu *vcpu)
3983{
3984 if (vcpu->arch.pending_exceptions || vcpu->arch.prodded ||
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003985 kvmppc_doorbell_pending(vcpu) || xive_interrupt_pending(vcpu))
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003986 return true;
3987
3988 return false;
3989}
3990
Suraj Jitindar Singh908a0932016-10-14 11:53:23 +11003991/*
3992 * Check to see if any of the runnable vcpus on the vcore have pending
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003993 * exceptions or are no longer ceded
3994 */
3995static int kvmppc_vcore_check_block(struct kvmppc_vcore *vc)
3996{
3997 struct kvm_vcpu *vcpu;
3998 int i;
3999
4000 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10004001 if (!vcpu->arch.ceded || kvmppc_vcpu_woken(vcpu))
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004002 return 1;
4003 }
4004
4005 return 0;
4006}
4007
Paul Mackerras19ccb762011-07-23 17:42:46 +10004008/*
4009 * All the vcpus in this vcore are idle, so wait for a decrementer
4010 * or external interrupt to one of the vcpus. vc->lock is held.
4011 */
4012static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
4013{
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004014 ktime_t cur, start_poll, start_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004015 int do_sleep = 1;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004016 u64 block_ns;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11004017
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004018 /* Poll for pending exceptions and ceded state */
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004019 cur = start_poll = ktime_get();
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004020 if (vc->halt_poll_ns) {
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004021 ktime_t stop = ktime_add_ns(start_poll, vc->halt_poll_ns);
4022 ++vc->runner->stat.halt_attempted_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004023
4024 vc->vcore_state = VCORE_POLLING;
4025 spin_unlock(&vc->lock);
4026
4027 do {
4028 if (kvmppc_vcore_check_block(vc)) {
4029 do_sleep = 0;
4030 break;
4031 }
4032 cur = ktime_get();
4033 } while (single_task_running() && ktime_before(cur, stop));
4034
4035 spin_lock(&vc->lock);
4036 vc->vcore_state = VCORE_INACTIVE;
4037
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004038 if (!do_sleep) {
4039 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004040 goto out;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004041 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004042 }
4043
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004044 prepare_to_rcuwait(&vc->wait);
4045 set_current_state(TASK_INTERRUPTIBLE);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004046 if (kvmppc_vcore_check_block(vc)) {
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004047 finish_rcuwait(&vc->wait);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004048 do_sleep = 0;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004049 /* If we polled, count this as a successful poll */
4050 if (vc->halt_poll_ns)
4051 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004052 goto out;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11004053 }
4054
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004055 start_wait = ktime_get();
4056
Paul Mackerras19ccb762011-07-23 17:42:46 +10004057 vc->vcore_state = VCORE_SLEEPING;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004058 trace_kvmppc_vcore_blocked(vc, 0);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004059 spin_unlock(&vc->lock);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004060 schedule();
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004061 finish_rcuwait(&vc->wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004062 spin_lock(&vc->lock);
4063 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004064 trace_kvmppc_vcore_blocked(vc, 1);
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004065 ++vc->runner->stat.halt_successful_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004066
4067 cur = ktime_get();
4068
4069out:
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10004070 block_ns = ktime_to_ns(cur) - ktime_to_ns(start_poll);
4071
4072 /* Attribute wait time */
4073 if (do_sleep) {
4074 vc->runner->stat.halt_wait_ns +=
4075 ktime_to_ns(cur) - ktime_to_ns(start_wait);
4076 /* Attribute failed poll time */
4077 if (vc->halt_poll_ns)
4078 vc->runner->stat.halt_poll_fail_ns +=
4079 ktime_to_ns(start_wait) -
4080 ktime_to_ns(start_poll);
4081 } else {
4082 /* Attribute successful poll time */
4083 if (vc->halt_poll_ns)
4084 vc->runner->stat.halt_poll_success_ns +=
4085 ktime_to_ns(cur) -
4086 ktime_to_ns(start_poll);
4087 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004088
4089 /* Adjust poll time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11004090 if (halt_poll_ns) {
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004091 if (block_ns <= vc->halt_poll_ns)
4092 ;
4093 /* We slept and blocked for longer than the max halt time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11004094 else if (vc->halt_poll_ns && block_ns > halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004095 shrink_halt_poll_ns(vc);
4096 /* We slept and our poll time is too small */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11004097 else if (vc->halt_poll_ns < halt_poll_ns &&
4098 block_ns < halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004099 grow_halt_poll_ns(vc);
Suraj Jitindar Singhe03f3922016-10-14 11:53:21 +11004100 if (vc->halt_poll_ns > halt_poll_ns)
4101 vc->halt_poll_ns = halt_poll_ns;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10004102 } else
4103 vc->halt_poll_ns = 0;
4104
4105 trace_kvmppc_vcore_wakeup(do_sleep, block_ns);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004106}
4107
Paul Mackerras360cae32018-10-08 16:31:04 +11004108/*
4109 * This never fails for a radix guest, as none of the operations it does
4110 * for a radix guest can fail or have a way to report failure.
4111 * kvmhv_run_single_vcpu() relies on this fact.
4112 */
Paul Mackerras432953b2017-11-09 15:37:10 +11004113static int kvmhv_setup_mmu(struct kvm_vcpu *vcpu)
4114{
4115 int r = 0;
4116 struct kvm *kvm = vcpu->kvm;
4117
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004118 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11004119 if (!kvm->arch.mmu_ready) {
4120 if (!kvm_is_radix(kvm))
4121 r = kvmppc_hv_setup_htab_rma(vcpu);
4122 if (!r) {
4123 if (cpu_has_feature(CPU_FTR_ARCH_300))
4124 kvmppc_setup_partition_table(kvm);
4125 kvm->arch.mmu_ready = 1;
4126 }
4127 }
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004128 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11004129 return r;
4130}
4131
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004132static int kvmppc_run_vcpu(struct kvm_vcpu *vcpu)
Paul Mackerras19ccb762011-07-23 17:42:46 +10004133{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004134 struct kvm_run *run = vcpu->run;
Paul Mackerras38c53af2017-11-08 14:44:04 +11004135 int n_ceded, i, r;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004136 struct kvmppc_vcore *vc;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004137 struct kvm_vcpu *v;
Paul Mackerras9e368f22011-06-29 00:40:08 +00004138
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004139 trace_kvmppc_run_vcpu_enter(vcpu);
4140
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004141 run->exit_reason = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004142 vcpu->arch.ret = RESUME_GUEST;
4143 vcpu->arch.trap = 0;
Paul Mackerras2f12f032012-10-15 01:17:17 +00004144 kvmppc_update_vpas(vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004145
Paul Mackerras371fefd2011-06-29 00:23:08 +00004146 /*
4147 * Synchronize with other threads in this virtual core
4148 */
4149 vc = vcpu->arch.vcore;
4150 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004151 vcpu->arch.ceded = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004152 vcpu->arch.run_task = current;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004153 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
Paul Mackerras19ccb762011-07-23 17:42:46 +10004154 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004155 vcpu->arch.busy_preempt = TB_NIL;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004156 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004157 ++vc->n_runnable;
4158
Paul Mackerras19ccb762011-07-23 17:42:46 +10004159 /*
4160 * This happens the first time this is called for a vcpu.
4161 * If the vcore is already running, we may be able to start
4162 * this thread straight away and have it join in.
4163 */
Paul Mackerras8455d792012-10-15 01:17:42 +00004164 if (!signal_pending(current)) {
Paul Mackerrasc0093f12017-11-20 16:12:25 +11004165 if ((vc->vcore_state == VCORE_PIGGYBACK ||
4166 vc->vcore_state == VCORE_RUNNING) &&
Paul Mackerrasec257162015-06-24 21:18:03 +10004167 !VCORE_IS_EXITING(vc)) {
Paul Mackerras2f12f032012-10-15 01:17:17 +00004168 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10004169 kvmppc_start_thread(vcpu, vc);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004170 trace_kvm_guest_enter(vcpu);
Paul Mackerras8455d792012-10-15 01:17:42 +00004171 } else if (vc->vcore_state == VCORE_SLEEPING) {
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004172 rcuwait_wake_up(&vc->wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004173 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00004174
Paul Mackerras8455d792012-10-15 01:17:42 +00004175 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10004176
4177 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
4178 !signal_pending(current)) {
Paul Mackerras072df812017-11-09 14:30:24 +11004179 /* See if the MMU is ready to go */
4180 if (!vcpu->kvm->arch.mmu_ready) {
Paul Mackerras38c53af2017-11-08 14:44:04 +11004181 spin_unlock(&vc->lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11004182 r = kvmhv_setup_mmu(vcpu);
Paul Mackerras38c53af2017-11-08 14:44:04 +11004183 spin_lock(&vc->lock);
4184 if (r) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004185 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4186 run->fail_entry.
Paul Mackerras432953b2017-11-09 15:37:10 +11004187 hardware_entry_failure_reason = 0;
Paul Mackerras38c53af2017-11-08 14:44:04 +11004188 vcpu->arch.ret = r;
4189 break;
4190 }
4191 }
4192
Paul Mackerrasec257162015-06-24 21:18:03 +10004193 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
4194 kvmppc_vcore_end_preempt(vc);
4195
Paul Mackerras8455d792012-10-15 01:17:42 +00004196 if (vc->vcore_state != VCORE_INACTIVE) {
Paul Mackerrasec257162015-06-24 21:18:03 +10004197 kvmppc_wait_for_exec(vc, vcpu, TASK_INTERRUPTIBLE);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004198 continue;
4199 }
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004200 for_each_runnable_thread(i, v, vc) {
Scott Wood7e28e60e2011-11-08 18:23:20 -06004201 kvmppc_core_prepare_to_enter(v);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004202 if (signal_pending(v->arch.run_task)) {
4203 kvmppc_remove_runnable(vc, v);
4204 v->stat.signal_exits++;
Tianjia Zhang2610a572020-04-27 12:35:10 +08004205 v->run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004206 v->arch.ret = -EINTR;
4207 wake_up(&v->arch.cpu_run);
4208 }
4209 }
Paul Mackerras8455d792012-10-15 01:17:42 +00004210 if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
4211 break;
Paul Mackerras8455d792012-10-15 01:17:42 +00004212 n_ceded = 0;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004213 for_each_runnable_thread(i, v, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10004214 if (!kvmppc_vcpu_woken(v))
Paul Mackerras8455d792012-10-15 01:17:42 +00004215 n_ceded += v->arch.ceded;
Paul Mackerras4619ac82013-04-17 20:31:41 +00004216 else
4217 v->arch.ceded = 0;
4218 }
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004219 vc->runner = vcpu;
4220 if (n_ceded == vc->n_runnable) {
Paul Mackerras8455d792012-10-15 01:17:42 +00004221 kvmppc_vcore_blocked(vc);
Konstantin Khlebnikovc56dadf2015-07-15 12:52:03 +03004222 } else if (need_resched()) {
Paul Mackerrasec257162015-06-24 21:18:03 +10004223 kvmppc_vcore_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004224 /* Let something else run */
4225 cond_resched_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10004226 if (vc->vcore_state == VCORE_PREEMPT)
4227 kvmppc_vcore_end_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004228 } else {
Paul Mackerras8455d792012-10-15 01:17:42 +00004229 kvmppc_run_core(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004230 }
Paul Mackerras0456ec42012-02-03 00:56:21 +00004231 vc->runner = NULL;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004232 }
4233
Paul Mackerras8455d792012-10-15 01:17:42 +00004234 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
4235 (vc->vcore_state == VCORE_RUNNING ||
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004236 vc->vcore_state == VCORE_EXITING ||
4237 vc->vcore_state == VCORE_PIGGYBACK))
Paul Mackerrasec257162015-06-24 21:18:03 +10004238 kvmppc_wait_for_exec(vc, vcpu, TASK_UNINTERRUPTIBLE);
Paul Mackerras8455d792012-10-15 01:17:42 +00004239
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004240 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
4241 kvmppc_vcore_end_preempt(vc);
4242
Paul Mackerras8455d792012-10-15 01:17:42 +00004243 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
4244 kvmppc_remove_runnable(vc, vcpu);
4245 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004246 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras8455d792012-10-15 01:17:42 +00004247 vcpu->arch.ret = -EINTR;
4248 }
4249
4250 if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) {
4251 /* Wake up some vcpu to run the core */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004252 i = -1;
4253 v = next_runnable_thread(vc, &i);
Paul Mackerras8455d792012-10-15 01:17:42 +00004254 wake_up(&v->arch.cpu_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004255 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00004256
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004257 trace_kvmppc_run_vcpu_exit(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004258 spin_unlock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004259 return vcpu->arch.ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004260}
4261
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004262int kvmhv_run_single_vcpu(struct kvm_vcpu *vcpu, u64 time_limit,
Paul Mackerras360cae32018-10-08 16:31:04 +11004263 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11004264{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004265 struct kvm_run *run = vcpu->run;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11004266 int trap, r, pcpu;
Nicholas Piggin48013cb2021-05-28 19:07:32 +10004267 int srcu_idx;
Paul Mackerras95a64322018-10-08 16:30:55 +11004268 struct kvmppc_vcore *vc;
4269 struct kvm *kvm = vcpu->kvm;
Paul Mackerras360cae32018-10-08 16:31:04 +11004270 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras95a64322018-10-08 16:30:55 +11004271
4272 trace_kvmppc_run_vcpu_enter(vcpu);
4273
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004274 run->exit_reason = 0;
Paul Mackerras95a64322018-10-08 16:30:55 +11004275 vcpu->arch.ret = RESUME_GUEST;
4276 vcpu->arch.trap = 0;
4277
4278 vc = vcpu->arch.vcore;
4279 vcpu->arch.ceded = 0;
4280 vcpu->arch.run_task = current;
Paul Mackerras95a64322018-10-08 16:30:55 +11004281 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
4282 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
4283 vcpu->arch.busy_preempt = TB_NIL;
4284 vcpu->arch.last_inst = KVM_INST_FETCH_FAILED;
4285 vc->runnable_threads[0] = vcpu;
4286 vc->n_runnable = 1;
4287 vc->runner = vcpu;
4288
4289 /* See if the MMU is ready to go */
Paul Mackerras360cae32018-10-08 16:31:04 +11004290 if (!kvm->arch.mmu_ready)
4291 kvmhv_setup_mmu(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004292
4293 if (need_resched())
4294 cond_resched();
4295
4296 kvmppc_update_vpas(vcpu);
4297
4298 init_vcore_to_run(vc);
4299 vc->preempt_tb = TB_NIL;
4300
4301 preempt_disable();
4302 pcpu = smp_processor_id();
4303 vc->pcpu = pcpu;
4304 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
4305
4306 local_irq_disable();
4307 hard_irq_disable();
4308 if (signal_pending(current))
4309 goto sigpend;
4310 if (lazy_irq_pending() || need_resched() || !kvm->arch.mmu_ready)
4311 goto out;
4312
Paul Mackerras360cae32018-10-08 16:31:04 +11004313 if (!nested) {
4314 kvmppc_core_prepare_to_enter(vcpu);
4315 if (vcpu->arch.doorbell_request) {
4316 vc->dpdes = 1;
4317 smp_wmb();
4318 vcpu->arch.doorbell_request = 0;
4319 }
4320 if (test_bit(BOOK3S_IRQPRIO_EXTERNAL,
4321 &vcpu->arch.pending_exceptions))
4322 lpcr |= LPCR_MER;
4323 } else if (vcpu->arch.pending_exceptions ||
4324 vcpu->arch.doorbell_request ||
4325 xive_interrupt_pending(vcpu)) {
4326 vcpu->arch.ret = RESUME_HOST;
4327 goto out;
4328 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004329
4330 kvmppc_clear_host_core(pcpu);
4331
Paul Mackerras95a64322018-10-08 16:30:55 +11004332 local_paca->kvm_hstate.napping = 0;
4333 local_paca->kvm_hstate.kvm_split_mode = NULL;
4334 kvmppc_start_thread(vcpu, vc);
4335 kvmppc_create_dtl_entry(vcpu, vc);
4336 trace_kvm_guest_enter(vcpu);
4337
4338 vc->vcore_state = VCORE_RUNNING;
4339 trace_kvmppc_run_core(vc, 0);
4340
Paul Mackerras95a64322018-10-08 16:30:55 +11004341 guest_enter_irqoff();
4342
4343 srcu_idx = srcu_read_lock(&kvm->srcu);
4344
4345 this_cpu_disable_ftrace();
4346
Paul Mackerras1b28d552019-05-28 15:01:59 +10004347 /* Tell lockdep that we're about to enable interrupts */
4348 trace_hardirqs_on();
4349
Paul Mackerras360cae32018-10-08 16:31:04 +11004350 trap = kvmhv_p9_guest_entry(vcpu, time_limit, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004351 vcpu->arch.trap = trap;
4352
Paul Mackerras1b28d552019-05-28 15:01:59 +10004353 trace_hardirqs_off();
4354
Paul Mackerras95a64322018-10-08 16:30:55 +11004355 this_cpu_enable_ftrace();
4356
4357 srcu_read_unlock(&kvm->srcu, srcu_idx);
4358
Paul Mackerras95a64322018-10-08 16:30:55 +11004359 set_irq_happened(trap);
4360
4361 kvmppc_set_host_core(pcpu);
4362
Nicholas Piggin11266522021-01-30 23:08:12 +10004363 guest_exit_irqoff();
4364
Paul Mackerras95a64322018-10-08 16:30:55 +11004365 local_irq_enable();
Paul Mackerras95a64322018-10-08 16:30:55 +11004366
4367 cpumask_clear_cpu(pcpu, &kvm->arch.cpu_in_guest);
4368
4369 preempt_enable();
4370
Suraj Jitindar Singh3c25ab32019-06-20 11:46:51 +10004371 /*
4372 * cancel pending decrementer exception if DEC is now positive, or if
4373 * entering a nested guest in which case the decrementer is now owned
4374 * by L2 and the L1 decrementer is provided in hdec_expires
4375 */
4376 if (kvmppc_core_pending_dec(vcpu) &&
4377 ((get_tb() < vcpu->arch.dec_expires) ||
4378 (trap == BOOK3S_INTERRUPT_SYSCALL &&
4379 kvmppc_get_gpr(vcpu, 3) == H_ENTER_NESTED)))
Paul Mackerras95a64322018-10-08 16:30:55 +11004380 kvmppc_core_dequeue_dec(vcpu);
4381
4382 trace_kvm_guest_exit(vcpu);
4383 r = RESUME_GUEST;
Paul Mackerras360cae32018-10-08 16:31:04 +11004384 if (trap) {
4385 if (!nested)
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004386 r = kvmppc_handle_exit_hv(vcpu, current);
Paul Mackerras360cae32018-10-08 16:31:04 +11004387 else
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004388 r = kvmppc_handle_nested_exit(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11004389 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004390 vcpu->arch.ret = r;
4391
4392 if (is_kvmppc_resume_guest(r) && vcpu->arch.ceded &&
4393 !kvmppc_vcpu_woken(vcpu)) {
4394 kvmppc_set_timer(vcpu);
4395 while (vcpu->arch.ceded && !kvmppc_vcpu_woken(vcpu)) {
4396 if (signal_pending(current)) {
4397 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004398 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras95a64322018-10-08 16:30:55 +11004399 vcpu->arch.ret = -EINTR;
4400 break;
4401 }
4402 spin_lock(&vc->lock);
4403 kvmppc_vcore_blocked(vc);
4404 spin_unlock(&vc->lock);
4405 }
4406 }
4407 vcpu->arch.ceded = 0;
4408
4409 vc->vcore_state = VCORE_INACTIVE;
4410 trace_kvmppc_run_core(vc, 1);
4411
4412 done:
4413 kvmppc_remove_runnable(vc, vcpu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004414 trace_kvmppc_run_vcpu_exit(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004415
4416 return vcpu->arch.ret;
4417
4418 sigpend:
4419 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004420 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras95a64322018-10-08 16:30:55 +11004421 vcpu->arch.ret = -EINTR;
4422 out:
4423 local_irq_enable();
4424 preempt_enable();
4425 goto done;
4426}
4427
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004428static int kvmppc_vcpu_run_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004429{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004430 struct kvm_run *run = vcpu->run;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004431 int r;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004432 int srcu_idx;
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004433 unsigned long ebb_regs[3] = {}; /* shut up GCC */
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004434 unsigned long user_tar = 0;
4435 unsigned int user_vrsave;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004436 struct kvm *kvm;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004437
Alexander Grafaf8f38b2011-08-10 13:57:08 +02004438 if (!vcpu->arch.sane) {
4439 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4440 return -EINVAL;
4441 }
4442
Paul Mackerras46a704f2017-06-15 16:10:27 +10004443 /*
4444 * Don't allow entry with a suspended transaction, because
4445 * the guest entry/exit code will lose it.
4446 * If the guest has TM enabled, save away their TM-related SPRs
4447 * (they will get restored by the TM unavailable interrupt).
4448 */
4449#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
4450 if (cpu_has_feature(CPU_FTR_TM) && current->thread.regs &&
4451 (current->thread.regs->msr & MSR_TM)) {
4452 if (MSR_TM_ACTIVE(current->thread.regs->msr)) {
4453 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4454 run->fail_entry.hardware_entry_failure_reason = 0;
4455 return -EINVAL;
4456 }
Paul Mackerrase4705712017-07-21 13:57:14 +10004457 /* Enable TM so we can read the TM SPRs */
4458 mtmsr(mfmsr() | MSR_TM);
Paul Mackerras46a704f2017-06-15 16:10:27 +10004459 current->thread.tm_tfhar = mfspr(SPRN_TFHAR);
4460 current->thread.tm_tfiar = mfspr(SPRN_TFIAR);
4461 current->thread.tm_texasr = mfspr(SPRN_TEXASR);
4462 current->thread.regs->msr &= ~MSR_TM;
4463 }
4464#endif
4465
Paul Mackerras7aa15842018-04-20 19:53:22 +10004466 /*
4467 * Force online to 1 for the sake of old userspace which doesn't
4468 * set it.
4469 */
4470 if (!vcpu->arch.online) {
4471 atomic_inc(&vcpu->arch.vcore->online_count);
4472 vcpu->arch.online = 1;
4473 }
4474
Scott Wood25051b5a2011-11-08 18:23:23 -06004475 kvmppc_core_prepare_to_enter(vcpu);
4476
Paul Mackerras19ccb762011-07-23 17:42:46 +10004477 /* No need to go into the guest when all we'll do is come back out */
4478 if (signal_pending(current)) {
4479 run->exit_reason = KVM_EXIT_INTR;
4480 return -EINTR;
4481 }
4482
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004483 kvm = vcpu->kvm;
4484 atomic_inc(&kvm->arch.vcpus_running);
4485 /* Order vcpus_running vs. mmu_ready, see kvmppc_alloc_reset_hpt */
Paul Mackerras32fad282012-05-04 02:32:53 +00004486 smp_mb();
4487
Anton Blanchard579e6332015-10-29 11:44:09 +11004488 flush_all_to_thread(current);
4489
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004490 /* Save userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004491 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4492 ebb_regs[0] = mfspr(SPRN_EBBHR);
4493 ebb_regs[1] = mfspr(SPRN_EBBRR);
4494 ebb_regs[2] = mfspr(SPRN_BESCR);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004495 user_tar = mfspr(SPRN_TAR);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004496 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004497 user_vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004498
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004499 vcpu->arch.waitp = &vcpu->arch.vcore->wait;
Leonardo Bras8a9c8922019-11-26 19:36:30 -03004500 vcpu->arch.pgdir = kvm->mm->pgd;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004501 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004502
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004503 do {
Paul Mackerras8d9fcac2018-10-19 20:44:04 +11004504 /*
Nicholas Pigginb1b16972021-01-18 16:28:06 +10004505 * The TLB prefetch bug fixup is only in the kvmppc_run_vcpu
4506 * path, which also handles hash and dependent threads mode.
Paul Mackerras8d9fcac2018-10-19 20:44:04 +11004507 */
4508 if (kvm->arch.threads_indep && kvm_is_radix(kvm) &&
Nicholas Pigginb1b16972021-01-18 16:28:06 +10004509 !cpu_has_feature(CPU_FTR_P9_RADIX_PREFETCH_BUG))
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004510 r = kvmhv_run_single_vcpu(vcpu, ~(u64)0,
Paul Mackerras360cae32018-10-08 16:31:04 +11004511 vcpu->arch.vcore->lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004512 else
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004513 r = kvmppc_run_vcpu(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004514
Nicholas Piggin9dc2bab2021-05-28 19:07:33 +10004515 if (run->exit_reason == KVM_EXIT_PAPR_HCALL) {
4516 if (WARN_ON_ONCE(vcpu->arch.shregs.msr & MSR_PR)) {
4517 /*
4518 * These should have been caught reflected
4519 * into the guest by now. Final sanity check:
4520 * don't allow userspace to execute hcalls in
4521 * the hypervisor.
4522 */
4523 r = RESUME_GUEST;
4524 continue;
4525 }
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004526 trace_kvm_hcall_enter(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004527 r = kvmppc_pseries_do_hcall(vcpu);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004528 trace_kvm_hcall_exit(vcpu, r);
Scott Wood7e28e60e2011-11-08 18:23:20 -06004529 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004530 } else if (r == RESUME_PAGE_FAULT) {
Paul Mackerras432953b2017-11-09 15:37:10 +11004531 srcu_idx = srcu_read_lock(&kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004532 r = kvmppc_book3s_hv_page_fault(vcpu,
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004533 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
Paul Mackerras432953b2017-11-09 15:37:10 +11004534 srcu_read_unlock(&kvm->srcu, srcu_idx);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004535 } else if (r == RESUME_PASSTHROUGH) {
Paul Mackerras03f95332019-02-04 22:07:20 +11004536 if (WARN_ON(xics_on_xive()))
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004537 r = H_SUCCESS;
4538 else
4539 r = kvmppc_xics_rm_complete(vcpu, 0);
4540 }
Greg Kurze59d24e2014-02-06 17:36:56 +01004541 } while (is_kvmppc_resume_guest(r));
Paul Mackerras32fad282012-05-04 02:32:53 +00004542
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004543 /* Restore userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004544 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4545 mtspr(SPRN_EBBHR, ebb_regs[0]);
4546 mtspr(SPRN_EBBRR, ebb_regs[1]);
4547 mtspr(SPRN_BESCR, ebb_regs[2]);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004548 mtspr(SPRN_TAR, user_tar);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004549 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004550 mtspr(SPRN_VRSAVE, user_vrsave);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004551
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004552 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras432953b2017-11-09 15:37:10 +11004553 atomic_dec(&kvm->arch.vcpus_running);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004554 return r;
4555}
4556
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004557static void kvmppc_add_seg_page_size(struct kvm_ppc_one_seg_page_size **sps,
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004558 int shift, int sllp)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004559{
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004560 (*sps)->page_shift = shift;
4561 (*sps)->slb_enc = sllp;
4562 (*sps)->enc[0].page_shift = shift;
4563 (*sps)->enc[0].pte_enc = kvmppc_pgsize_lp_encoding(shift, shift);
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304564 /*
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004565 * Add 16MB MPSS support (may get filtered out by userspace)
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304566 */
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004567 if (shift != 24) {
4568 int penc = kvmppc_pgsize_lp_encoding(shift, 24);
4569 if (penc != -1) {
4570 (*sps)->enc[1].page_shift = 24;
4571 (*sps)->enc[1].pte_enc = penc;
4572 }
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304573 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004574 (*sps)++;
4575}
4576
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304577static int kvm_vm_ioctl_get_smmu_info_hv(struct kvm *kvm,
4578 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004579{
4580 struct kvm_ppc_one_seg_page_size *sps;
4581
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004582 /*
Paul Mackerrase3bfed12017-08-25 19:53:39 +10004583 * POWER7, POWER8 and POWER9 all support 32 storage keys for data.
4584 * POWER7 doesn't support keys for instruction accesses,
4585 * POWER8 and POWER9 do.
4586 */
4587 info->data_keys = 32;
4588 info->instr_keys = cpu_has_feature(CPU_FTR_ARCH_207S) ? 32 : 0;
4589
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004590 /* POWER7, 8 and 9 all have 1T segments and 32-entry SLB */
4591 info->flags = KVM_PPC_PAGE_SIZES_REAL | KVM_PPC_1T_SEGMENTS;
4592 info->slb_size = 32;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004593
4594 /* We only support these sizes for now, and no muti-size segments */
4595 sps = &info->sps[0];
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004596 kvmppc_add_seg_page_size(&sps, 12, 0);
4597 kvmppc_add_seg_page_size(&sps, 16, SLB_VSID_L | SLB_VSID_LP_01);
4598 kvmppc_add_seg_page_size(&sps, 24, SLB_VSID_L);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004599
Paul Mackerras901f8c32018-10-08 14:24:30 +11004600 /* If running as a nested hypervisor, we don't support HPT guests */
4601 if (kvmhv_on_pseries())
4602 info->flags |= KVM_PPC_NO_HASH;
4603
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004604 return 0;
4605}
4606
Paul Mackerras82ed3612011-12-15 02:03:22 +00004607/*
4608 * Get (and clear) the dirty memory log for a memory slot.
4609 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304610static int kvm_vm_ioctl_get_dirty_log_hv(struct kvm *kvm,
4611 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004612{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004613 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004614 struct kvm_memory_slot *memslot;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004615 int i, r;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004616 unsigned long n;
Paul Mackerrase641a312017-10-26 16:39:19 +11004617 unsigned long *buf, *p;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004618 struct kvm_vcpu *vcpu;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004619
4620 mutex_lock(&kvm->slots_lock);
4621
4622 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07004623 if (log->slot >= KVM_USER_MEM_SLOTS)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004624 goto out;
4625
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004626 slots = kvm_memslots(kvm);
4627 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004628 r = -ENOENT;
Sean Christopherson0577d1a2020-02-18 13:07:31 -08004629 if (!memslot || !memslot->dirty_bitmap)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004630 goto out;
4631
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004632 /*
Paul Mackerrase641a312017-10-26 16:39:19 +11004633 * Use second half of bitmap area because both HPT and radix
4634 * accumulate bits in the first half.
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004635 */
Paul Mackerras82ed3612011-12-15 02:03:22 +00004636 n = kvm_dirty_bitmap_bytes(memslot);
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004637 buf = memslot->dirty_bitmap + n / sizeof(long);
4638 memset(buf, 0, n);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004639
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004640 if (kvm_is_radix(kvm))
4641 r = kvmppc_hv_get_dirty_log_radix(kvm, memslot, buf);
4642 else
4643 r = kvmppc_hv_get_dirty_log_hpt(kvm, memslot, buf);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004644 if (r)
4645 goto out;
4646
Paul Mackerrase641a312017-10-26 16:39:19 +11004647 /*
4648 * We accumulate dirty bits in the first half of the
4649 * memslot's dirty_bitmap area, for when pages are paged
4650 * out or modified by the host directly. Pick up these
4651 * bits and add them to the map.
4652 */
4653 p = memslot->dirty_bitmap;
4654 for (i = 0; i < n / sizeof(long); ++i)
4655 buf[i] |= xchg(&p[i], 0);
4656
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004657 /* Harvest dirty bits from VPA and DTL updates */
4658 /* Note: we never modify the SLB shadow buffer areas */
4659 kvm_for_each_vcpu(i, vcpu, kvm) {
4660 spin_lock(&vcpu->arch.vpa_update_lock);
4661 kvmppc_harvest_vpa_dirty(&vcpu->arch.vpa, memslot, buf);
4662 kvmppc_harvest_vpa_dirty(&vcpu->arch.dtl, memslot, buf);
4663 spin_unlock(&vcpu->arch.vpa_update_lock);
4664 }
4665
Paul Mackerras82ed3612011-12-15 02:03:22 +00004666 r = -EFAULT;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004667 if (copy_to_user(log->dirty_bitmap, buf, n))
Paul Mackerras82ed3612011-12-15 02:03:22 +00004668 goto out;
4669
4670 r = 0;
4671out:
4672 mutex_unlock(&kvm->slots_lock);
4673 return r;
4674}
4675
Sean Christophersone96c81e2020-02-18 13:07:27 -08004676static void kvmppc_core_free_memslot_hv(struct kvm_memory_slot *slot)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004677{
Sean Christophersone96c81e2020-02-18 13:07:27 -08004678 vfree(slot->arch.rmap);
4679 slot->arch.rmap = NULL;
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004680}
4681
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304682static int kvmppc_core_prepare_memory_region_hv(struct kvm *kvm,
Sean Christopherson82307e62020-02-18 13:07:18 -08004683 struct kvm_memory_slot *slot,
4684 const struct kvm_userspace_memory_region *mem,
4685 enum kvm_mr_change change)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004686{
Sean Christopherson82307e62020-02-18 13:07:18 -08004687 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
4688
4689 if (change == KVM_MR_CREATE) {
4690 slot->arch.rmap = vzalloc(array_size(npages,
4691 sizeof(*slot->arch.rmap)));
4692 if (!slot->arch.rmap)
4693 return -ENOMEM;
4694 }
4695
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004696 return 0;
4697}
4698
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304699static void kvmppc_core_commit_memory_region_hv(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02004700 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004701 const struct kvm_memory_slot *old,
Bharata B Raof032b732018-12-12 15:15:30 +11004702 const struct kvm_memory_slot *new,
4703 enum kvm_mr_change change)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004704{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004705 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004706
Yongji Xiea56ee9f2016-11-04 13:55:12 +08004707 /*
4708 * If we are making a new memslot, it might make
4709 * some address that was previously cached as emulated
4710 * MMIO be no longer emulated MMIO, so invalidate
4711 * all the caches of emulated MMIO translations.
4712 */
4713 if (npages)
4714 atomic64_inc(&kvm->arch.mmio_update);
Paul Mackerras5af3e9d2018-12-12 15:17:17 +11004715
4716 /*
4717 * For change == KVM_MR_MOVE or KVM_MR_DELETE, higher levels
4718 * have already called kvm_arch_flush_shadow_memslot() to
4719 * flush shadow mappings. For KVM_MR_CREATE we have no
4720 * previous mappings. So the only case to handle is
4721 * KVM_MR_FLAGS_ONLY when the KVM_MEM_LOG_DIRTY_PAGES bit
4722 * has been changed.
4723 * For radix guests, we flush on setting KVM_MEM_LOG_DIRTY_PAGES
4724 * to get rid of any THP PTEs in the partition-scoped page tables
4725 * so we can track dirtiness at the page level; we flush when
4726 * clearing KVM_MEM_LOG_DIRTY_PAGES so that we can go back to
4727 * using THP PTEs.
4728 */
4729 if (change == KVM_MR_FLAGS_ONLY && kvm_is_radix(kvm) &&
4730 ((new->flags ^ old->flags) & KVM_MEM_LOG_DIRTY_PAGES))
4731 kvmppc_radix_flush_memslot(kvm, old);
Bharata B Raoc3262252019-11-25 08:36:29 +05304732 /*
4733 * If UV hasn't yet called H_SVM_INIT_START, don't register memslots.
4734 */
4735 if (!kvm->arch.secure_guest)
4736 return;
4737
4738 switch (change) {
4739 case KVM_MR_CREATE:
Laurent Dufoura2ce7202020-07-27 11:07:18 -07004740 /*
4741 * @TODO kvmppc_uvmem_memslot_create() can fail and
4742 * return error. Fix this.
4743 */
4744 kvmppc_uvmem_memslot_create(kvm, new);
Bharata B Raoc3262252019-11-25 08:36:29 +05304745 break;
4746 case KVM_MR_DELETE:
Laurent Dufoura2ce7202020-07-27 11:07:18 -07004747 kvmppc_uvmem_memslot_delete(kvm, old);
Bharata B Raoc3262252019-11-25 08:36:29 +05304748 break;
4749 default:
4750 /* TODO: Handle KVM_MR_MOVE */
4751 break;
4752 }
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004753}
4754
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004755/*
4756 * Update LPCR values in kvm->arch and in vcores.
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004757 * Caller must hold kvm->arch.mmu_setup_lock (for mutual exclusion
4758 * of kvm->arch.lpcr update).
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004759 */
4760void kvmppc_update_lpcr(struct kvm *kvm, unsigned long lpcr, unsigned long mask)
4761{
4762 long int i;
4763 u32 cores_done = 0;
4764
4765 if ((kvm->arch.lpcr & mask) == lpcr)
4766 return;
4767
4768 kvm->arch.lpcr = (kvm->arch.lpcr & ~mask) | lpcr;
4769
4770 for (i = 0; i < KVM_MAX_VCORES; ++i) {
4771 struct kvmppc_vcore *vc = kvm->arch.vcores[i];
4772 if (!vc)
4773 continue;
Nicholas Piggin67145ef2021-04-12 11:48:36 +10004774
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004775 spin_lock(&vc->lock);
4776 vc->lpcr = (vc->lpcr & ~mask) | lpcr;
Nicholas Piggin67145ef2021-04-12 11:48:36 +10004777 verify_lpcr(kvm, vc->lpcr);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004778 spin_unlock(&vc->lock);
4779 if (++cores_done >= kvm->arch.online_vcores)
4780 break;
4781 }
4782}
4783
Paul Mackerrasded13fc2017-11-22 14:38:53 +11004784void kvmppc_setup_partition_table(struct kvm *kvm)
Paul Mackerras7a840842016-11-16 22:25:20 +11004785{
4786 unsigned long dw0, dw1;
4787
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004788 if (!kvm_is_radix(kvm)) {
4789 /* PS field - page size for VRMA */
4790 dw0 = ((kvm->arch.vrma_slb_v & SLB_VSID_L) >> 1) |
4791 ((kvm->arch.vrma_slb_v & SLB_VSID_LP) << 1);
4792 /* HTABSIZE and HTABORG fields */
4793 dw0 |= kvm->arch.sdr1;
Paul Mackerras7a840842016-11-16 22:25:20 +11004794
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004795 /* Second dword as set by userspace */
4796 dw1 = kvm->arch.process_table;
4797 } else {
4798 dw0 = PATB_HR | radix__get_tree_size() |
4799 __pa(kvm->arch.pgtable) | RADIX_PGD_INDEX_SIZE;
4800 dw1 = PATB_GR | kvm->arch.process_table;
4801 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004802 kvmhv_set_ptbl_entry(kvm->arch.lpid, dw0, dw1);
Paul Mackerras7a840842016-11-16 22:25:20 +11004803}
4804
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004805/*
4806 * Set up HPT (hashed page table) and RMA (real-mode area).
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004807 * Must be called with kvm->arch.mmu_setup_lock held.
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004808 */
Paul Mackerras32fad282012-05-04 02:32:53 +00004809static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004810{
4811 int err = 0;
4812 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004813 unsigned long hva;
4814 struct kvm_memory_slot *memslot;
4815 struct vm_area_struct *vma;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004816 unsigned long lpcr = 0, senc;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004817 unsigned long psize, porder;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004818 int srcu_idx;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004819
Paul Mackerras32fad282012-05-04 02:32:53 +00004820 /* Allocate hashed page table (if not done already) and reset it */
David Gibson3f9d4f52016-12-20 16:49:00 +11004821 if (!kvm->arch.hpt.virt) {
David Gibsonaae07772016-12-20 16:49:02 +11004822 int order = KVM_DEFAULT_HPT_ORDER;
4823 struct kvm_hpt_info info;
4824
4825 err = kvmppc_allocate_hpt(&info, order);
4826 /* If we get here, it means userspace didn't specify a
4827 * size explicitly. So, try successively smaller
4828 * sizes if the default failed. */
4829 while ((err == -ENOMEM) && --order >= PPC_MIN_HPT_ORDER)
4830 err = kvmppc_allocate_hpt(&info, order);
4831
4832 if (err < 0) {
Paul Mackerras32fad282012-05-04 02:32:53 +00004833 pr_err("KVM: Couldn't alloc HPT\n");
4834 goto out;
4835 }
David Gibsonaae07772016-12-20 16:49:02 +11004836
4837 kvmppc_set_hpt(kvm, &info);
Paul Mackerras32fad282012-05-04 02:32:53 +00004838 }
4839
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004840 /* Look up the memslot for guest physical address 0 */
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004841 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004842 memslot = gfn_to_memslot(kvm, 0);
4843
4844 /* We must have some memory at 0 by now */
4845 err = -EINVAL;
4846 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004847 goto out_srcu;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004848
4849 /* Look up the VMA for the start of this memory slot */
4850 hva = memslot->userspace_addr;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07004851 mmap_read_lock(kvm->mm);
Leonardo Bras8a9c8922019-11-26 19:36:30 -03004852 vma = find_vma(kvm->mm, hva);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004853 if (!vma || vma->vm_start > hva || (vma->vm_flags & VM_IO))
4854 goto up_out;
4855
4856 psize = vma_kernel_pagesize(vma);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004857
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07004858 mmap_read_unlock(kvm->mm);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004859
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004860 /* We can handle 4k, 64k or 16M pages in the VRMA */
Paul Mackerrasdebd5742018-03-02 15:38:04 +11004861 if (psize >= 0x1000000)
4862 psize = 0x1000000;
4863 else if (psize >= 0x10000)
4864 psize = 0x10000;
4865 else
4866 psize = 0x1000;
4867 porder = __ilog2(psize);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004868
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004869 senc = slb_pgsize_encoding(psize);
4870 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
4871 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004872 /* Create HPTEs in the hash page table for the VRMA */
4873 kvmppc_map_vrma(vcpu, memslot, porder);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004874
Paul Mackerras7a840842016-11-16 22:25:20 +11004875 /* Update VRMASD field in the LPCR */
4876 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
4877 /* the -4 is to account for senc values starting at 0x10 */
4878 lpcr = senc << (LPCR_VRMASD_SH - 4);
4879 kvmppc_update_lpcr(kvm, lpcr, LPCR_VRMASD);
Paul Mackerras7a840842016-11-16 22:25:20 +11004880 }
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004881
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004882 /* Order updates to kvm->arch.lpcr etc. vs. mmu_ready */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004883 smp_wmb();
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004884 err = 0;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004885 out_srcu:
4886 srcu_read_unlock(&kvm->srcu, srcu_idx);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004887 out:
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004888 return err;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004889
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004890 up_out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07004891 mmap_read_unlock(kvm->mm);
Lai Jiangshan505d6422013-03-16 00:50:49 +08004892 goto out_srcu;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004893}
4894
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004895/*
4896 * Must be called with kvm->arch.mmu_setup_lock held and
4897 * mmu_ready = 0 and no vcpus running.
4898 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004899int kvmppc_switch_mmu_to_hpt(struct kvm *kvm)
4900{
Paul Mackerrasaa069a92018-09-21 20:02:01 +10004901 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004902 kvmhv_release_all_nested(kvm);
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004903 kvmppc_rmap_reset(kvm);
4904 kvm->arch.process_table = 0;
Sean Christophersonb1c53562021-04-01 17:56:53 -07004905 /* Mutual exclusion with kvm_unmap_gfn_range etc. */
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004906 spin_lock(&kvm->mmu_lock);
4907 kvm->arch.radix = 0;
4908 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10004909 kvmppc_free_radix(kvm);
4910 kvmppc_update_lpcr(kvm, LPCR_VPM1,
4911 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Paul Mackerras18c36402017-09-13 16:00:10 +10004912 return 0;
4913}
4914
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004915/*
4916 * Must be called with kvm->arch.mmu_setup_lock held and
4917 * mmu_ready = 0 and no vcpus running.
4918 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004919int kvmppc_switch_mmu_to_radix(struct kvm *kvm)
4920{
4921 int err;
4922
4923 err = kvmppc_init_vm_radix(kvm);
4924 if (err)
4925 return err;
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004926 kvmppc_rmap_reset(kvm);
Sean Christophersonb1c53562021-04-01 17:56:53 -07004927 /* Mutual exclusion with kvm_unmap_gfn_range etc. */
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004928 spin_lock(&kvm->mmu_lock);
4929 kvm->arch.radix = 1;
4930 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10004931 kvmppc_free_hpt(&kvm->arch.hpt);
4932 kvmppc_update_lpcr(kvm, LPCR_UPRT | LPCR_GTSE | LPCR_HR,
4933 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Paul Mackerras18c36402017-09-13 16:00:10 +10004934 return 0;
4935}
4936
Suresh Warrier79b6c242015-12-17 14:59:06 -06004937#ifdef CONFIG_KVM_XICS
4938/*
4939 * Allocate a per-core structure for managing state about which cores are
4940 * running in the host versus the guest and for exchanging data between
4941 * real mode KVM and CPU running in the host.
4942 * This is only done for the first VM.
4943 * The allocated structure stays even if all VMs have stopped.
4944 * It is only freed when the kvm-hv module is unloaded.
4945 * It's OK for this routine to fail, we just don't support host
4946 * core operations like redirecting H_IPI wakeups.
4947 */
4948void kvmppc_alloc_host_rm_ops(void)
4949{
4950 struct kvmppc_host_rm_ops *ops;
4951 unsigned long l_ops;
4952 int cpu, core;
4953 int size;
4954
4955 /* Not the first time here ? */
4956 if (kvmppc_host_rm_ops_hv != NULL)
4957 return;
4958
4959 ops = kzalloc(sizeof(struct kvmppc_host_rm_ops), GFP_KERNEL);
4960 if (!ops)
4961 return;
4962
4963 size = cpu_nr_cores() * sizeof(struct kvmppc_host_rm_core);
4964 ops->rm_core = kzalloc(size, GFP_KERNEL);
4965
4966 if (!ops->rm_core) {
4967 kfree(ops);
4968 return;
4969 }
4970
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004971 cpus_read_lock();
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004972
Suresh Warrier79b6c242015-12-17 14:59:06 -06004973 for (cpu = 0; cpu < nr_cpu_ids; cpu += threads_per_core) {
4974 if (!cpu_online(cpu))
4975 continue;
4976
4977 core = cpu >> threads_shift;
4978 ops->rm_core[core].rm_state.in_host = 1;
4979 }
4980
Suresh Warrier0c2a6602015-12-17 14:59:09 -06004981 ops->vcpu_kick = kvmppc_fast_vcpu_kick_hv;
4982
Suresh Warrier79b6c242015-12-17 14:59:06 -06004983 /*
4984 * Make the contents of the kvmppc_host_rm_ops structure visible
4985 * to other CPUs before we assign it to the global variable.
4986 * Do an atomic assignment (no locks used here), but if someone
4987 * beats us to it, just free our copy and return.
4988 */
4989 smp_wmb();
4990 l_ops = (unsigned long) ops;
4991
4992 if (cmpxchg64((unsigned long *)&kvmppc_host_rm_ops_hv, 0, l_ops)) {
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004993 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06004994 kfree(ops->rm_core);
4995 kfree(ops);
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004996 return;
Suresh Warrier79b6c242015-12-17 14:59:06 -06004997 }
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004998
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004999 cpuhp_setup_state_nocalls_cpuslocked(CPUHP_KVM_PPC_BOOK3S_PREPARE,
5000 "ppc/kvm_book3s:prepare",
5001 kvmppc_set_host_core,
5002 kvmppc_clear_host_core);
5003 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06005004}
5005
5006void kvmppc_free_host_rm_ops(void)
5007{
5008 if (kvmppc_host_rm_ops_hv) {
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01005009 cpuhp_remove_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE);
Suresh Warrier79b6c242015-12-17 14:59:06 -06005010 kfree(kvmppc_host_rm_ops_hv->rm_core);
5011 kfree(kvmppc_host_rm_ops_hv);
5012 kvmppc_host_rm_ops_hv = NULL;
5013 }
5014}
5015#endif
5016
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305017static int kvmppc_core_init_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005018{
Paul Mackerras32fad282012-05-04 02:32:53 +00005019 unsigned long lpcr, lpid;
Paul Mackerrase23a8082015-03-28 14:21:01 +11005020 char buf[32];
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005021 int ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005022
Bharata B Raoca9f4942019-11-25 08:36:26 +05305023 mutex_init(&kvm->arch.uvmem_lock);
5024 INIT_LIST_HEAD(&kvm->arch.uvmem_pfns);
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005025 mutex_init(&kvm->arch.mmu_setup_lock);
5026
Paul Mackerras32fad282012-05-04 02:32:53 +00005027 /* Allocate the guest's logical partition ID */
5028
5029 lpid = kvmppc_alloc_lpid();
Chen Gang5d226ae2013-07-22 14:32:35 +08005030 if ((long)lpid < 0)
Paul Mackerras32fad282012-05-04 02:32:53 +00005031 return -ENOMEM;
5032 kvm->arch.lpid = lpid;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005033
Suresh Warrier79b6c242015-12-17 14:59:06 -06005034 kvmppc_alloc_host_rm_ops();
5035
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005036 kvmhv_vm_nested_init(kvm);
5037
Paul Mackerras1b400ba2012-11-21 23:28:08 +00005038 /*
5039 * Since we don't flush the TLB when tearing down a VM,
5040 * and this lpid might have previously been used,
5041 * make sure we flush on each core before running the new VM.
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005042 * On POWER9, the tlbie in mmu_partition_table_set_entry()
5043 * does this flush for us.
Paul Mackerras1b400ba2012-11-21 23:28:08 +00005044 */
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005045 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5046 cpumask_setall(&kvm->arch.need_tlb_flush);
Paul Mackerras1b400ba2012-11-21 23:28:08 +00005047
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005048 /* Start out with the default set of hcalls enabled */
5049 memcpy(kvm->arch.enabled_hcalls, default_enabled_hcalls,
5050 sizeof(kvm->arch.enabled_hcalls));
5051
Paul Mackerras7a840842016-11-16 22:25:20 +11005052 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5053 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005054
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11005055 /* Init LPCR for virtual RMA mode */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11005056 if (cpu_has_feature(CPU_FTR_HVMODE)) {
5057 kvm->arch.host_lpid = mfspr(SPRN_LPID);
5058 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
5059 lpcr &= LPCR_PECE | LPCR_LPES;
5060 } else {
5061 lpcr = 0;
5062 }
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11005063 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
5064 LPCR_VPM0 | LPCR_VPM1;
5065 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
5066 (VRMA_VSID << SLB_VSID_SHIFT_1T);
5067 /* On POWER8 turn on online bit to enable PURR/SPURR */
5068 if (cpu_has_feature(CPU_FTR_ARCH_207S))
5069 lpcr |= LPCR_ONL;
Paul Mackerras84f71392016-11-22 14:30:14 +11005070 /*
5071 * On POWER9, VPM0 bit is reserved (VPM0=1 behaviour is assumed)
5072 * Set HVICE bit to enable hypervisor virtualization interrupts.
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005073 * Set HEIC to prevent OS interrupts to go to hypervisor (should
5074 * be unnecessary but better safe than sorry in case we re-enable
5075 * EE in HV mode with this LPCR still set)
Paul Mackerras84f71392016-11-22 14:30:14 +11005076 */
5077 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerras7a840842016-11-16 22:25:20 +11005078 lpcr &= ~LPCR_VPM0;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005079 lpcr |= LPCR_HVICE | LPCR_HEIC;
5080
5081 /*
5082 * If xive is enabled, we route 0x500 interrupts directly
5083 * to the guest.
5084 */
Paul Mackerras03f95332019-02-04 22:07:20 +11005085 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005086 lpcr |= LPCR_LPES;
Paul Mackerras84f71392016-11-22 14:30:14 +11005087 }
5088
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005089 /*
Paul Mackerras18c36402017-09-13 16:00:10 +10005090 * If the host uses radix, the guest starts out as radix.
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005091 */
5092 if (radix_enabled()) {
5093 kvm->arch.radix = 1;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10005094 kvm->arch.mmu_ready = 1;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005095 lpcr &= ~LPCR_VPM1;
5096 lpcr |= LPCR_UPRT | LPCR_GTSE | LPCR_HR;
5097 ret = kvmppc_init_vm_radix(kvm);
5098 if (ret) {
5099 kvmppc_free_lpid(kvm->arch.lpid);
5100 return ret;
5101 }
5102 kvmppc_setup_partition_table(kvm);
5103 }
5104
Nicholas Piggin67145ef2021-04-12 11:48:36 +10005105 verify_lpcr(kvm, lpcr);
Paul Mackerras9e368f22011-06-29 00:40:08 +00005106 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005107
David Gibson5e985962016-12-20 16:49:05 +11005108 /* Initialization for future HPT resizes */
5109 kvm->arch.resize_hpt = NULL;
5110
Paul Mackerras512691d2012-10-15 01:15:41 +00005111 /*
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005112 * Work out how many sets the TLB has, for the use of
5113 * the TLB invalidation loop in book3s_hv_rmhandlers.S.
5114 */
Aneesh Kumar K.Ve8063942020-10-07 11:03:05 +05305115 if (cpu_has_feature(CPU_FTR_ARCH_31)) {
5116 /*
5117 * P10 will flush all the congruence class with a single tlbiel
5118 */
5119 kvm->arch.tlb_sets = 1;
5120 } else if (radix_enabled())
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005121 kvm->arch.tlb_sets = POWER9_TLB_SETS_RADIX; /* 128 */
5122 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11005123 kvm->arch.tlb_sets = POWER9_TLB_SETS_HASH; /* 256 */
5124 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
5125 kvm->arch.tlb_sets = POWER8_TLB_SETS; /* 512 */
5126 else
5127 kvm->arch.tlb_sets = POWER7_TLB_SETS; /* 128 */
5128
5129 /*
Michael Ellerman441c19c2014-05-23 18:15:25 +10005130 * Track that we now have a HV mode VM active. This blocks secondary
5131 * CPU threads from coming online.
Paul Mackerras516f7892017-10-16 16:11:57 +11005132 * On POWER9, we only need to do this if the "indep_threads_mode"
5133 * module parameter has been set to N.
Paul Mackerras512691d2012-10-15 01:15:41 +00005134 */
Paul Mackerras360cae32018-10-08 16:31:04 +11005135 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
5136 if (!indep_threads_mode && !cpu_has_feature(CPU_FTR_HVMODE)) {
5137 pr_warn("KVM: Ignoring indep_threads_mode=N in nested hypervisor\n");
5138 kvm->arch.threads_indep = true;
5139 } else {
5140 kvm->arch.threads_indep = indep_threads_mode;
5141 }
5142 }
Paul Mackerras516f7892017-10-16 16:11:57 +11005143 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005144 kvm_hv_vm_activated();
Paul Mackerras512691d2012-10-15 01:15:41 +00005145
Paul Mackerrase23a8082015-03-28 14:21:01 +11005146 /*
Paul Mackerras3c313522017-02-06 13:24:41 +11005147 * Initialize smt_mode depending on processor.
5148 * POWER8 and earlier have to use "strict" threading, where
5149 * all vCPUs in a vcore have to run on the same (sub)core,
5150 * whereas on POWER9 the threads can each run a different
5151 * guest.
5152 */
5153 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5154 kvm->arch.smt_mode = threads_per_subcore;
5155 else
5156 kvm->arch.smt_mode = 1;
Paul Mackerras57900692017-05-16 16:41:20 +10005157 kvm->arch.emul_smt_mode = 1;
Paul Mackerras3c313522017-02-06 13:24:41 +11005158
5159 /*
Paul Mackerrase23a8082015-03-28 14:21:01 +11005160 * Create a debugfs directory for the VM
5161 */
5162 snprintf(buf, sizeof(buf), "vm%d", current->pid);
5163 kvm->arch.debugfs_dir = debugfs_create_dir(buf, kvm_debugfs_dir);
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02005164 kvmppc_mmu_debugfs_init(kvm);
Paul Mackerras9a94d3e2018-10-08 16:30:57 +11005165 if (radix_enabled())
5166 kvmhv_radix_debugfs_init(kvm);
Paul Mackerrase23a8082015-03-28 14:21:01 +11005167
David Gibson54738c02011-06-29 00:22:41 +00005168 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005169}
5170
Paul Mackerrasf1378b12013-09-27 15:33:43 +05305171static void kvmppc_free_vcores(struct kvm *kvm)
5172{
5173 long int i;
5174
Paul Mackerras23316312015-10-21 16:03:14 +11005175 for (i = 0; i < KVM_MAX_VCORES; ++i)
Paul Mackerrasf1378b12013-09-27 15:33:43 +05305176 kfree(kvm->arch.vcores[i]);
5177 kvm->arch.online_vcores = 0;
5178}
5179
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305180static void kvmppc_core_destroy_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005181{
Paul Mackerrase23a8082015-03-28 14:21:01 +11005182 debugfs_remove_recursive(kvm->arch.debugfs_dir);
5183
Paul Mackerras516f7892017-10-16 16:11:57 +11005184 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005185 kvm_hv_vm_deactivated();
Paul Mackerras512691d2012-10-15 01:15:41 +00005186
Paul Mackerrasf1378b12013-09-27 15:33:43 +05305187 kvmppc_free_vcores(kvm);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005188
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005189
Paul Mackerras5a319352017-01-30 21:21:46 +11005190 if (kvm_is_radix(kvm))
5191 kvmppc_free_radix(kvm);
5192 else
David Gibsonaae07772016-12-20 16:49:02 +11005193 kvmppc_free_hpt(&kvm->arch.hpt);
Suresh Warrierc57875f2016-08-19 15:35:50 +10005194
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005195 /* Perform global invalidation and return lpid to the pool */
5196 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005197 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005198 kvmhv_release_all_nested(kvm);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005199 kvm->arch.process_table = 0;
Paul Mackerrasd89c69f2019-12-18 11:43:06 +11005200 if (kvm->arch.secure_guest)
5201 uv_svm_terminate(kvm->arch.lpid);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005202 kvmhv_set_ptbl_entry(kvm->arch.lpid, 0, 0);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005203 }
Bharata B Raoca9f4942019-11-25 08:36:26 +05305204
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005205 kvmppc_free_lpid(kvm->arch.lpid);
5206
Suresh Warrierc57875f2016-08-19 15:35:50 +10005207 kvmppc_free_pimap(kvm);
Paul Mackerrasde56a942011-06-29 00:21:34 +00005208}
5209
5210/* We don't need to emulate any privileged instructions or dcbz */
Tianjia Zhang8c99d342020-04-27 12:35:11 +08005211static int kvmppc_core_emulate_op_hv(struct kvm_vcpu *vcpu,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305212 unsigned int inst, int *advance)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005213{
5214 return EMULATE_FAIL;
5215}
5216
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305217static int kvmppc_core_emulate_mtspr_hv(struct kvm_vcpu *vcpu, int sprn,
5218 ulong spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005219{
5220 return EMULATE_FAIL;
5221}
5222
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305223static int kvmppc_core_emulate_mfspr_hv(struct kvm_vcpu *vcpu, int sprn,
5224 ulong *spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005225{
5226 return EMULATE_FAIL;
5227}
5228
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305229static int kvmppc_core_check_processor_compat_hv(void)
5230{
Paul Mackerrasde760db2018-10-08 16:31:16 +11005231 if (cpu_has_feature(CPU_FTR_HVMODE) &&
5232 cpu_has_feature(CPU_FTR_ARCH_206))
5233 return 0;
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10005234
Paul Mackerrasde760db2018-10-08 16:31:16 +11005235 /* POWER9 in radix mode is capable of being a nested hypervisor. */
5236 if (cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled())
5237 return 0;
5238
5239 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305240}
5241
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005242#ifdef CONFIG_KVM_XICS
5243
5244void kvmppc_free_pimap(struct kvm *kvm)
5245{
5246 kfree(kvm->arch.pimap);
5247}
5248
Suresh Warrierc57875f2016-08-19 15:35:50 +10005249static struct kvmppc_passthru_irqmap *kvmppc_alloc_pimap(void)
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005250{
5251 return kzalloc(sizeof(struct kvmppc_passthru_irqmap), GFP_KERNEL);
5252}
Suresh Warrierc57875f2016-08-19 15:35:50 +10005253
5254static int kvmppc_set_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
5255{
5256 struct irq_desc *desc;
5257 struct kvmppc_irq_map *irq_map;
5258 struct kvmppc_passthru_irqmap *pimap;
5259 struct irq_chip *chip;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005260 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005261
Suresh Warrier644abbb2016-08-19 15:35:54 +10005262 if (!kvm_irq_bypass)
5263 return 1;
5264
Suresh Warrierc57875f2016-08-19 15:35:50 +10005265 desc = irq_to_desc(host_irq);
5266 if (!desc)
5267 return -EIO;
5268
5269 mutex_lock(&kvm->lock);
5270
5271 pimap = kvm->arch.pimap;
5272 if (pimap == NULL) {
5273 /* First call, allocate structure to hold IRQ map */
5274 pimap = kvmppc_alloc_pimap();
5275 if (pimap == NULL) {
5276 mutex_unlock(&kvm->lock);
5277 return -ENOMEM;
5278 }
5279 kvm->arch.pimap = pimap;
5280 }
5281
5282 /*
5283 * For now, we only support interrupts for which the EOI operation
5284 * is an OPAL call followed by a write to XIRR, since that's
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005285 * what our real-mode EOI code does, or a XIVE interrupt
Suresh Warrierc57875f2016-08-19 15:35:50 +10005286 */
5287 chip = irq_data_get_irq_chip(&desc->irq_data);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005288 if (!chip || !(is_pnv_opal_msi(chip) || is_xive_irq(chip))) {
Suresh Warrierc57875f2016-08-19 15:35:50 +10005289 pr_warn("kvmppc_set_passthru_irq_hv: Could not assign IRQ map for (%d,%d)\n",
5290 host_irq, guest_gsi);
5291 mutex_unlock(&kvm->lock);
5292 return -ENOENT;
5293 }
5294
5295 /*
5296 * See if we already have an entry for this guest IRQ number.
5297 * If it's mapped to a hardware IRQ number, that's an error,
5298 * otherwise re-use this entry.
5299 */
5300 for (i = 0; i < pimap->n_mapped; i++) {
5301 if (guest_gsi == pimap->mapped[i].v_hwirq) {
5302 if (pimap->mapped[i].r_hwirq) {
5303 mutex_unlock(&kvm->lock);
5304 return -EINVAL;
5305 }
5306 break;
5307 }
5308 }
5309
5310 if (i == KVMPPC_PIRQ_MAPPED) {
5311 mutex_unlock(&kvm->lock);
5312 return -EAGAIN; /* table is full */
5313 }
5314
5315 irq_map = &pimap->mapped[i];
5316
5317 irq_map->v_hwirq = guest_gsi;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005318 irq_map->desc = desc;
5319
Suresh Warriere3c13e52016-08-19 15:35:51 +10005320 /*
5321 * Order the above two stores before the next to serialize with
5322 * the KVM real mode handler.
5323 */
5324 smp_wmb();
5325 irq_map->r_hwirq = desc->irq_data.hwirq;
5326
Suresh Warrierc57875f2016-08-19 15:35:50 +10005327 if (i == pimap->n_mapped)
5328 pimap->n_mapped++;
5329
Paul Mackerras03f95332019-02-04 22:07:20 +11005330 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005331 rc = kvmppc_xive_set_mapped(kvm, guest_gsi, desc);
5332 else
5333 kvmppc_xics_set_mapped(kvm, guest_gsi, desc->irq_data.hwirq);
5334 if (rc)
5335 irq_map->r_hwirq = 0;
Paul Mackerras5d375192016-08-19 15:35:56 +10005336
Suresh Warrierc57875f2016-08-19 15:35:50 +10005337 mutex_unlock(&kvm->lock);
5338
5339 return 0;
5340}
5341
5342static int kvmppc_clr_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
5343{
5344 struct irq_desc *desc;
5345 struct kvmppc_passthru_irqmap *pimap;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005346 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005347
Suresh Warrier644abbb2016-08-19 15:35:54 +10005348 if (!kvm_irq_bypass)
5349 return 0;
5350
Suresh Warrierc57875f2016-08-19 15:35:50 +10005351 desc = irq_to_desc(host_irq);
5352 if (!desc)
5353 return -EIO;
5354
5355 mutex_lock(&kvm->lock);
Markus Elfringa1c52e12017-01-20 11:00:08 +01005356 if (!kvm->arch.pimap)
5357 goto unlock;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005358
Suresh Warrierc57875f2016-08-19 15:35:50 +10005359 pimap = kvm->arch.pimap;
5360
5361 for (i = 0; i < pimap->n_mapped; i++) {
5362 if (guest_gsi == pimap->mapped[i].v_hwirq)
5363 break;
5364 }
5365
5366 if (i == pimap->n_mapped) {
5367 mutex_unlock(&kvm->lock);
5368 return -ENODEV;
5369 }
5370
Paul Mackerras03f95332019-02-04 22:07:20 +11005371 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005372 rc = kvmppc_xive_clr_mapped(kvm, guest_gsi, pimap->mapped[i].desc);
5373 else
5374 kvmppc_xics_clr_mapped(kvm, guest_gsi, pimap->mapped[i].r_hwirq);
Paul Mackerras5d375192016-08-19 15:35:56 +10005375
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005376 /* invalidate the entry (what do do on error from the above ?) */
Suresh Warrierc57875f2016-08-19 15:35:50 +10005377 pimap->mapped[i].r_hwirq = 0;
5378
5379 /*
5380 * We don't free this structure even when the count goes to
5381 * zero. The structure is freed when we destroy the VM.
5382 */
Markus Elfringa1c52e12017-01-20 11:00:08 +01005383 unlock:
Suresh Warrierc57875f2016-08-19 15:35:50 +10005384 mutex_unlock(&kvm->lock);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005385 return rc;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005386}
5387
5388static int kvmppc_irq_bypass_add_producer_hv(struct irq_bypass_consumer *cons,
5389 struct irq_bypass_producer *prod)
5390{
5391 int ret = 0;
5392 struct kvm_kernel_irqfd *irqfd =
5393 container_of(cons, struct kvm_kernel_irqfd, consumer);
5394
5395 irqfd->producer = prod;
5396
5397 ret = kvmppc_set_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5398 if (ret)
5399 pr_info("kvmppc_set_passthru_irq (irq %d, gsi %d) fails: %d\n",
5400 prod->irq, irqfd->gsi, ret);
5401
5402 return ret;
5403}
5404
5405static void kvmppc_irq_bypass_del_producer_hv(struct irq_bypass_consumer *cons,
5406 struct irq_bypass_producer *prod)
5407{
5408 int ret;
5409 struct kvm_kernel_irqfd *irqfd =
5410 container_of(cons, struct kvm_kernel_irqfd, consumer);
5411
5412 irqfd->producer = NULL;
5413
5414 /*
5415 * When producer of consumer is unregistered, we change back to
5416 * default external interrupt handling mode - KVM real mode
5417 * will switch back to host.
5418 */
5419 ret = kvmppc_clr_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5420 if (ret)
5421 pr_warn("kvmppc_clr_passthru_irq (irq %d, gsi %d) fails: %d\n",
5422 prod->irq, irqfd->gsi, ret);
5423}
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005424#endif
5425
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305426static long kvm_arch_vm_ioctl_hv(struct file *filp,
5427 unsigned int ioctl, unsigned long arg)
5428{
5429 struct kvm *kvm __maybe_unused = filp->private_data;
5430 void __user *argp = (void __user *)arg;
5431 long r;
5432
5433 switch (ioctl) {
5434
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305435 case KVM_PPC_ALLOCATE_HTAB: {
5436 u32 htab_order;
5437
Fabiano Rosas05e62952020-09-11 01:16:07 -03005438 /* If we're a nested hypervisor, we currently only support radix */
5439 if (kvmhv_on_pseries()) {
5440 r = -EOPNOTSUPP;
5441 break;
5442 }
5443
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305444 r = -EFAULT;
5445 if (get_user(htab_order, (u32 __user *)argp))
5446 break;
David Gibsonf98a8bf2016-12-20 16:49:03 +11005447 r = kvmppc_alloc_reset_hpt(kvm, htab_order);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305448 if (r)
5449 break;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305450 r = 0;
5451 break;
5452 }
5453
5454 case KVM_PPC_GET_HTAB_FD: {
5455 struct kvm_get_htab_fd ghf;
5456
5457 r = -EFAULT;
5458 if (copy_from_user(&ghf, argp, sizeof(ghf)))
5459 break;
5460 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
5461 break;
5462 }
5463
David Gibson5e985962016-12-20 16:49:05 +11005464 case KVM_PPC_RESIZE_HPT_PREPARE: {
5465 struct kvm_ppc_resize_hpt rhpt;
5466
5467 r = -EFAULT;
5468 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5469 break;
5470
5471 r = kvm_vm_ioctl_resize_hpt_prepare(kvm, &rhpt);
5472 break;
5473 }
5474
5475 case KVM_PPC_RESIZE_HPT_COMMIT: {
5476 struct kvm_ppc_resize_hpt rhpt;
5477
5478 r = -EFAULT;
5479 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5480 break;
5481
5482 r = kvm_vm_ioctl_resize_hpt_commit(kvm, &rhpt);
5483 break;
5484 }
5485
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305486 default:
5487 r = -ENOTTY;
5488 }
5489
5490 return r;
5491}
5492
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005493/*
5494 * List of hcall numbers to enable by default.
5495 * For compatibility with old userspace, we enable by default
5496 * all hcalls that were implemented before the hcall-enabling
5497 * facility was added. Note this list should not include H_RTAS.
5498 */
5499static unsigned int default_hcall_list[] = {
5500 H_REMOVE,
5501 H_ENTER,
5502 H_READ,
5503 H_PROTECT,
5504 H_BULK_REMOVE,
Nicholas Piggin0fd85cb82021-04-12 11:48:41 +10005505#ifdef CONFIG_SPAPR_TCE_IOMMU
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005506 H_GET_TCE,
5507 H_PUT_TCE,
Nicholas Piggin0fd85cb82021-04-12 11:48:41 +10005508#endif
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005509 H_SET_DABR,
5510 H_SET_XDABR,
5511 H_CEDE,
5512 H_PROD,
5513 H_CONFER,
5514 H_REGISTER_VPA,
5515#ifdef CONFIG_KVM_XICS
5516 H_EOI,
5517 H_CPPR,
5518 H_IPI,
5519 H_IPOLL,
5520 H_XIRR,
5521 H_XIRR_X,
5522#endif
5523 0
5524};
5525
5526static void init_default_hcalls(void)
5527{
5528 int i;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005529 unsigned int hcall;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005530
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005531 for (i = 0; default_hcall_list[i]; ++i) {
5532 hcall = default_hcall_list[i];
5533 WARN_ON(!kvmppc_hcall_impl_hv(hcall));
5534 __set_bit(hcall / 4, default_enabled_hcalls);
5535 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005536}
5537
Paul Mackerrasc9270132017-01-30 21:21:41 +11005538static int kvmhv_configure_mmu(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
5539{
Paul Mackerras468808b2017-01-30 21:21:42 +11005540 unsigned long lpcr;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005541 int radix;
Paul Mackerras18c36402017-09-13 16:00:10 +10005542 int err;
Paul Mackerras468808b2017-01-30 21:21:42 +11005543
5544 /* If not on a POWER9, reject it */
5545 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5546 return -ENODEV;
5547
5548 /* If any unknown flags set, reject it */
5549 if (cfg->flags & ~(KVM_PPC_MMUV3_RADIX | KVM_PPC_MMUV3_GTSE))
5550 return -EINVAL;
5551
Paul Mackerras468808b2017-01-30 21:21:42 +11005552 /* GR (guest radix) bit in process_table field must match */
Paul Mackerras18c36402017-09-13 16:00:10 +10005553 radix = !!(cfg->flags & KVM_PPC_MMUV3_RADIX);
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005554 if (!!(cfg->process_table & PATB_GR) != radix)
Paul Mackerras468808b2017-01-30 21:21:42 +11005555 return -EINVAL;
5556
5557 /* Process table size field must be reasonable, i.e. <= 24 */
5558 if ((cfg->process_table & PRTS_MASK) > 24)
5559 return -EINVAL;
5560
Paul Mackerras18c36402017-09-13 16:00:10 +10005561 /* We can change a guest to/from radix now, if the host is radix */
5562 if (radix && !radix_enabled())
5563 return -EINVAL;
5564
Paul Mackerrasde760db2018-10-08 16:31:16 +11005565 /* If we're a nested hypervisor, we currently only support radix */
5566 if (kvmhv_on_pseries() && !radix)
5567 return -EINVAL;
5568
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005569 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005570 if (radix != kvm_is_radix(kvm)) {
5571 if (kvm->arch.mmu_ready) {
5572 kvm->arch.mmu_ready = 0;
5573 /* order mmu_ready vs. vcpus_running */
5574 smp_mb();
5575 if (atomic_read(&kvm->arch.vcpus_running)) {
5576 kvm->arch.mmu_ready = 1;
5577 err = -EBUSY;
5578 goto out_unlock;
5579 }
5580 }
5581 if (radix)
5582 err = kvmppc_switch_mmu_to_radix(kvm);
5583 else
5584 err = kvmppc_switch_mmu_to_hpt(kvm);
5585 if (err)
5586 goto out_unlock;
5587 }
5588
Paul Mackerras468808b2017-01-30 21:21:42 +11005589 kvm->arch.process_table = cfg->process_table;
5590 kvmppc_setup_partition_table(kvm);
5591
5592 lpcr = (cfg->flags & KVM_PPC_MMUV3_GTSE) ? LPCR_GTSE : 0;
5593 kvmppc_update_lpcr(kvm, lpcr, LPCR_GTSE);
Paul Mackerras18c36402017-09-13 16:00:10 +10005594 err = 0;
Paul Mackerras468808b2017-01-30 21:21:42 +11005595
Paul Mackerras18c36402017-09-13 16:00:10 +10005596 out_unlock:
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005597 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005598 return err;
Paul Mackerrasc9270132017-01-30 21:21:41 +11005599}
5600
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005601static int kvmhv_enable_nested(struct kvm *kvm)
5602{
5603 if (!nested)
5604 return -EPERM;
Paul Mackerras8d9fcac2018-10-19 20:44:04 +11005605 if (!cpu_has_feature(CPU_FTR_ARCH_300) || no_mixing_hpt_and_radix)
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005606 return -ENODEV;
5607
5608 /* kvm == NULL means the caller is testing if the capability exists */
5609 if (kvm)
5610 kvm->arch.nested_enable = true;
5611 return 0;
5612}
5613
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11005614static int kvmhv_load_from_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5615 int size)
5616{
5617 int rc = -EINVAL;
5618
5619 if (kvmhv_vcpu_is_radix(vcpu)) {
5620 rc = kvmhv_copy_from_guest_radix(vcpu, *eaddr, ptr, size);
5621
5622 if (rc > 0)
5623 rc = -EINVAL;
5624 }
5625
5626 /* For now quadrants are the only way to access nested guest memory */
5627 if (rc && vcpu->arch.nested)
5628 rc = -EAGAIN;
5629
5630 return rc;
5631}
5632
5633static int kvmhv_store_to_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5634 int size)
5635{
5636 int rc = -EINVAL;
5637
5638 if (kvmhv_vcpu_is_radix(vcpu)) {
5639 rc = kvmhv_copy_to_guest_radix(vcpu, *eaddr, ptr, size);
5640
5641 if (rc > 0)
5642 rc = -EINVAL;
5643 }
5644
5645 /* For now quadrants are the only way to access nested guest memory */
5646 if (rc && vcpu->arch.nested)
5647 rc = -EAGAIN;
5648
5649 return rc;
5650}
5651
Bharata B Rao22945682019-11-25 08:36:30 +05305652static void unpin_vpa_reset(struct kvm *kvm, struct kvmppc_vpa *vpa)
5653{
5654 unpin_vpa(kvm, vpa);
5655 vpa->gpa = 0;
5656 vpa->pinned_addr = NULL;
5657 vpa->dirty = false;
5658 vpa->update_pending = 0;
5659}
5660
5661/*
Paul Mackerras9a5788c2020-03-19 15:29:55 +11005662 * Enable a guest to become a secure VM, or test whether
5663 * that could be enabled.
5664 * Called when the KVM_CAP_PPC_SECURE_GUEST capability is
5665 * tested (kvm == NULL) or enabled (kvm != NULL).
5666 */
5667static int kvmhv_enable_svm(struct kvm *kvm)
5668{
5669 if (!kvmppc_uvmem_available())
5670 return -EINVAL;
5671 if (kvm)
5672 kvm->arch.svm_enabled = 1;
5673 return 0;
5674}
5675
5676/*
Bharata B Rao22945682019-11-25 08:36:30 +05305677 * IOCTL handler to turn off secure mode of guest
5678 *
5679 * - Release all device pages
5680 * - Issue ucall to terminate the guest on the UV side
5681 * - Unpin the VPA pages.
5682 * - Reinit the partition scoped page tables
5683 */
5684static int kvmhv_svm_off(struct kvm *kvm)
5685{
5686 struct kvm_vcpu *vcpu;
5687 int mmu_was_ready;
5688 int srcu_idx;
5689 int ret = 0;
5690 int i;
5691
5692 if (!(kvm->arch.secure_guest & KVMPPC_SECURE_INIT_START))
5693 return ret;
5694
5695 mutex_lock(&kvm->arch.mmu_setup_lock);
5696 mmu_was_ready = kvm->arch.mmu_ready;
5697 if (kvm->arch.mmu_ready) {
5698 kvm->arch.mmu_ready = 0;
5699 /* order mmu_ready vs. vcpus_running */
5700 smp_mb();
5701 if (atomic_read(&kvm->arch.vcpus_running)) {
5702 kvm->arch.mmu_ready = 1;
5703 ret = -EBUSY;
5704 goto out;
5705 }
5706 }
5707
5708 srcu_idx = srcu_read_lock(&kvm->srcu);
5709 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
5710 struct kvm_memory_slot *memslot;
5711 struct kvm_memslots *slots = __kvm_memslots(kvm, i);
5712
5713 if (!slots)
5714 continue;
5715
5716 kvm_for_each_memslot(memslot, slots) {
Sukadev Bhattiproluce477a72019-12-19 13:51:45 -08005717 kvmppc_uvmem_drop_pages(memslot, kvm, true);
Bharata B Rao22945682019-11-25 08:36:30 +05305718 uv_unregister_mem_slot(kvm->arch.lpid, memslot->id);
5719 }
5720 }
5721 srcu_read_unlock(&kvm->srcu, srcu_idx);
5722
5723 ret = uv_svm_terminate(kvm->arch.lpid);
5724 if (ret != U_SUCCESS) {
5725 ret = -EINVAL;
5726 goto out;
5727 }
5728
5729 /*
5730 * When secure guest is reset, all the guest pages are sent
5731 * to UV via UV_PAGE_IN before the non-boot vcpus get a
5732 * chance to run and unpin their VPA pages. Unpinning of all
5733 * VPA pages is done here explicitly so that VPA pages
5734 * can be migrated to the secure side.
5735 *
5736 * This is required to for the secure SMP guest to reboot
5737 * correctly.
5738 */
5739 kvm_for_each_vcpu(i, vcpu, kvm) {
5740 spin_lock(&vcpu->arch.vpa_update_lock);
5741 unpin_vpa_reset(kvm, &vcpu->arch.dtl);
5742 unpin_vpa_reset(kvm, &vcpu->arch.slb_shadow);
5743 unpin_vpa_reset(kvm, &vcpu->arch.vpa);
5744 spin_unlock(&vcpu->arch.vpa_update_lock);
5745 }
5746
5747 kvmppc_setup_partition_table(kvm);
5748 kvm->arch.secure_guest = 0;
5749 kvm->arch.mmu_ready = mmu_was_ready;
5750out:
5751 mutex_unlock(&kvm->arch.mmu_setup_lock);
5752 return ret;
5753}
5754
Ravi Bangoriad9a47ed2020-12-16 16:12:19 +05305755static int kvmhv_enable_dawr1(struct kvm *kvm)
5756{
5757 if (!cpu_has_feature(CPU_FTR_DAWR1))
5758 return -ENODEV;
5759
5760 /* kvm == NULL means the caller is testing if the capability exists */
5761 if (kvm)
5762 kvm->arch.dawr1_enabled = true;
5763 return 0;
5764}
5765
Fabiano Rosasa7220762021-02-05 13:41:54 -03005766static bool kvmppc_hash_v3_possible(void)
5767{
5768 if (radix_enabled() && no_mixing_hpt_and_radix)
5769 return false;
5770
5771 return cpu_has_feature(CPU_FTR_ARCH_300) &&
5772 cpu_has_feature(CPU_FTR_HVMODE);
5773}
5774
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305775static struct kvmppc_ops kvm_ops_hv = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305776 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_hv,
5777 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_hv,
5778 .get_one_reg = kvmppc_get_one_reg_hv,
5779 .set_one_reg = kvmppc_set_one_reg_hv,
5780 .vcpu_load = kvmppc_core_vcpu_load_hv,
5781 .vcpu_put = kvmppc_core_vcpu_put_hv,
Nicholas Piggin87a45e02019-10-02 16:00:22 +10005782 .inject_interrupt = kvmppc_inject_interrupt_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305783 .set_msr = kvmppc_set_msr_hv,
5784 .vcpu_run = kvmppc_vcpu_run_hv,
5785 .vcpu_create = kvmppc_core_vcpu_create_hv,
5786 .vcpu_free = kvmppc_core_vcpu_free_hv,
5787 .check_requests = kvmppc_core_check_requests_hv,
5788 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_hv,
5789 .flush_memslot = kvmppc_core_flush_memslot_hv,
5790 .prepare_memory_region = kvmppc_core_prepare_memory_region_hv,
5791 .commit_memory_region = kvmppc_core_commit_memory_region_hv,
Sean Christophersonb1c53562021-04-01 17:56:53 -07005792 .unmap_gfn_range = kvm_unmap_gfn_range_hv,
5793 .age_gfn = kvm_age_gfn_hv,
5794 .test_age_gfn = kvm_test_age_gfn_hv,
5795 .set_spte_gfn = kvm_set_spte_gfn_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305796 .free_memslot = kvmppc_core_free_memslot_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305797 .init_vm = kvmppc_core_init_vm_hv,
5798 .destroy_vm = kvmppc_core_destroy_vm_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305799 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_hv,
5800 .emulate_op = kvmppc_core_emulate_op_hv,
5801 .emulate_mtspr = kvmppc_core_emulate_mtspr_hv,
5802 .emulate_mfspr = kvmppc_core_emulate_mfspr_hv,
5803 .fast_vcpu_kick = kvmppc_fast_vcpu_kick_hv,
5804 .arch_vm_ioctl = kvm_arch_vm_ioctl_hv,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005805 .hcall_implemented = kvmppc_hcall_impl_hv,
Suresh Warrierc57875f2016-08-19 15:35:50 +10005806#ifdef CONFIG_KVM_XICS
5807 .irq_bypass_add_producer = kvmppc_irq_bypass_add_producer_hv,
5808 .irq_bypass_del_producer = kvmppc_irq_bypass_del_producer_hv,
5809#endif
Paul Mackerrasc9270132017-01-30 21:21:41 +11005810 .configure_mmu = kvmhv_configure_mmu,
5811 .get_rmmu_info = kvmhv_get_rmmu_info,
Paul Mackerras3c313522017-02-06 13:24:41 +11005812 .set_smt_mode = kvmhv_set_smt_mode,
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005813 .enable_nested = kvmhv_enable_nested,
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11005814 .load_from_eaddr = kvmhv_load_from_eaddr,
5815 .store_to_eaddr = kvmhv_store_to_eaddr,
Paul Mackerras9a5788c2020-03-19 15:29:55 +11005816 .enable_svm = kvmhv_enable_svm,
Bharata B Rao22945682019-11-25 08:36:30 +05305817 .svm_off = kvmhv_svm_off,
Ravi Bangoriad9a47ed2020-12-16 16:12:19 +05305818 .enable_dawr1 = kvmhv_enable_dawr1,
Fabiano Rosasa7220762021-02-05 13:41:54 -03005819 .hash_v3_possible = kvmppc_hash_v3_possible,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305820};
5821
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305822static int kvm_init_subcore_bitmap(void)
5823{
5824 int i, j;
5825 int nr_cores = cpu_nr_cores();
5826 struct sibling_subcore_state *sibling_subcore_state;
5827
5828 for (i = 0; i < nr_cores; i++) {
5829 int first_cpu = i * threads_per_core;
5830 int node = cpu_to_node(first_cpu);
5831
5832 /* Ignore if it is already allocated. */
Nicholas Piggind2e60072018-02-14 01:08:12 +10005833 if (paca_ptrs[first_cpu]->sibling_subcore_state)
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305834 continue;
5835
5836 sibling_subcore_state =
wangbo08434ab2019-01-07 20:15:52 +08005837 kzalloc_node(sizeof(struct sibling_subcore_state),
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305838 GFP_KERNEL, node);
5839 if (!sibling_subcore_state)
5840 return -ENOMEM;
5841
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305842
5843 for (j = 0; j < threads_per_core; j++) {
5844 int cpu = first_cpu + j;
5845
Nicholas Piggind2e60072018-02-14 01:08:12 +10005846 paca_ptrs[cpu]->sibling_subcore_state =
5847 sibling_subcore_state;
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305848 }
5849 }
5850 return 0;
5851}
5852
Paul Mackerras5a319352017-01-30 21:21:46 +11005853static int kvmppc_radix_possible(void)
5854{
5855 return cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled();
5856}
5857
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305858static int kvmppc_book3s_init_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005859{
5860 int r;
Nicholas Piggin2275d7b2019-09-03 01:29:31 +10005861
5862 if (!tlbie_capable) {
5863 pr_err("KVM-HV: Host does not support TLBIE\n");
5864 return -ENODEV;
5865 }
5866
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305867 /*
5868 * FIXME!! Do we need to check on all cpus ?
5869 */
5870 r = kvmppc_core_check_processor_compat_hv();
5871 if (r < 0)
Paul Mackerras739e2422014-03-25 10:47:05 +11005872 return -ENODEV;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005873
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005874 r = kvmhv_nested_init();
5875 if (r)
5876 return r;
5877
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305878 r = kvm_init_subcore_bitmap();
5879 if (r)
5880 return r;
5881
Paul Mackerrasf7257582016-11-18 09:02:08 +11005882 /*
5883 * We need a way of accessing the XICS interrupt controller,
Nicholas Piggind2e60072018-02-14 01:08:12 +10005884 * either directly, via paca_ptrs[cpu]->kvm_hstate.xics_phys, or
Paul Mackerrasf7257582016-11-18 09:02:08 +11005885 * indirectly, via OPAL.
5886 */
5887#ifdef CONFIG_SMP
Paul Mackerras03f95332019-02-04 22:07:20 +11005888 if (!xics_on_xive() && !kvmhv_on_pseries() &&
Paul Mackerrasf3c18e92018-10-08 16:31:05 +11005889 !local_paca->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +11005890 struct device_node *np;
5891
5892 np = of_find_compatible_node(NULL, NULL, "ibm,opal-intc");
5893 if (!np) {
5894 pr_err("KVM-HV: Cannot determine method for accessing XICS\n");
5895 return -ENODEV;
5896 }
Nicholas Mc Guire51eaa082018-07-07 08:53:07 +02005897 /* presence of intc confirmed - node can be dropped again */
5898 of_node_put(np);
Paul Mackerrasf7257582016-11-18 09:02:08 +11005899 }
5900#endif
5901
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305902 kvm_ops_hv.owner = THIS_MODULE;
5903 kvmppc_hv_ops = &kvm_ops_hv;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005904
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005905 init_default_hcalls();
5906
Paul Mackerrasec257162015-06-24 21:18:03 +10005907 init_vcore_lists();
5908
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305909 r = kvmppc_mmu_hv_init();
Paul Mackerras5a319352017-01-30 21:21:46 +11005910 if (r)
5911 return r;
5912
5913 if (kvmppc_radix_possible())
5914 r = kvmppc_radix_init();
Paul Mackerras00608e12018-01-11 16:54:26 +11005915
5916 /*
5917 * POWER9 chips before version 2.02 can't have some threads in
5918 * HPT mode and some in radix mode on the same core.
5919 */
5920 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
5921 unsigned int pvr = mfspr(SPRN_PVR);
5922 if ((pvr >> 16) == PVR_POWER9 &&
5923 (((pvr & 0xe000) == 0 && (pvr & 0xfff) < 0x202) ||
5924 ((pvr & 0xe000) == 0x2000 && (pvr & 0xfff) < 0x101)))
5925 no_mixing_hpt_and_radix = true;
5926 }
5927
Bharata B Raoca9f4942019-11-25 08:36:26 +05305928 r = kvmppc_uvmem_init();
5929 if (r < 0)
5930 pr_err("KVM-HV: kvmppc_uvmem_init failed %d\n", r);
5931
Paul Mackerrasde56a942011-06-29 00:21:34 +00005932 return r;
5933}
5934
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305935static void kvmppc_book3s_exit_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005936{
Bharata B Raoca9f4942019-11-25 08:36:26 +05305937 kvmppc_uvmem_free();
Suresh Warrier79b6c242015-12-17 14:59:06 -06005938 kvmppc_free_host_rm_ops();
Paul Mackerras5a319352017-01-30 21:21:46 +11005939 if (kvmppc_radix_possible())
5940 kvmppc_radix_exit();
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305941 kvmppc_hv_ops = NULL;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005942 kvmhv_nested_exit();
Paul Mackerrasde56a942011-06-29 00:21:34 +00005943}
5944
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305945module_init(kvmppc_book3s_init_hv);
5946module_exit(kvmppc_book3s_exit_hv);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05305947MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01005948MODULE_ALIAS_MISCDEV(KVM_MINOR);
5949MODULE_ALIAS("devname:kvm");