blob: 764b6239ef72dccc2bc0590ec3107d1d11e16e20 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Paul Mackerrasde56a942011-06-29 00:21:34 +00002/*
3 * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
4 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
5 *
6 * Authors:
7 * Paul Mackerras <paulus@au1.ibm.com>
8 * Alexander Graf <agraf@suse.de>
9 * Kevin Wolf <mail@kevin-wolf.de>
10 *
11 * Description: KVM functions specific to running on Book 3S
12 * processors in hypervisor mode (specifically POWER7 and later).
13 *
14 * This file is derived from arch/powerpc/kvm/book3s.c,
15 * by Alexander Graf <agraf@suse.de>.
Paul Mackerrasde56a942011-06-29 00:21:34 +000016 */
17
18#include <linux/kvm_host.h>
Thomas Meyer4bb817ed2017-09-03 14:19:31 +020019#include <linux/kernel.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000020#include <linux/err.h>
21#include <linux/slab.h>
22#include <linux/preempt.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010023#include <linux/sched/signal.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010024#include <linux/sched/stat.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000025#include <linux/delay.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040026#include <linux/export.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000027#include <linux/fs.h>
28#include <linux/anon_inodes.h>
Gavin Shan07f8ab252016-05-11 11:15:55 +100029#include <linux/cpu.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000030#include <linux/cpumask.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000031#include <linux/spinlock.h>
32#include <linux/page-flags.h>
Paul Mackerras2c9097e2012-09-11 13:27:01 +000033#include <linux/srcu.h>
Alexander Graf398a76c2013-12-09 13:53:42 +010034#include <linux/miscdevice.h>
Paul Mackerrase23a8082015-03-28 14:21:01 +110035#include <linux/debugfs.h>
Benjamin Herrenschmidtd3989142017-04-05 17:54:51 +100036#include <linux/gfp.h>
37#include <linux/vmalloc.h>
38#include <linux/highmem.h>
39#include <linux/hugetlb.h>
40#include <linux/kvm_irqfd.h>
41#include <linux/irqbypass.h>
42#include <linux/module.h>
43#include <linux/compiler.h>
44#include <linux/of.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000045
Luke Dashjrd6ee76d2018-08-16 21:36:26 +000046#include <asm/ftrace.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000047#include <asm/reg.h>
Paul Mackerras57900692017-05-16 16:41:20 +100048#include <asm/ppc-opcode.h>
Nicholas Piggin6de66382017-11-05 23:33:55 +110049#include <asm/asm-prototypes.h>
Paul Mackerras4bad7772018-10-08 16:31:06 +110050#include <asm/archrandom.h>
Nicholas Piggine303c082018-04-01 15:50:35 +100051#include <asm/debug.h>
Paul Mackerras57900692017-05-16 16:41:20 +100052#include <asm/disassemble.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000053#include <asm/cputable.h>
54#include <asm/cacheflush.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080055#include <linux/uaccess.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000056#include <asm/io.h>
57#include <asm/kvm_ppc.h>
58#include <asm/kvm_book3s.h>
59#include <asm/mmu_context.h>
60#include <asm/lppaca.h>
61#include <asm/processor.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000062#include <asm/cputhreads.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000063#include <asm/page.h>
Michael Neulingde1d9242011-11-09 20:39:49 +000064#include <asm/hvcall.h>
David Howellsae3a1972012-03-28 18:30:02 +010065#include <asm/switch_to.h>
Paul Mackerras512691d2012-10-15 01:15:41 +000066#include <asm/smp.h>
Paul Mackerras66feed62015-03-28 14:21:12 +110067#include <asm/dbell.h>
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +053068#include <asm/hmi.h>
Suresh Warrierc57875f2016-08-19 15:35:50 +100069#include <asm/pnv-pci.h>
Paul Mackerras7a840842016-11-16 22:25:20 +110070#include <asm/mmu.h>
Paul Mackerrasf7257582016-11-18 09:02:08 +110071#include <asm/opal.h>
72#include <asm/xics.h>
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +100073#include <asm/xive.h>
Michael Neulingc1fe1902019-04-01 17:03:12 +110074#include <asm/hw_breakpoint.h>
Bharata B Raoca9f4942019-11-25 08:36:26 +053075#include <asm/kvm_book3s_uvmem.h>
Bharata B Raoc3262252019-11-25 08:36:29 +053076#include <asm/ultravisor.h>
Peter Zijlstrad6bdceb2020-05-29 22:41:01 +020077#include <asm/dtl.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000078
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053079#include "book3s.h"
80
Suresh E. Warrier3c78f782014-12-03 18:48:10 -060081#define CREATE_TRACE_POINTS
82#include "trace_hv.h"
83
Paul Mackerrasde56a942011-06-29 00:21:34 +000084/* #define EXIT_DEBUG */
85/* #define EXIT_DEBUG_SIMPLE */
86/* #define EXIT_DEBUG_INT */
87
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000088/* Used to indicate that a guest page fault needs to be handled */
89#define RESUME_PAGE_FAULT (RESUME_GUEST | RESUME_FLAG_ARCH1)
Suresh Warrierf7af5202016-08-19 15:35:52 +100090/* Used to indicate that a guest passthrough interrupt needs to be handled */
91#define RESUME_PASSTHROUGH (RESUME_GUEST | RESUME_FLAG_ARCH2)
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000092
Paul Mackerrasc7b67672012-10-15 01:18:07 +000093/* Used as a "null" value for timebase values */
94#define TB_NIL (~(u64)0)
95
Paul Mackerras699a0ea2014-06-02 11:02:59 +100096static DECLARE_BITMAP(default_enabled_hcalls, MAX_HCALL_OPCODE/4 + 1);
97
Paul Mackerrasb4deba52015-07-02 20:38:16 +100098static int dynamic_mt_modes = 6;
Russell Currey57ad583f2017-01-12 14:54:13 +110099module_param(dynamic_mt_modes, int, 0644);
Paul Mackerrasb4deba52015-07-02 20:38:16 +1000100MODULE_PARM_DESC(dynamic_mt_modes, "Set of allowed dynamic micro-threading modes: 0 (= none), 2, 4, or 6 (= 2 or 4)");
Paul Mackerrasec257162015-06-24 21:18:03 +1000101static int target_smt_mode;
Russell Currey57ad583f2017-01-12 14:54:13 +1100102module_param(target_smt_mode, int, 0644);
Paul Mackerrasec257162015-06-24 21:18:03 +1000103MODULE_PARM_DESC(target_smt_mode, "Target threads per core (0 = max)");
Stewart Smith9678cda2014-07-18 14:18:43 +1000104
Paul Mackerras516f7892017-10-16 16:11:57 +1100105static bool indep_threads_mode = true;
106module_param(indep_threads_mode, bool, S_IRUGO | S_IWUSR);
107MODULE_PARM_DESC(indep_threads_mode, "Independent-threads mode (only on POWER9)");
108
Paul Mackerrasaa227862018-09-12 10:42:12 +1000109static bool one_vm_per_core;
110module_param(one_vm_per_core, bool, S_IRUGO | S_IWUSR);
111MODULE_PARM_DESC(one_vm_per_core, "Only run vCPUs from the same VM on a core (requires indep_threads_mode=N)");
112
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600113#ifdef CONFIG_KVM_XICS
114static struct kernel_param_ops module_param_ops = {
115 .set = param_set_int,
116 .get = param_get_int,
117};
118
Russell Currey57ad583f2017-01-12 14:54:13 +1100119module_param_cb(kvm_irq_bypass, &module_param_ops, &kvm_irq_bypass, 0644);
Suresh Warrier644abbb2016-08-19 15:35:54 +1000120MODULE_PARM_DESC(kvm_irq_bypass, "Bypass passthrough interrupt optimization");
121
Russell Currey57ad583f2017-01-12 14:54:13 +1100122module_param_cb(h_ipi_redirect, &module_param_ops, &h_ipi_redirect, 0644);
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600123MODULE_PARM_DESC(h_ipi_redirect, "Redirect H_IPI wakeup to a free host core");
124#endif
125
Paul Mackerrasaa069a92018-09-21 20:02:01 +1000126/* If set, guests are allowed to create and control nested guests */
127static bool nested = true;
128module_param(nested, bool, S_IRUGO | S_IWUSR);
129MODULE_PARM_DESC(nested, "Enable nested virtualization (only on POWER9)");
130
131static inline bool nesting_enabled(struct kvm *kvm)
132{
133 return kvm->arch.nested_enable && kvm_is_radix(kvm);
134}
135
Paul Mackerras00608e12018-01-11 16:54:26 +1100136/* If set, the threads on each CPU core have to be in the same MMU mode */
137static bool no_mixing_hpt_and_radix;
138
Paul Mackerras32fad282012-05-04 02:32:53 +0000139static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000140
Paul Mackerras7aa15842018-04-20 19:53:22 +1000141/*
142 * RWMR values for POWER8. These control the rate at which PURR
143 * and SPURR count and should be set according to the number of
144 * online threads in the vcore being run.
145 */
Nicholas Mc Guire0abb75b2018-07-07 11:07:25 +0200146#define RWMR_RPA_P8_1THREAD 0x164520C62609AECAUL
147#define RWMR_RPA_P8_2THREAD 0x7FFF2908450D8DA9UL
148#define RWMR_RPA_P8_3THREAD 0x164520C62609AECAUL
149#define RWMR_RPA_P8_4THREAD 0x199A421245058DA9UL
150#define RWMR_RPA_P8_5THREAD 0x164520C62609AECAUL
151#define RWMR_RPA_P8_6THREAD 0x164520C62609AECAUL
152#define RWMR_RPA_P8_7THREAD 0x164520C62609AECAUL
153#define RWMR_RPA_P8_8THREAD 0x164520C62609AECAUL
Paul Mackerras7aa15842018-04-20 19:53:22 +1000154
155static unsigned long p8_rwmr_values[MAX_SMT_THREADS + 1] = {
156 RWMR_RPA_P8_1THREAD,
157 RWMR_RPA_P8_1THREAD,
158 RWMR_RPA_P8_2THREAD,
159 RWMR_RPA_P8_3THREAD,
160 RWMR_RPA_P8_4THREAD,
161 RWMR_RPA_P8_5THREAD,
162 RWMR_RPA_P8_6THREAD,
163 RWMR_RPA_P8_7THREAD,
164 RWMR_RPA_P8_8THREAD,
165};
166
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +1000167static inline struct kvm_vcpu *next_runnable_thread(struct kvmppc_vcore *vc,
168 int *ip)
169{
170 int i = *ip;
171 struct kvm_vcpu *vcpu;
172
173 while (++i < MAX_SMT_THREADS) {
174 vcpu = READ_ONCE(vc->runnable_threads[i]);
175 if (vcpu) {
176 *ip = i;
177 return vcpu;
178 }
179 }
180 return NULL;
181}
182
183/* Used to traverse the list of runnable threads for a given vcore */
184#define for_each_runnable_thread(i, vcpu, vc) \
185 for (i = -1; (vcpu = next_runnable_thread(vc, &i)); )
186
Paul Mackerras66feed62015-03-28 14:21:12 +1100187static bool kvmppc_ipi_thread(int cpu)
188{
Paul Mackerras1704a812016-11-18 08:47:08 +1100189 unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER);
190
Paul Mackerrasf3c18e92018-10-08 16:31:05 +1100191 /* If we're a nested hypervisor, fall back to ordinary IPIs for now */
192 if (kvmhv_on_pseries())
193 return false;
194
Paul Mackerras1704a812016-11-18 08:47:08 +1100195 /* On POWER9 we can use msgsnd to IPI any cpu */
196 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
197 msg |= get_hard_smp_processor_id(cpu);
198 smp_mb();
199 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
200 return true;
201 }
202
Paul Mackerras66feed62015-03-28 14:21:12 +1100203 /* On POWER8 for IPIs to threads in the same core, use msgsnd */
204 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
205 preempt_disable();
206 if (cpu_first_thread_sibling(cpu) ==
207 cpu_first_thread_sibling(smp_processor_id())) {
Paul Mackerras66feed62015-03-28 14:21:12 +1100208 msg |= cpu_thread_in_core(cpu);
209 smp_mb();
210 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
211 preempt_enable();
212 return true;
213 }
214 preempt_enable();
215 }
216
217#if defined(CONFIG_PPC_ICP_NATIVE) && defined(CONFIG_SMP)
Paul Mackerrasf7257582016-11-18 09:02:08 +1100218 if (cpu >= 0 && cpu < nr_cpu_ids) {
Nicholas Piggind2e60072018-02-14 01:08:12 +1000219 if (paca_ptrs[cpu]->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +1100220 xics_wake_cpu(cpu);
221 return true;
222 }
223 opal_int_set_mfrr(get_hard_smp_processor_id(cpu), IPI_PRIORITY);
Paul Mackerras66feed62015-03-28 14:21:12 +1100224 return true;
225 }
226#endif
227
228 return false;
229}
230
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530231static void kvmppc_fast_vcpu_kick_hv(struct kvm_vcpu *vcpu)
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000232{
Paul Mackerrasec257162015-06-24 21:18:03 +1000233 int cpu;
Davidlohr Buesoda4ad882020-04-23 22:48:37 -0700234 struct rcuwait *waitp;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000235
Davidlohr Buesoda4ad882020-04-23 22:48:37 -0700236 waitp = kvm_arch_vcpu_get_wait(vcpu);
237 if (rcuwait_wake_up(waitp))
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000238 ++vcpu->stat.halt_wakeup;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000239
Paul Mackerras3deda5e2016-12-20 14:02:29 +1100240 cpu = READ_ONCE(vcpu->arch.thread_cpu);
241 if (cpu >= 0 && kvmppc_ipi_thread(cpu))
Paul Mackerras66feed62015-03-28 14:21:12 +1100242 return;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000243
244 /* CPU points to the first thread of the core */
Paul Mackerrasec257162015-06-24 21:18:03 +1000245 cpu = vcpu->cpu;
Paul Mackerras66feed62015-03-28 14:21:12 +1100246 if (cpu >= 0 && cpu < nr_cpu_ids && cpu_online(cpu))
247 smp_send_reschedule(cpu);
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000248}
249
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000250/*
251 * We use the vcpu_load/put functions to measure stolen time.
252 * Stolen time is counted as time when either the vcpu is able to
253 * run as part of a virtual core, but the task running the vcore
254 * is preempted or sleeping, or when the vcpu needs something done
255 * in the kernel by the task running the vcpu, but that task is
256 * preempted or sleeping. Those two things have to be counted
257 * separately, since one of the vcpu tasks will take on the job
258 * of running the core, and the other vcpu tasks in the vcore will
259 * sleep waiting for it to do that, but that sleep shouldn't count
260 * as stolen time.
261 *
262 * Hence we accumulate stolen time when the vcpu can run as part of
263 * a vcore using vc->stolen_tb, and the stolen time when the vcpu
264 * needs its task to do other things in the kernel (for example,
265 * service a page fault) in busy_stolen. We don't accumulate
266 * stolen time for a vcore when it is inactive, or for a vcpu
267 * when it is in state RUNNING or NOTREADY. NOTREADY is a bit of
268 * a misnomer; it means that the vcpu task is not executing in
269 * the KVM_VCPU_RUN ioctl, i.e. it is in userspace or elsewhere in
270 * the kernel. We don't have any way of dividing up that time
271 * between time that the vcpu is genuinely stopped, time that
272 * the task is actively working on behalf of the vcpu, and time
273 * that the task is preempted, so we don't count any of it as
274 * stolen.
275 *
276 * Updates to busy_stolen are protected by arch.tbacct_lock;
Paul Mackerras2711e242014-12-04 16:43:28 +1100277 * updates to vc->stolen_tb are protected by the vcore->stoltb_lock
278 * lock. The stolen times are measured in units of timebase ticks.
279 * (Note that the != TB_NIL checks below are purely defensive;
280 * they should never fail.)
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000281 */
282
Paul Mackerrasec257162015-06-24 21:18:03 +1000283static void kvmppc_core_start_stolen(struct kvmppc_vcore *vc)
284{
285 unsigned long flags;
286
287 spin_lock_irqsave(&vc->stoltb_lock, flags);
288 vc->preempt_tb = mftb();
289 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
290}
291
292static void kvmppc_core_end_stolen(struct kvmppc_vcore *vc)
293{
294 unsigned long flags;
295
296 spin_lock_irqsave(&vc->stoltb_lock, flags);
297 if (vc->preempt_tb != TB_NIL) {
298 vc->stolen_tb += mftb() - vc->preempt_tb;
299 vc->preempt_tb = TB_NIL;
300 }
301 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
302}
303
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530304static void kvmppc_core_vcpu_load_hv(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000305{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000306 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100307 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000308
Paul Mackerras2711e242014-12-04 16:43:28 +1100309 /*
310 * We can test vc->runner without taking the vcore lock,
311 * because only this task ever sets vc->runner to this
312 * vcpu, and once it is set to this vcpu, only this task
313 * ever sets it to NULL.
314 */
Paul Mackerrasec257162015-06-24 21:18:03 +1000315 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
316 kvmppc_core_end_stolen(vc);
317
Paul Mackerras2711e242014-12-04 16:43:28 +1100318 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000319 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST &&
320 vcpu->arch.busy_preempt != TB_NIL) {
321 vcpu->arch.busy_stolen += mftb() - vcpu->arch.busy_preempt;
322 vcpu->arch.busy_preempt = TB_NIL;
323 }
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100324 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000325}
326
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530327static void kvmppc_core_vcpu_put_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000328{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000329 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100330 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000331
Paul Mackerrasec257162015-06-24 21:18:03 +1000332 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
333 kvmppc_core_start_stolen(vc);
334
Paul Mackerras2711e242014-12-04 16:43:28 +1100335 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000336 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST)
337 vcpu->arch.busy_preempt = mftb();
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100338 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000339}
340
Thomas Huth5358a962015-05-22 09:25:02 +0200341static void kvmppc_set_pvr_hv(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000342{
343 vcpu->arch.pvr = pvr;
344}
345
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000346/* Dummy value used in computing PCR value below */
347#define PCR_ARCH_31 (PCR_ARCH_300 << 1)
348
Thomas Huth5358a962015-05-22 09:25:02 +0200349static int kvmppc_set_arch_compat(struct kvm_vcpu *vcpu, u32 arch_compat)
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000350{
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100351 unsigned long host_pcr_bit = 0, guest_pcr_bit = 0;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000352 struct kvmppc_vcore *vc = vcpu->arch.vcore;
353
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100354 /* We can (emulate) our own architecture version and anything older */
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000355 if (cpu_has_feature(CPU_FTR_ARCH_31))
356 host_pcr_bit = PCR_ARCH_31;
357 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100358 host_pcr_bit = PCR_ARCH_300;
359 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
360 host_pcr_bit = PCR_ARCH_207;
361 else if (cpu_has_feature(CPU_FTR_ARCH_206))
362 host_pcr_bit = PCR_ARCH_206;
363 else
364 host_pcr_bit = PCR_ARCH_205;
365
366 /* Determine lowest PCR bit needed to run guest in given PVR level */
367 guest_pcr_bit = host_pcr_bit;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000368 if (arch_compat) {
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000369 switch (arch_compat) {
370 case PVR_ARCH_205:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100371 guest_pcr_bit = PCR_ARCH_205;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000372 break;
373 case PVR_ARCH_206:
374 case PVR_ARCH_206p:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100375 guest_pcr_bit = PCR_ARCH_206;
Paul Mackerras5557ae02014-01-08 21:25:24 +1100376 break;
377 case PVR_ARCH_207:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100378 guest_pcr_bit = PCR_ARCH_207;
379 break;
380 case PVR_ARCH_300:
381 guest_pcr_bit = PCR_ARCH_300;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000382 break;
Alistair Popple4cb4ade2020-06-02 15:53:25 +1000383 case PVR_ARCH_31:
384 guest_pcr_bit = PCR_ARCH_31;
385 break;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000386 default:
387 return -EINVAL;
388 }
389 }
390
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100391 /* Check requested PCR bits don't exceed our capabilities */
392 if (guest_pcr_bit > host_pcr_bit)
393 return -EINVAL;
394
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000395 spin_lock(&vc->lock);
396 vc->arch_compat = arch_compat;
Jordan Niethe13c7bb32019-09-17 10:46:05 +1000397 /*
398 * Set all PCR bits for which guest_pcr_bit <= bit < host_pcr_bit
399 * Also set all reserved PCR bits
400 */
401 vc->pcr = (host_pcr_bit - guest_pcr_bit) | PCR_MASK;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000402 spin_unlock(&vc->lock);
403
404 return 0;
405}
406
Thomas Huth5358a962015-05-22 09:25:02 +0200407static void kvmppc_dump_regs(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000408{
409 int r;
410
411 pr_err("vcpu %p (%d):\n", vcpu, vcpu->vcpu_id);
412 pr_err("pc = %.16lx msr = %.16llx trap = %x\n",
Simon Guo173c5202018-05-07 14:20:08 +0800413 vcpu->arch.regs.nip, vcpu->arch.shregs.msr, vcpu->arch.trap);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000414 for (r = 0; r < 16; ++r)
415 pr_err("r%2d = %.16lx r%d = %.16lx\n",
416 r, kvmppc_get_gpr(vcpu, r),
417 r+16, kvmppc_get_gpr(vcpu, r+16));
418 pr_err("ctr = %.16lx lr = %.16lx\n",
Simon Guo173c5202018-05-07 14:20:08 +0800419 vcpu->arch.regs.ctr, vcpu->arch.regs.link);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000420 pr_err("srr0 = %.16llx srr1 = %.16llx\n",
421 vcpu->arch.shregs.srr0, vcpu->arch.shregs.srr1);
422 pr_err("sprg0 = %.16llx sprg1 = %.16llx\n",
423 vcpu->arch.shregs.sprg0, vcpu->arch.shregs.sprg1);
424 pr_err("sprg2 = %.16llx sprg3 = %.16llx\n",
425 vcpu->arch.shregs.sprg2, vcpu->arch.shregs.sprg3);
Paul Mackerrasfd0944b2018-10-08 16:30:58 +1100426 pr_err("cr = %.8lx xer = %.16lx dsisr = %.8x\n",
427 vcpu->arch.regs.ccr, vcpu->arch.regs.xer, vcpu->arch.shregs.dsisr);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000428 pr_err("dar = %.16llx\n", vcpu->arch.shregs.dar);
429 pr_err("fault dar = %.16lx dsisr = %.8x\n",
430 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
431 pr_err("SLB (%d entries):\n", vcpu->arch.slb_max);
432 for (r = 0; r < vcpu->arch.slb_max; ++r)
433 pr_err(" ESID = %.16llx VSID = %.16llx\n",
434 vcpu->arch.slb[r].orige, vcpu->arch.slb[r].origv);
435 pr_err("lpcr = %.16lx sdr1 = %.16lx last_inst = %.8x\n",
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000436 vcpu->arch.vcore->lpcr, vcpu->kvm->arch.sdr1,
Paul Mackerrasde56a942011-06-29 00:21:34 +0000437 vcpu->arch.last_inst);
438}
439
Thomas Huth5358a962015-05-22 09:25:02 +0200440static struct kvm_vcpu *kvmppc_find_vcpu(struct kvm *kvm, int id)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000441{
Paul Mackerras5a3f4932019-05-23 16:36:32 +1000442 return kvm_get_vcpu_by_id(kvm, id);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000443}
444
445static void init_vpa(struct kvm_vcpu *vcpu, struct lppaca *vpa)
446{
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000447 vpa->__old_status |= LPPACA_OLD_SHARED_PROC;
Alexander Graf02407552014-06-11 10:34:19 +0200448 vpa->yield_count = cpu_to_be32(1);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000449}
450
Paul Mackerras55b665b2012-09-25 20:33:06 +0000451static int set_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *v,
452 unsigned long addr, unsigned long len)
453{
454 /* check address is cacheline aligned */
455 if (addr & (L1_CACHE_BYTES - 1))
456 return -EINVAL;
457 spin_lock(&vcpu->arch.vpa_update_lock);
458 if (v->next_gpa != addr || v->len != len) {
459 v->next_gpa = addr;
460 v->len = addr ? len : 0;
461 v->update_pending = 1;
462 }
463 spin_unlock(&vcpu->arch.vpa_update_lock);
464 return 0;
465}
466
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000467/* Length for a per-processor buffer is passed in at offset 4 in the buffer */
468struct reg_vpa {
469 u32 dummy;
470 union {
Alexander Graf02407552014-06-11 10:34:19 +0200471 __be16 hword;
472 __be32 word;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000473 } length;
474};
475
476static int vpa_is_registered(struct kvmppc_vpa *vpap)
477{
478 if (vpap->update_pending)
479 return vpap->next_gpa != 0;
480 return vpap->pinned_addr != NULL;
481}
482
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000483static unsigned long do_h_register_vpa(struct kvm_vcpu *vcpu,
484 unsigned long flags,
485 unsigned long vcpuid, unsigned long vpa)
486{
487 struct kvm *kvm = vcpu->kvm;
Paul Mackerras93e60242011-12-12 12:28:55 +0000488 unsigned long len, nb;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000489 void *va;
490 struct kvm_vcpu *tvcpu;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000491 int err;
492 int subfunc;
493 struct kvmppc_vpa *vpap;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000494
495 tvcpu = kvmppc_find_vcpu(kvm, vcpuid);
496 if (!tvcpu)
497 return H_PARAMETER;
498
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000499 subfunc = (flags >> H_VPA_FUNC_SHIFT) & H_VPA_FUNC_MASK;
500 if (subfunc == H_VPA_REG_VPA || subfunc == H_VPA_REG_DTL ||
501 subfunc == H_VPA_REG_SLB) {
502 /* Registering new area - address must be cache-line aligned */
503 if ((vpa & (L1_CACHE_BYTES - 1)) || !vpa)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000504 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000505
506 /* convert logical addr to kernel addr and read length */
Paul Mackerras93e60242011-12-12 12:28:55 +0000507 va = kvmppc_pin_guest_page(kvm, vpa, &nb);
508 if (va == NULL)
Paul Mackerrasb2b2f162011-12-12 12:28:21 +0000509 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000510 if (subfunc == H_VPA_REG_VPA)
Alexander Graf02407552014-06-11 10:34:19 +0200511 len = be16_to_cpu(((struct reg_vpa *)va)->length.hword);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000512 else
Alexander Graf02407552014-06-11 10:34:19 +0200513 len = be32_to_cpu(((struct reg_vpa *)va)->length.word);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000514 kvmppc_unpin_guest_page(kvm, va, vpa, false);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000515
516 /* Check length */
517 if (len > nb || len < sizeof(struct reg_vpa))
518 return H_PARAMETER;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000519 } else {
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000520 vpa = 0;
521 len = 0;
522 }
523
524 err = H_PARAMETER;
525 vpap = NULL;
526 spin_lock(&tvcpu->arch.vpa_update_lock);
527
528 switch (subfunc) {
529 case H_VPA_REG_VPA: /* register VPA */
Nicholas Piggineaac112e2017-08-13 11:33:38 +1000530 /*
531 * The size of our lppaca is 1kB because of the way we align
532 * it for the guest to avoid crossing a 4kB boundary. We only
533 * use 640 bytes of the structure though, so we should accept
534 * clients that set a size of 640.
535 */
Nicholas Piggin499dcd42018-02-14 01:08:13 +1000536 BUILD_BUG_ON(sizeof(struct lppaca) != 640);
537 if (len < sizeof(struct lppaca))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000538 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000539 vpap = &tvcpu->arch.vpa;
540 err = 0;
541 break;
542
543 case H_VPA_REG_DTL: /* register DTL */
544 if (len < sizeof(struct dtl_entry))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000545 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000546 len -= len % sizeof(struct dtl_entry);
547
548 /* Check that they have previously registered a VPA */
549 err = H_RESOURCE;
550 if (!vpa_is_registered(&tvcpu->arch.vpa))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000551 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000552
553 vpap = &tvcpu->arch.dtl;
554 err = 0;
555 break;
556
557 case H_VPA_REG_SLB: /* register SLB shadow buffer */
558 /* Check that they have previously registered a VPA */
559 err = H_RESOURCE;
560 if (!vpa_is_registered(&tvcpu->arch.vpa))
561 break;
562
563 vpap = &tvcpu->arch.slb_shadow;
564 err = 0;
565 break;
566
567 case H_VPA_DEREG_VPA: /* deregister VPA */
568 /* Check they don't still have a DTL or SLB buf registered */
569 err = H_RESOURCE;
570 if (vpa_is_registered(&tvcpu->arch.dtl) ||
571 vpa_is_registered(&tvcpu->arch.slb_shadow))
572 break;
573
574 vpap = &tvcpu->arch.vpa;
575 err = 0;
576 break;
577
578 case H_VPA_DEREG_DTL: /* deregister DTL */
579 vpap = &tvcpu->arch.dtl;
580 err = 0;
581 break;
582
583 case H_VPA_DEREG_SLB: /* deregister SLB shadow buffer */
584 vpap = &tvcpu->arch.slb_shadow;
585 err = 0;
586 break;
587 }
588
589 if (vpap) {
590 vpap->next_gpa = vpa;
591 vpap->len = len;
592 vpap->update_pending = 1;
593 }
594
595 spin_unlock(&tvcpu->arch.vpa_update_lock);
596
597 return err;
598}
599
Paul Mackerras081f3232012-06-01 20:20:24 +1000600static void kvmppc_update_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *vpap)
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000601{
Paul Mackerras081f3232012-06-01 20:20:24 +1000602 struct kvm *kvm = vcpu->kvm;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000603 void *va;
604 unsigned long nb;
Paul Mackerras081f3232012-06-01 20:20:24 +1000605 unsigned long gpa;
606
607 /*
608 * We need to pin the page pointed to by vpap->next_gpa,
609 * but we can't call kvmppc_pin_guest_page under the lock
610 * as it does get_user_pages() and down_read(). So we
611 * have to drop the lock, pin the page, then get the lock
612 * again and check that a new area didn't get registered
613 * in the meantime.
614 */
615 for (;;) {
616 gpa = vpap->next_gpa;
617 spin_unlock(&vcpu->arch.vpa_update_lock);
618 va = NULL;
619 nb = 0;
620 if (gpa)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000621 va = kvmppc_pin_guest_page(kvm, gpa, &nb);
Paul Mackerras081f3232012-06-01 20:20:24 +1000622 spin_lock(&vcpu->arch.vpa_update_lock);
623 if (gpa == vpap->next_gpa)
624 break;
625 /* sigh... unpin that one and try again */
626 if (va)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000627 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000628 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000629
630 vpap->update_pending = 0;
Paul Mackerras081f3232012-06-01 20:20:24 +1000631 if (va && nb < vpap->len) {
632 /*
633 * If it's now too short, it must be that userspace
634 * has changed the mappings underlying guest memory,
635 * so unregister the region.
636 */
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000637 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000638 va = NULL;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000639 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000640 if (vpap->pinned_addr)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000641 kvmppc_unpin_guest_page(kvm, vpap->pinned_addr, vpap->gpa,
642 vpap->dirty);
643 vpap->gpa = gpa;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000644 vpap->pinned_addr = va;
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000645 vpap->dirty = false;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000646 if (va)
647 vpap->pinned_end = va + vpap->len;
648}
Paul Mackerras93e60242011-12-12 12:28:55 +0000649
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000650static void kvmppc_update_vpas(struct kvm_vcpu *vcpu)
651{
Paul Mackerras2f12f032012-10-15 01:17:17 +0000652 if (!(vcpu->arch.vpa.update_pending ||
653 vcpu->arch.slb_shadow.update_pending ||
654 vcpu->arch.dtl.update_pending))
655 return;
656
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000657 spin_lock(&vcpu->arch.vpa_update_lock);
658 if (vcpu->arch.vpa.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000659 kvmppc_update_vpa(vcpu, &vcpu->arch.vpa);
Paul Mackerras55b665b2012-09-25 20:33:06 +0000660 if (vcpu->arch.vpa.pinned_addr)
661 init_vpa(vcpu, vcpu->arch.vpa.pinned_addr);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000662 }
663 if (vcpu->arch.dtl.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000664 kvmppc_update_vpa(vcpu, &vcpu->arch.dtl);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000665 vcpu->arch.dtl_ptr = vcpu->arch.dtl.pinned_addr;
666 vcpu->arch.dtl_index = 0;
667 }
668 if (vcpu->arch.slb_shadow.update_pending)
Paul Mackerras081f3232012-06-01 20:20:24 +1000669 kvmppc_update_vpa(vcpu, &vcpu->arch.slb_shadow);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000670 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000671}
672
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000673/*
674 * Return the accumulated stolen time for the vcore up until `now'.
675 * The caller should hold the vcore lock.
676 */
677static u64 vcore_stolen_time(struct kvmppc_vcore *vc, u64 now)
678{
679 u64 p;
Paul Mackerras2711e242014-12-04 16:43:28 +1100680 unsigned long flags;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000681
Paul Mackerras2711e242014-12-04 16:43:28 +1100682 spin_lock_irqsave(&vc->stoltb_lock, flags);
683 p = vc->stolen_tb;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000684 if (vc->vcore_state != VCORE_INACTIVE &&
Paul Mackerras2711e242014-12-04 16:43:28 +1100685 vc->preempt_tb != TB_NIL)
686 p += now - vc->preempt_tb;
687 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000688 return p;
689}
690
Paul Mackerras0456ec42012-02-03 00:56:21 +0000691static void kvmppc_create_dtl_entry(struct kvm_vcpu *vcpu,
692 struct kvmppc_vcore *vc)
693{
694 struct dtl_entry *dt;
695 struct lppaca *vpa;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000696 unsigned long stolen;
697 unsigned long core_stolen;
698 u64 now;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000699 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000700
701 dt = vcpu->arch.dtl_ptr;
702 vpa = vcpu->arch.vpa.pinned_addr;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000703 now = mftb();
704 core_stolen = vcore_stolen_time(vc, now);
705 stolen = core_stolen - vcpu->arch.stolen_logged;
706 vcpu->arch.stolen_logged = core_stolen;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000707 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000708 stolen += vcpu->arch.busy_stolen;
709 vcpu->arch.busy_stolen = 0;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000710 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000711 if (!dt || !vpa)
712 return;
713 memset(dt, 0, sizeof(struct dtl_entry));
714 dt->dispatch_reason = 7;
Alexander Graf02407552014-06-11 10:34:19 +0200715 dt->processor_id = cpu_to_be16(vc->pcpu + vcpu->arch.ptid);
716 dt->timebase = cpu_to_be64(now + vc->tb_offset);
717 dt->enqueue_to_dispatch_time = cpu_to_be32(stolen);
718 dt->srr0 = cpu_to_be64(kvmppc_get_pc(vcpu));
719 dt->srr1 = cpu_to_be64(vcpu->arch.shregs.msr);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000720 ++dt;
721 if (dt == vcpu->arch.dtl.pinned_end)
722 dt = vcpu->arch.dtl.pinned_addr;
723 vcpu->arch.dtl_ptr = dt;
724 /* order writing *dt vs. writing vpa->dtl_idx */
725 smp_wmb();
Alexander Graf02407552014-06-11 10:34:19 +0200726 vpa->dtl_idx = cpu_to_be64(++vcpu->arch.dtl_index);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000727 vcpu->arch.dtl.dirty = true;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000728}
729
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000730/* See if there is a doorbell interrupt pending for a vcpu */
731static bool kvmppc_doorbell_pending(struct kvm_vcpu *vcpu)
732{
733 int thr;
734 struct kvmppc_vcore *vc;
735
Paul Mackerras57900692017-05-16 16:41:20 +1000736 if (vcpu->arch.doorbell_request)
737 return true;
738 /*
739 * Ensure that the read of vcore->dpdes comes after the read
740 * of vcpu->doorbell_request. This barrier matches the
Palmer Dabbelt6fabc9f2019-04-25 12:53:39 -0700741 * smp_wmb() in kvmppc_guest_entry_inject().
Paul Mackerras57900692017-05-16 16:41:20 +1000742 */
743 smp_rmb();
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000744 vc = vcpu->arch.vcore;
745 thr = vcpu->vcpu_id - vc->first_vcpuid;
746 return !!(vc->dpdes & (1 << thr));
747}
748
Michael Neuling96423822014-06-02 11:03:01 +1000749static bool kvmppc_power8_compatible(struct kvm_vcpu *vcpu)
750{
751 if (vcpu->arch.vcore->arch_compat >= PVR_ARCH_207)
752 return true;
753 if ((!vcpu->arch.vcore->arch_compat) &&
754 cpu_has_feature(CPU_FTR_ARCH_207S))
755 return true;
756 return false;
757}
758
759static int kvmppc_h_set_mode(struct kvm_vcpu *vcpu, unsigned long mflags,
760 unsigned long resource, unsigned long value1,
761 unsigned long value2)
762{
763 switch (resource) {
764 case H_SET_MODE_RESOURCE_SET_CIABR:
765 if (!kvmppc_power8_compatible(vcpu))
766 return H_P2;
767 if (value2)
768 return H_P4;
769 if (mflags)
770 return H_UNSUPPORTED_FLAG_START;
771 /* Guests can't breakpoint the hypervisor */
772 if ((value1 & CIABR_PRIV) == CIABR_PRIV_HYPER)
773 return H_P3;
774 vcpu->arch.ciabr = value1;
775 return H_SUCCESS;
Ravi Bangoria6f3fe292020-07-23 14:38:10 +0530776 case H_SET_MODE_RESOURCE_SET_DAWR0:
Michael Neuling96423822014-06-02 11:03:01 +1000777 if (!kvmppc_power8_compatible(vcpu))
778 return H_P2;
Michael Neuling398e7122018-03-27 15:37:20 +1100779 if (!ppc_breakpoint_available())
780 return H_P2;
Michael Neuling96423822014-06-02 11:03:01 +1000781 if (mflags)
782 return H_UNSUPPORTED_FLAG_START;
783 if (value2 & DABRX_HYP)
784 return H_P4;
785 vcpu->arch.dawr = value1;
786 vcpu->arch.dawrx = value2;
787 return H_SUCCESS;
Nicholas Piggin55d70042019-10-02 16:00:25 +1000788 case H_SET_MODE_RESOURCE_ADDR_TRANS_MODE:
789 /* KVM does not support mflags=2 (AIL=2) */
790 if (mflags != 0 && mflags != 3)
791 return H_UNSUPPORTED_FLAG_START;
792 return H_TOO_HARD;
Michael Neuling96423822014-06-02 11:03:01 +1000793 default:
794 return H_TOO_HARD;
795 }
796}
797
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +1100798/* Copy guest memory in place - must reside within a single memslot */
799static int kvmppc_copy_guest(struct kvm *kvm, gpa_t to, gpa_t from,
800 unsigned long len)
801{
802 struct kvm_memory_slot *to_memslot = NULL;
803 struct kvm_memory_slot *from_memslot = NULL;
804 unsigned long to_addr, from_addr;
805 int r;
806
807 /* Get HPA for from address */
808 from_memslot = gfn_to_memslot(kvm, from >> PAGE_SHIFT);
809 if (!from_memslot)
810 return -EFAULT;
811 if ((from + len) >= ((from_memslot->base_gfn + from_memslot->npages)
812 << PAGE_SHIFT))
813 return -EINVAL;
814 from_addr = gfn_to_hva_memslot(from_memslot, from >> PAGE_SHIFT);
815 if (kvm_is_error_hva(from_addr))
816 return -EFAULT;
817 from_addr |= (from & (PAGE_SIZE - 1));
818
819 /* Get HPA for to address */
820 to_memslot = gfn_to_memslot(kvm, to >> PAGE_SHIFT);
821 if (!to_memslot)
822 return -EFAULT;
823 if ((to + len) >= ((to_memslot->base_gfn + to_memslot->npages)
824 << PAGE_SHIFT))
825 return -EINVAL;
826 to_addr = gfn_to_hva_memslot(to_memslot, to >> PAGE_SHIFT);
827 if (kvm_is_error_hva(to_addr))
828 return -EFAULT;
829 to_addr |= (to & (PAGE_SIZE - 1));
830
831 /* Perform copy */
832 r = raw_copy_in_user((void __user *)to_addr, (void __user *)from_addr,
833 len);
834 if (r)
835 return -EFAULT;
836 mark_page_dirty(kvm, to >> PAGE_SHIFT);
837 return 0;
838}
839
840static long kvmppc_h_page_init(struct kvm_vcpu *vcpu, unsigned long flags,
841 unsigned long dest, unsigned long src)
842{
843 u64 pg_sz = SZ_4K; /* 4K page size */
844 u64 pg_mask = SZ_4K - 1;
845 int ret;
846
847 /* Check for invalid flags (H_PAGE_SET_LOANED covers all CMO flags) */
848 if (flags & ~(H_ICACHE_INVALIDATE | H_ICACHE_SYNCHRONIZE |
849 H_ZERO_PAGE | H_COPY_PAGE | H_PAGE_SET_LOANED))
850 return H_PARAMETER;
851
852 /* dest (and src if copy_page flag set) must be page aligned */
853 if ((dest & pg_mask) || ((flags & H_COPY_PAGE) && (src & pg_mask)))
854 return H_PARAMETER;
855
856 /* zero and/or copy the page as determined by the flags */
857 if (flags & H_COPY_PAGE) {
858 ret = kvmppc_copy_guest(vcpu->kvm, dest, src, pg_sz);
859 if (ret < 0)
860 return H_PARAMETER;
861 } else if (flags & H_ZERO_PAGE) {
862 ret = kvm_clear_guest(vcpu->kvm, dest, pg_sz);
863 if (ret < 0)
864 return H_PARAMETER;
865 }
866
867 /* We can ignore the remaining flags */
868
869 return H_SUCCESS;
870}
871
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100872static int kvm_arch_vcpu_yield_to(struct kvm_vcpu *target)
873{
874 struct kvmppc_vcore *vcore = target->arch.vcore;
875
876 /*
877 * We expect to have been called by the real mode handler
878 * (kvmppc_rm_h_confer()) which would have directly returned
879 * H_SUCCESS if the source vcore wasn't idle (e.g. if it may
880 * have useful work to do and should not confer) so we don't
881 * recheck that here.
882 */
883
884 spin_lock(&vcore->lock);
885 if (target->arch.state == KVMPPC_VCPU_RUNNABLE &&
Paul Mackerrasec257162015-06-24 21:18:03 +1000886 vcore->vcore_state != VCORE_INACTIVE &&
887 vcore->runner)
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100888 target = vcore->runner;
889 spin_unlock(&vcore->lock);
890
891 return kvm_vcpu_yield_to(target);
892}
893
894static int kvmppc_get_yield_count(struct kvm_vcpu *vcpu)
895{
896 int yield_count = 0;
897 struct lppaca *lppaca;
898
899 spin_lock(&vcpu->arch.vpa_update_lock);
900 lppaca = (struct lppaca *)vcpu->arch.vpa.pinned_addr;
901 if (lppaca)
Paul Mackerrasecb6d612015-03-20 20:39:39 +1100902 yield_count = be32_to_cpu(lppaca->yield_count);
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100903 spin_unlock(&vcpu->arch.vpa_update_lock);
904 return yield_count;
905}
906
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000907int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
908{
909 unsigned long req = kvmppc_get_gpr(vcpu, 3);
910 unsigned long target, ret = H_SUCCESS;
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100911 int yield_count;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000912 struct kvm_vcpu *tvcpu;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000913 int idx, rc;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000914
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000915 if (req <= MAX_HCALL_OPCODE &&
916 !test_bit(req/4, vcpu->kvm->arch.enabled_hcalls))
917 return RESUME_HOST;
918
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000919 switch (req) {
920 case H_CEDE:
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000921 break;
922 case H_PROD:
923 target = kvmppc_get_gpr(vcpu, 4);
924 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
925 if (!tvcpu) {
926 ret = H_PARAMETER;
927 break;
928 }
929 tvcpu->arch.prodded = 1;
930 smp_mb();
Paul Mackerras8464c882016-12-06 20:42:05 +1100931 if (tvcpu->arch.ceded)
932 kvmppc_fast_vcpu_kick_hv(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000933 break;
934 case H_CONFER:
Paul Mackerras42d76042013-09-06 13:23:21 +1000935 target = kvmppc_get_gpr(vcpu, 4);
936 if (target == -1)
937 break;
938 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
939 if (!tvcpu) {
940 ret = H_PARAMETER;
941 break;
942 }
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100943 yield_count = kvmppc_get_gpr(vcpu, 5);
944 if (kvmppc_get_yield_count(tvcpu) != yield_count)
945 break;
946 kvm_arch_vcpu_yield_to(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000947 break;
948 case H_REGISTER_VPA:
949 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
950 kvmppc_get_gpr(vcpu, 5),
951 kvmppc_get_gpr(vcpu, 6));
952 break;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000953 case H_RTAS:
954 if (list_empty(&vcpu->kvm->arch.rtas_tokens))
955 return RESUME_HOST;
956
Paul Mackerrasc9438092013-11-16 17:46:05 +1100957 idx = srcu_read_lock(&vcpu->kvm->srcu);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000958 rc = kvmppc_rtas_hcall(vcpu);
Paul Mackerrasc9438092013-11-16 17:46:05 +1100959 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000960
961 if (rc == -ENOENT)
962 return RESUME_HOST;
963 else if (rc == 0)
964 break;
965
966 /* Send the error out to userspace via KVM_RUN */
967 return rc;
David Gibson99342cf82015-02-05 11:53:25 +1100968 case H_LOGICAL_CI_LOAD:
969 ret = kvmppc_h_logical_ci_load(vcpu);
970 if (ret == H_TOO_HARD)
971 return RESUME_HOST;
972 break;
973 case H_LOGICAL_CI_STORE:
974 ret = kvmppc_h_logical_ci_store(vcpu);
975 if (ret == H_TOO_HARD)
976 return RESUME_HOST;
977 break;
Michael Neuling96423822014-06-02 11:03:01 +1000978 case H_SET_MODE:
979 ret = kvmppc_h_set_mode(vcpu, kvmppc_get_gpr(vcpu, 4),
980 kvmppc_get_gpr(vcpu, 5),
981 kvmppc_get_gpr(vcpu, 6),
982 kvmppc_get_gpr(vcpu, 7));
983 if (ret == H_TOO_HARD)
984 return RESUME_HOST;
985 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000986 case H_XIRR:
987 case H_CPPR:
988 case H_EOI:
989 case H_IPI:
Paul Mackerras8e44ddc2013-05-23 15:42:21 +0000990 case H_IPOLL:
991 case H_XIRR_X:
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000992 if (kvmppc_xics_enabled(vcpu)) {
Paul Mackerras03f95332019-02-04 22:07:20 +1100993 if (xics_on_xive()) {
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000994 ret = H_NOT_AVAILABLE;
995 return RESUME_GUEST;
996 }
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000997 ret = kvmppc_xics_hcall(vcpu, req);
998 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +1100999 }
1000 return RESUME_HOST;
Paul Mackerras4bad7772018-10-08 16:31:06 +11001001 case H_SET_DABR:
1002 ret = kvmppc_h_set_dabr(vcpu, kvmppc_get_gpr(vcpu, 4));
1003 break;
1004 case H_SET_XDABR:
1005 ret = kvmppc_h_set_xdabr(vcpu, kvmppc_get_gpr(vcpu, 4),
1006 kvmppc_get_gpr(vcpu, 5));
1007 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001008#ifdef CONFIG_SPAPR_TCE_IOMMU
Paul Mackerras4bad7772018-10-08 16:31:06 +11001009 case H_GET_TCE:
1010 ret = kvmppc_h_get_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1011 kvmppc_get_gpr(vcpu, 5));
1012 if (ret == H_TOO_HARD)
1013 return RESUME_HOST;
1014 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11001015 case H_PUT_TCE:
1016 ret = kvmppc_h_put_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1017 kvmppc_get_gpr(vcpu, 5),
1018 kvmppc_get_gpr(vcpu, 6));
1019 if (ret == H_TOO_HARD)
1020 return RESUME_HOST;
1021 break;
1022 case H_PUT_TCE_INDIRECT:
1023 ret = kvmppc_h_put_tce_indirect(vcpu, kvmppc_get_gpr(vcpu, 4),
1024 kvmppc_get_gpr(vcpu, 5),
1025 kvmppc_get_gpr(vcpu, 6),
1026 kvmppc_get_gpr(vcpu, 7));
1027 if (ret == H_TOO_HARD)
1028 return RESUME_HOST;
1029 break;
1030 case H_STUFF_TCE:
1031 ret = kvmppc_h_stuff_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
1032 kvmppc_get_gpr(vcpu, 5),
1033 kvmppc_get_gpr(vcpu, 6),
1034 kvmppc_get_gpr(vcpu, 7));
1035 if (ret == H_TOO_HARD)
1036 return RESUME_HOST;
1037 break;
Jordan Niethee40542a2019-02-21 14:28:48 +11001038#endif
Paul Mackerras4bad7772018-10-08 16:31:06 +11001039 case H_RANDOM:
1040 if (!powernv_get_random_long(&vcpu->arch.regs.gpr[4]))
1041 ret = H_HARDWARE;
1042 break;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001043
1044 case H_SET_PARTITION_TABLE:
1045 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001046 if (nesting_enabled(vcpu->kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001047 ret = kvmhv_set_partition_table(vcpu);
1048 break;
1049 case H_ENTER_NESTED:
1050 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001051 if (!nesting_enabled(vcpu->kvm))
Paul Mackerras360cae32018-10-08 16:31:04 +11001052 break;
1053 ret = kvmhv_enter_nested_guest(vcpu);
1054 if (ret == H_INTERRUPT) {
1055 kvmppc_set_gpr(vcpu, 3, 0);
Michael Roth6c08ec12018-11-08 21:27:23 -06001056 vcpu->arch.hcall_needed = 0;
Paul Mackerras360cae32018-10-08 16:31:04 +11001057 return -EINTR;
Suraj Jitindar Singh873db2c2018-12-14 16:29:08 +11001058 } else if (ret == H_TOO_HARD) {
1059 kvmppc_set_gpr(vcpu, 3, 0);
1060 vcpu->arch.hcall_needed = 0;
1061 return RESUME_HOST;
Paul Mackerras360cae32018-10-08 16:31:04 +11001062 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001063 break;
1064 case H_TLB_INVALIDATE:
1065 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +10001066 if (nesting_enabled(vcpu->kvm))
1067 ret = kvmhv_do_nested_tlbie(vcpu);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11001068 break;
Suraj Jitindar Singh6ff887b2018-12-14 16:29:09 +11001069 case H_COPY_TOFROM_GUEST:
1070 ret = H_FUNCTION;
1071 if (nesting_enabled(vcpu->kvm))
1072 ret = kvmhv_copy_tofrom_guest_nested(vcpu);
1073 break;
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001074 case H_PAGE_INIT:
1075 ret = kvmppc_h_page_init(vcpu, kvmppc_get_gpr(vcpu, 4),
1076 kvmppc_get_gpr(vcpu, 5),
1077 kvmppc_get_gpr(vcpu, 6));
1078 break;
Bharata B Raoca9f4942019-11-25 08:36:26 +05301079 case H_SVM_PAGE_IN:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001080 ret = H_UNSUPPORTED;
1081 if (kvmppc_get_srr1(vcpu) & MSR_S)
1082 ret = kvmppc_h_svm_page_in(vcpu->kvm,
1083 kvmppc_get_gpr(vcpu, 4),
1084 kvmppc_get_gpr(vcpu, 5),
1085 kvmppc_get_gpr(vcpu, 6));
Bharata B Raoca9f4942019-11-25 08:36:26 +05301086 break;
1087 case H_SVM_PAGE_OUT:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001088 ret = H_UNSUPPORTED;
1089 if (kvmppc_get_srr1(vcpu) & MSR_S)
1090 ret = kvmppc_h_svm_page_out(vcpu->kvm,
1091 kvmppc_get_gpr(vcpu, 4),
1092 kvmppc_get_gpr(vcpu, 5),
1093 kvmppc_get_gpr(vcpu, 6));
Bharata B Raoca9f4942019-11-25 08:36:26 +05301094 break;
1095 case H_SVM_INIT_START:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001096 ret = H_UNSUPPORTED;
1097 if (kvmppc_get_srr1(vcpu) & MSR_S)
1098 ret = kvmppc_h_svm_init_start(vcpu->kvm);
Bharata B Raoca9f4942019-11-25 08:36:26 +05301099 break;
1100 case H_SVM_INIT_DONE:
Laurent Dufour8c47b6ff2020-03-20 11:26:42 +01001101 ret = H_UNSUPPORTED;
1102 if (kvmppc_get_srr1(vcpu) & MSR_S)
1103 ret = kvmppc_h_svm_init_done(vcpu->kvm);
Bharata B Raoca9f4942019-11-25 08:36:26 +05301104 break;
Sukadev Bhattiprolu3a439702020-01-06 18:02:37 -08001105 case H_SVM_INIT_ABORT:
Laurent Dufoure3326ae2020-05-20 19:43:08 +02001106 /*
1107 * Even if that call is made by the Ultravisor, the SSR1 value
1108 * is the guest context one, with the secure bit clear as it has
1109 * not yet been secured. So we can't check it here.
1110 * Instead the kvm->arch.secure_guest flag is checked inside
1111 * kvmppc_h_svm_init_abort().
1112 */
1113 ret = kvmppc_h_svm_init_abort(vcpu->kvm);
Sukadev Bhattiprolu3a439702020-01-06 18:02:37 -08001114 break;
Bharata B Raoca9f4942019-11-25 08:36:26 +05301115
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001116 default:
1117 return RESUME_HOST;
1118 }
1119 kvmppc_set_gpr(vcpu, 3, ret);
1120 vcpu->arch.hcall_needed = 0;
1121 return RESUME_GUEST;
1122}
1123
Paul Mackerras4bad7772018-10-08 16:31:06 +11001124/*
1125 * Handle H_CEDE in the nested virtualization case where we haven't
1126 * called the real-mode hcall handlers in book3s_hv_rmhandlers.S.
1127 * This has to be done early, not in kvmppc_pseries_do_hcall(), so
1128 * that the cede logic in kvmppc_run_single_vcpu() works properly.
1129 */
1130static void kvmppc_nested_cede(struct kvm_vcpu *vcpu)
1131{
1132 vcpu->arch.shregs.msr |= MSR_EE;
1133 vcpu->arch.ceded = 1;
1134 smp_mb();
1135 if (vcpu->arch.prodded) {
1136 vcpu->arch.prodded = 0;
1137 smp_mb();
1138 vcpu->arch.ceded = 0;
1139 }
1140}
1141
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001142static int kvmppc_hcall_impl_hv(unsigned long cmd)
1143{
1144 switch (cmd) {
1145 case H_CEDE:
1146 case H_PROD:
1147 case H_CONFER:
1148 case H_REGISTER_VPA:
Michael Neuling96423822014-06-02 11:03:01 +10001149 case H_SET_MODE:
David Gibson99342cf82015-02-05 11:53:25 +11001150 case H_LOGICAL_CI_LOAD:
1151 case H_LOGICAL_CI_STORE:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001152#ifdef CONFIG_KVM_XICS
1153 case H_XIRR:
1154 case H_CPPR:
1155 case H_EOI:
1156 case H_IPI:
1157 case H_IPOLL:
1158 case H_XIRR_X:
1159#endif
Suraj Jitindar Singh2d34d1c2019-03-22 17:05:44 +11001160 case H_PAGE_INIT:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001161 return 1;
1162 }
1163
1164 /* See if it's in the real-mode table */
1165 return kvmppc_hcall_impl_hv_realmode(cmd);
1166}
1167
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001168static int kvmppc_emulate_debug_inst(struct kvm_vcpu *vcpu)
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301169{
1170 u32 last_inst;
1171
1172 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst) !=
1173 EMULATE_DONE) {
1174 /*
1175 * Fetch failed, so return to guest and
1176 * try executing it again.
1177 */
1178 return RESUME_GUEST;
1179 }
1180
1181 if (last_inst == KVMPPC_INST_SW_BREAKPOINT) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001182 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
1183 vcpu->run->debug.arch.address = kvmppc_get_pc(vcpu);
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301184 return RESUME_HOST;
1185 } else {
1186 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1187 return RESUME_GUEST;
1188 }
1189}
1190
Paul Mackerras57900692017-05-16 16:41:20 +10001191static void do_nothing(void *x)
1192{
1193}
1194
1195static unsigned long kvmppc_read_dpdes(struct kvm_vcpu *vcpu)
1196{
1197 int thr, cpu, pcpu, nthreads;
1198 struct kvm_vcpu *v;
1199 unsigned long dpdes;
1200
1201 nthreads = vcpu->kvm->arch.emul_smt_mode;
1202 dpdes = 0;
1203 cpu = vcpu->vcpu_id & ~(nthreads - 1);
1204 for (thr = 0; thr < nthreads; ++thr, ++cpu) {
1205 v = kvmppc_find_vcpu(vcpu->kvm, cpu);
1206 if (!v)
1207 continue;
1208 /*
1209 * If the vcpu is currently running on a physical cpu thread,
1210 * interrupt it in order to pull it out of the guest briefly,
1211 * which will update its vcore->dpdes value.
1212 */
1213 pcpu = READ_ONCE(v->cpu);
1214 if (pcpu >= 0)
1215 smp_call_function_single(pcpu, do_nothing, NULL, 1);
1216 if (kvmppc_doorbell_pending(v))
1217 dpdes |= 1 << thr;
1218 }
1219 return dpdes;
1220}
1221
1222/*
1223 * On POWER9, emulate doorbell-related instructions in order to
1224 * give the guest the illusion of running on a multi-threaded core.
1225 * The instructions emulated are msgsndp, msgclrp, mfspr TIR,
1226 * and mfspr DPDES.
1227 */
1228static int kvmppc_emulate_doorbell_instr(struct kvm_vcpu *vcpu)
1229{
1230 u32 inst, rb, thr;
1231 unsigned long arg;
1232 struct kvm *kvm = vcpu->kvm;
1233 struct kvm_vcpu *tvcpu;
1234
Paul Mackerras57900692017-05-16 16:41:20 +10001235 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &inst) != EMULATE_DONE)
1236 return RESUME_GUEST;
1237 if (get_op(inst) != 31)
1238 return EMULATE_FAIL;
1239 rb = get_rb(inst);
1240 thr = vcpu->vcpu_id & (kvm->arch.emul_smt_mode - 1);
1241 switch (get_xop(inst)) {
1242 case OP_31_XOP_MSGSNDP:
1243 arg = kvmppc_get_gpr(vcpu, rb);
1244 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1245 break;
1246 arg &= 0x3f;
1247 if (arg >= kvm->arch.emul_smt_mode)
1248 break;
1249 tvcpu = kvmppc_find_vcpu(kvm, vcpu->vcpu_id - thr + arg);
1250 if (!tvcpu)
1251 break;
1252 if (!tvcpu->arch.doorbell_request) {
1253 tvcpu->arch.doorbell_request = 1;
1254 kvmppc_fast_vcpu_kick_hv(tvcpu);
1255 }
1256 break;
1257 case OP_31_XOP_MSGCLRP:
1258 arg = kvmppc_get_gpr(vcpu, rb);
1259 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1260 break;
1261 vcpu->arch.vcore->dpdes = 0;
1262 vcpu->arch.doorbell_request = 0;
1263 break;
1264 case OP_31_XOP_MFSPR:
1265 switch (get_sprn(inst)) {
1266 case SPRN_TIR:
1267 arg = thr;
1268 break;
1269 case SPRN_DPDES:
1270 arg = kvmppc_read_dpdes(vcpu);
1271 break;
1272 default:
1273 return EMULATE_FAIL;
1274 }
1275 kvmppc_set_gpr(vcpu, get_rt(inst), arg);
1276 break;
1277 default:
1278 return EMULATE_FAIL;
1279 }
1280 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
1281 return RESUME_GUEST;
1282}
1283
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001284static int kvmppc_handle_exit_hv(struct kvm_vcpu *vcpu,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301285 struct task_struct *tsk)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001286{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001287 struct kvm_run *run = vcpu->run;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001288 int r = RESUME_HOST;
1289
1290 vcpu->stat.sum_exits++;
1291
Paul Mackerras1c9e3d52015-11-12 16:43:48 +11001292 /*
1293 * This can happen if an interrupt occurs in the last stages
1294 * of guest entry or the first stages of guest exit (i.e. after
1295 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1296 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1297 * That can happen due to a bug, or due to a machine check
1298 * occurring at just the wrong time.
1299 */
1300 if (vcpu->arch.shregs.msr & MSR_HV) {
1301 printk(KERN_EMERG "KVM trap in HV mode!\n");
1302 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1303 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1304 vcpu->arch.shregs.msr);
1305 kvmppc_dump_regs(vcpu);
1306 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1307 run->hw.hardware_exit_reason = vcpu->arch.trap;
1308 return RESUME_HOST;
1309 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001310 run->exit_reason = KVM_EXIT_UNKNOWN;
1311 run->ready_for_interrupt_injection = 1;
1312 switch (vcpu->arch.trap) {
1313 /* We're good on these - the host merely wanted to get our attention */
1314 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1315 vcpu->stat.dec_exits++;
1316 r = RESUME_GUEST;
1317 break;
1318 case BOOK3S_INTERRUPT_EXTERNAL:
Paul Mackerras5d00f662014-01-08 21:25:28 +11001319 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerras84f71392016-11-22 14:30:14 +11001320 case BOOK3S_INTERRUPT_H_VIRT:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001321 vcpu->stat.ext_intr_exits++;
1322 r = RESUME_GUEST;
1323 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11001324 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
Mahesh Salgaonkardee6f242014-11-03 15:51:57 +11001325 case BOOK3S_INTERRUPT_HMI:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001326 case BOOK3S_INTERRUPT_PERFMON:
Nicholas Piggin6de66382017-11-05 23:33:55 +11001327 case BOOK3S_INTERRUPT_SYSTEM_RESET:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001328 r = RESUME_GUEST;
1329 break;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001330 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Paul Mackerras884dfb72019-02-21 13:38:49 +11001331 /* Print the MCE event to host console. */
Paul Mackerrasc0577202019-02-21 13:40:20 +11001332 machine_check_print_event_info(&vcpu->arch.mce_evt, false, true);
Paul Mackerras884dfb72019-02-21 13:38:49 +11001333
1334 /*
1335 * If the guest can do FWNMI, exit to userspace so it can
1336 * deliver a FWNMI to the guest.
1337 * Otherwise we synthesize a machine check for the guest
1338 * so that it knows that the machine check occurred.
1339 */
1340 if (!vcpu->kvm->arch.fwnmi_enabled) {
1341 ulong flags = vcpu->arch.shregs.msr & 0x083c0000;
1342 kvmppc_core_queue_machine_check(vcpu, flags);
1343 r = RESUME_GUEST;
1344 break;
1345 }
1346
Aravinda Prasade20bbd32017-05-11 16:33:37 +05301347 /* Exit to guest with KVM_EXIT_NMI as exit reason */
1348 run->exit_reason = KVM_EXIT_NMI;
1349 run->hw.hardware_exit_reason = vcpu->arch.trap;
1350 /* Clear out the old NMI status from run->flags */
1351 run->flags &= ~KVM_RUN_PPC_NMI_DISP_MASK;
1352 /* Now set the NMI status */
1353 if (vcpu->arch.mce_evt.disposition == MCE_DISPOSITION_RECOVERED)
1354 run->flags |= KVM_RUN_PPC_NMI_DISP_FULLY_RECOV;
1355 else
1356 run->flags |= KVM_RUN_PPC_NMI_DISP_NOT_RECOV;
1357
1358 r = RESUME_HOST;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001359 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001360 case BOOK3S_INTERRUPT_PROGRAM:
1361 {
1362 ulong flags;
1363 /*
1364 * Normally program interrupts are delivered directly
1365 * to the guest by the hardware, but we can get here
1366 * as a result of a hypervisor emulation interrupt
1367 * (e40) getting turned into a 700 by BML RTAS.
1368 */
1369 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
1370 kvmppc_core_queue_program(vcpu, flags);
1371 r = RESUME_GUEST;
1372 break;
1373 }
1374 case BOOK3S_INTERRUPT_SYSCALL:
1375 {
1376 /* hcall - punt to userspace */
1377 int i;
1378
Liu Ping Fan27025a62013-11-19 14:12:48 +08001379 /* hypercall with MSR_PR has already been handled in rmode,
1380 * and never reaches here.
1381 */
1382
Paul Mackerrasde56a942011-06-29 00:21:34 +00001383 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
1384 for (i = 0; i < 9; ++i)
1385 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
1386 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1387 vcpu->arch.hcall_needed = 1;
1388 r = RESUME_HOST;
1389 break;
1390 }
1391 /*
Paul Mackerras342d3db2011-12-12 12:38:05 +00001392 * We get these next two if the guest accesses a page which it thinks
1393 * it has mapped but which is not actually present, either because
1394 * it is for an emulated I/O device or because the corresonding
1395 * host page has been paged out. Any other HDSI/HISI interrupts
1396 * have been handled already.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001397 */
1398 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001399 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001400 break;
1401 case BOOK3S_INTERRUPT_H_INST_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001402 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
Paul Mackerras32eb1502018-10-08 16:30:56 +11001403 vcpu->arch.fault_dsisr = vcpu->arch.shregs.msr &
1404 DSISR_SRR1_MATCH_64S;
1405 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1406 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001407 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001408 break;
1409 /*
1410 * This occurs if the guest executes an illegal instruction.
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301411 * If the guest debug is disabled, generate a program interrupt
1412 * to the guest. If guest debug is enabled, we need to check
1413 * whether the instruction is a software breakpoint instruction.
1414 * Accordingly return to Guest or Host.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001415 */
1416 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerras4a157d62014-12-03 13:30:39 +11001417 if (vcpu->arch.emul_inst != KVM_INST_FETCH_FAILED)
1418 vcpu->arch.last_inst = kvmppc_need_byteswap(vcpu) ?
1419 swab32(vcpu->arch.emul_inst) :
1420 vcpu->arch.emul_inst;
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301421 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001422 r = kvmppc_emulate_debug_inst(vcpu);
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301423 } else {
1424 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1425 r = RESUME_GUEST;
1426 }
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001427 break;
1428 /*
1429 * This occurs if the guest (kernel or userspace), does something that
Paul Mackerras57900692017-05-16 16:41:20 +10001430 * is prohibited by HFSCR.
1431 * On POWER9, this could be a doorbell instruction that we need
1432 * to emulate.
1433 * Otherwise, we just generate a program interrupt to the guest.
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001434 */
1435 case BOOK3S_INTERRUPT_H_FAC_UNAVAIL:
Paul Mackerras57900692017-05-16 16:41:20 +10001436 r = EMULATE_FAIL;
Paul Mackerras36ee41d2018-01-30 10:51:32 +11001437 if (((vcpu->arch.hfscr >> 56) == FSCR_MSGP_LG) &&
Paul Mackerras53655dd2018-10-08 16:30:54 +11001438 cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras57900692017-05-16 16:41:20 +10001439 r = kvmppc_emulate_doorbell_instr(vcpu);
1440 if (r == EMULATE_FAIL) {
1441 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1442 r = RESUME_GUEST;
1443 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001444 break;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11001445
1446#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1447 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1448 /*
1449 * This occurs for various TM-related instructions that
1450 * we need to emulate on POWER9 DD2.2. We have already
1451 * handled the cases where the guest was in real-suspend
1452 * mode and was transitioning to transactional state.
1453 */
1454 r = kvmhv_p9_tm_emulation(vcpu);
1455 break;
1456#endif
1457
Suresh Warrierf7af5202016-08-19 15:35:52 +10001458 case BOOK3S_INTERRUPT_HV_RM_HARD:
1459 r = RESUME_PASSTHROUGH;
1460 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001461 default:
1462 kvmppc_dump_regs(vcpu);
1463 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1464 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1465 vcpu->arch.shregs.msr);
Paul Mackerrasf3271d42013-09-20 14:52:41 +10001466 run->hw.hardware_exit_reason = vcpu->arch.trap;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001467 r = RESUME_HOST;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001468 break;
1469 }
1470
Paul Mackerrasde56a942011-06-29 00:21:34 +00001471 return r;
1472}
1473
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001474static int kvmppc_handle_nested_exit(struct kvm_vcpu *vcpu)
Paul Mackerras360cae32018-10-08 16:31:04 +11001475{
1476 int r;
1477 int srcu_idx;
1478
1479 vcpu->stat.sum_exits++;
1480
1481 /*
1482 * This can happen if an interrupt occurs in the last stages
1483 * of guest entry or the first stages of guest exit (i.e. after
1484 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1485 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1486 * That can happen due to a bug, or due to a machine check
1487 * occurring at just the wrong time.
1488 */
1489 if (vcpu->arch.shregs.msr & MSR_HV) {
1490 pr_emerg("KVM trap in HV mode while nested!\n");
1491 pr_emerg("trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1492 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1493 vcpu->arch.shregs.msr);
1494 kvmppc_dump_regs(vcpu);
1495 return RESUME_HOST;
1496 }
1497 switch (vcpu->arch.trap) {
1498 /* We're good on these - the host merely wanted to get our attention */
1499 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1500 vcpu->stat.dec_exits++;
1501 r = RESUME_GUEST;
1502 break;
1503 case BOOK3S_INTERRUPT_EXTERNAL:
1504 vcpu->stat.ext_intr_exits++;
1505 r = RESUME_HOST;
1506 break;
1507 case BOOK3S_INTERRUPT_H_DOORBELL:
1508 case BOOK3S_INTERRUPT_H_VIRT:
1509 vcpu->stat.ext_intr_exits++;
1510 r = RESUME_GUEST;
1511 break;
1512 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
1513 case BOOK3S_INTERRUPT_HMI:
1514 case BOOK3S_INTERRUPT_PERFMON:
1515 case BOOK3S_INTERRUPT_SYSTEM_RESET:
1516 r = RESUME_GUEST;
1517 break;
1518 case BOOK3S_INTERRUPT_MACHINE_CHECK:
1519 /* Pass the machine check to the L1 guest */
1520 r = RESUME_HOST;
1521 /* Print the MCE event to host console. */
Paul Mackerrasc0577202019-02-21 13:40:20 +11001522 machine_check_print_event_info(&vcpu->arch.mce_evt, false, true);
Paul Mackerras360cae32018-10-08 16:31:04 +11001523 break;
1524 /*
1525 * We get these next two if the guest accesses a page which it thinks
1526 * it has mapped but which is not actually present, either because
1527 * it is for an emulated I/O device or because the corresonding
1528 * host page has been paged out.
1529 */
1530 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
1531 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001532 r = kvmhv_nested_page_fault(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11001533 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1534 break;
1535 case BOOK3S_INTERRUPT_H_INST_STORAGE:
1536 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
1537 vcpu->arch.fault_dsisr = kvmppc_get_msr(vcpu) &
1538 DSISR_SRR1_MATCH_64S;
1539 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1540 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
1541 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08001542 r = kvmhv_nested_page_fault(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11001543 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1544 break;
1545
1546#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1547 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1548 /*
1549 * This occurs for various TM-related instructions that
1550 * we need to emulate on POWER9 DD2.2. We have already
1551 * handled the cases where the guest was in real-suspend
1552 * mode and was transitioning to transactional state.
1553 */
1554 r = kvmhv_p9_tm_emulation(vcpu);
1555 break;
1556#endif
1557
1558 case BOOK3S_INTERRUPT_HV_RM_HARD:
1559 vcpu->arch.trap = 0;
1560 r = RESUME_GUEST;
Paul Mackerras03f95332019-02-04 22:07:20 +11001561 if (!xics_on_xive())
Paul Mackerras360cae32018-10-08 16:31:04 +11001562 kvmppc_xics_rm_complete(vcpu, 0);
1563 break;
1564 default:
1565 r = RESUME_HOST;
1566 break;
1567 }
1568
1569 return r;
1570}
1571
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301572static int kvm_arch_vcpu_ioctl_get_sregs_hv(struct kvm_vcpu *vcpu,
1573 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001574{
1575 int i;
1576
Paul Mackerrasde56a942011-06-29 00:21:34 +00001577 memset(sregs, 0, sizeof(struct kvm_sregs));
Aneesh Kumar K.V87916442013-08-22 17:08:39 +05301578 sregs->pvr = vcpu->arch.pvr;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001579 for (i = 0; i < vcpu->arch.slb_max; i++) {
1580 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
1581 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1582 }
1583
1584 return 0;
1585}
1586
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301587static int kvm_arch_vcpu_ioctl_set_sregs_hv(struct kvm_vcpu *vcpu,
1588 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001589{
1590 int i, j;
1591
Paul Mackerras9333e6c2014-09-02 16:14:43 +10001592 /* Only accept the same PVR as the host's, since we can't spoof it */
1593 if (sregs->pvr != vcpu->arch.pvr)
1594 return -EINVAL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001595
1596 j = 0;
1597 for (i = 0; i < vcpu->arch.slb_nr; i++) {
1598 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
1599 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
1600 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
1601 ++j;
1602 }
1603 }
1604 vcpu->arch.slb_max = j;
1605
1606 return 0;
1607}
1608
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001609static void kvmppc_set_lpcr(struct kvm_vcpu *vcpu, u64 new_lpcr,
1610 bool preserve_top32)
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001611{
Paul Mackerras8f902b02015-03-20 20:39:38 +11001612 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001613 struct kvmppc_vcore *vc = vcpu->arch.vcore;
1614 u64 mask;
1615
1616 spin_lock(&vc->lock);
1617 /*
Anton Blanchardd6829162014-01-08 21:25:30 +11001618 * If ILE (interrupt little-endian) has changed, update the
1619 * MSR_LE bit in the intr_msr for each vcpu in this vcore.
1620 */
1621 if ((new_lpcr & LPCR_ILE) != (vc->lpcr & LPCR_ILE)) {
Anton Blanchardd6829162014-01-08 21:25:30 +11001622 struct kvm_vcpu *vcpu;
1623 int i;
1624
Anton Blanchardd6829162014-01-08 21:25:30 +11001625 kvm_for_each_vcpu(i, vcpu, kvm) {
1626 if (vcpu->arch.vcore != vc)
1627 continue;
1628 if (new_lpcr & LPCR_ILE)
1629 vcpu->arch.intr_msr |= MSR_LE;
1630 else
1631 vcpu->arch.intr_msr &= ~MSR_LE;
1632 }
Anton Blanchardd6829162014-01-08 21:25:30 +11001633 }
1634
1635 /*
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001636 * Userspace can only modify DPFD (default prefetch depth),
1637 * ILE (interrupt little-endian) and TC (translation control).
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11001638 * On POWER8 and POWER9 userspace can also modify AIL (alt. interrupt loc.).
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001639 */
1640 mask = LPCR_DPFD | LPCR_ILE | LPCR_TC;
Paul Mackerrase0622bd2014-01-08 21:25:27 +11001641 if (cpu_has_feature(CPU_FTR_ARCH_207S))
1642 mask |= LPCR_AIL;
Paul Mackerras1bc3fe82017-05-22 16:55:16 +10001643 /*
1644 * On POWER9, allow userspace to enable large decrementer for the
1645 * guest, whether or not the host has it enabled.
1646 */
1647 if (cpu_has_feature(CPU_FTR_ARCH_300))
1648 mask |= LPCR_LD;
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001649
1650 /* Broken 32-bit version of LPCR must not clear top bits */
1651 if (preserve_top32)
1652 mask &= 0xFFFFFFFF;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001653 vc->lpcr = (vc->lpcr & ~mask) | (new_lpcr & mask);
1654 spin_unlock(&vc->lock);
1655}
1656
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301657static int kvmppc_get_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1658 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001659{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001660 int r = 0;
1661 long int i;
Paul Mackerras31f34382011-12-12 12:26:50 +00001662
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001663 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301664 case KVM_REG_PPC_DEBUG_INST:
1665 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1666 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001667 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001668 *val = get_reg_val(id, 0);
1669 break;
1670 case KVM_REG_PPC_DABR:
1671 *val = get_reg_val(id, vcpu->arch.dabr);
1672 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001673 case KVM_REG_PPC_DABRX:
1674 *val = get_reg_val(id, vcpu->arch.dabrx);
1675 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001676 case KVM_REG_PPC_DSCR:
1677 *val = get_reg_val(id, vcpu->arch.dscr);
1678 break;
1679 case KVM_REG_PPC_PURR:
1680 *val = get_reg_val(id, vcpu->arch.purr);
1681 break;
1682 case KVM_REG_PPC_SPURR:
1683 *val = get_reg_val(id, vcpu->arch.spurr);
1684 break;
1685 case KVM_REG_PPC_AMR:
1686 *val = get_reg_val(id, vcpu->arch.amr);
1687 break;
1688 case KVM_REG_PPC_UAMOR:
1689 *val = get_reg_val(id, vcpu->arch.uamor);
1690 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04001691 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCR1:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001692 i = id - KVM_REG_PPC_MMCR0;
1693 *val = get_reg_val(id, vcpu->arch.mmcr[i]);
1694 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04001695 case KVM_REG_PPC_MMCR2:
1696 *val = get_reg_val(id, vcpu->arch.mmcr[2]);
1697 break;
1698 case KVM_REG_PPC_MMCRA:
1699 *val = get_reg_val(id, vcpu->arch.mmcra);
1700 break;
1701 case KVM_REG_PPC_MMCRS:
1702 *val = get_reg_val(id, vcpu->arch.mmcrs);
1703 break;
Athira Rajeev5752fe02020-07-17 10:38:17 -04001704 case KVM_REG_PPC_MMCR3:
1705 *val = get_reg_val(id, vcpu->arch.mmcr[3]);
1706 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001707 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1708 i = id - KVM_REG_PPC_PMC1;
1709 *val = get_reg_val(id, vcpu->arch.pmc[i]);
Paul Mackerras31f34382011-12-12 12:26:50 +00001710 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001711 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1712 i = id - KVM_REG_PPC_SPMC1;
1713 *val = get_reg_val(id, vcpu->arch.spmc[i]);
1714 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001715 case KVM_REG_PPC_SIAR:
1716 *val = get_reg_val(id, vcpu->arch.siar);
1717 break;
1718 case KVM_REG_PPC_SDAR:
1719 *val = get_reg_val(id, vcpu->arch.sdar);
1720 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001721 case KVM_REG_PPC_SIER:
Athira Rajeev5752fe02020-07-17 10:38:17 -04001722 *val = get_reg_val(id, vcpu->arch.sier[0]);
1723 break;
1724 case KVM_REG_PPC_SIER2:
1725 *val = get_reg_val(id, vcpu->arch.sier[1]);
1726 break;
1727 case KVM_REG_PPC_SIER3:
1728 *val = get_reg_val(id, vcpu->arch.sier[2]);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001729 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001730 case KVM_REG_PPC_IAMR:
1731 *val = get_reg_val(id, vcpu->arch.iamr);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001732 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001733 case KVM_REG_PPC_PSPB:
1734 *val = get_reg_val(id, vcpu->arch.pspb);
1735 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001736 case KVM_REG_PPC_DPDES:
Paul Mackerrasff42df42019-08-27 11:35:40 +10001737 /*
1738 * On POWER9, where we are emulating msgsndp etc.,
1739 * we return 1 bit for each vcpu, which can come from
1740 * either vcore->dpdes or doorbell_request.
1741 * On POWER8, doorbell_request is 0.
1742 */
1743 *val = get_reg_val(id, vcpu->arch.vcore->dpdes |
1744 vcpu->arch.doorbell_request);
Michael Neulingb005255e2014-01-08 21:25:21 +11001745 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001746 case KVM_REG_PPC_VTB:
1747 *val = get_reg_val(id, vcpu->arch.vcore->vtb);
1748 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001749 case KVM_REG_PPC_DAWR:
1750 *val = get_reg_val(id, vcpu->arch.dawr);
1751 break;
1752 case KVM_REG_PPC_DAWRX:
1753 *val = get_reg_val(id, vcpu->arch.dawrx);
1754 break;
1755 case KVM_REG_PPC_CIABR:
1756 *val = get_reg_val(id, vcpu->arch.ciabr);
1757 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001758 case KVM_REG_PPC_CSIGR:
1759 *val = get_reg_val(id, vcpu->arch.csigr);
1760 break;
1761 case KVM_REG_PPC_TACR:
1762 *val = get_reg_val(id, vcpu->arch.tacr);
1763 break;
1764 case KVM_REG_PPC_TCSCR:
1765 *val = get_reg_val(id, vcpu->arch.tcscr);
1766 break;
1767 case KVM_REG_PPC_PID:
1768 *val = get_reg_val(id, vcpu->arch.pid);
1769 break;
1770 case KVM_REG_PPC_ACOP:
1771 *val = get_reg_val(id, vcpu->arch.acop);
1772 break;
1773 case KVM_REG_PPC_WORT:
1774 *val = get_reg_val(id, vcpu->arch.wort);
1775 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001776 case KVM_REG_PPC_TIDR:
1777 *val = get_reg_val(id, vcpu->arch.tid);
1778 break;
1779 case KVM_REG_PPC_PSSCR:
1780 *val = get_reg_val(id, vcpu->arch.psscr);
1781 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001782 case KVM_REG_PPC_VPA_ADDR:
1783 spin_lock(&vcpu->arch.vpa_update_lock);
1784 *val = get_reg_val(id, vcpu->arch.vpa.next_gpa);
1785 spin_unlock(&vcpu->arch.vpa_update_lock);
1786 break;
1787 case KVM_REG_PPC_VPA_SLB:
1788 spin_lock(&vcpu->arch.vpa_update_lock);
1789 val->vpaval.addr = vcpu->arch.slb_shadow.next_gpa;
1790 val->vpaval.length = vcpu->arch.slb_shadow.len;
1791 spin_unlock(&vcpu->arch.vpa_update_lock);
1792 break;
1793 case KVM_REG_PPC_VPA_DTL:
1794 spin_lock(&vcpu->arch.vpa_update_lock);
1795 val->vpaval.addr = vcpu->arch.dtl.next_gpa;
1796 val->vpaval.length = vcpu->arch.dtl.len;
1797 spin_unlock(&vcpu->arch.vpa_update_lock);
1798 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001799 case KVM_REG_PPC_TB_OFFSET:
1800 *val = get_reg_val(id, vcpu->arch.vcore->tb_offset);
1801 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001802 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001803 case KVM_REG_PPC_LPCR_64:
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001804 *val = get_reg_val(id, vcpu->arch.vcore->lpcr);
1805 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001806 case KVM_REG_PPC_PPR:
1807 *val = get_reg_val(id, vcpu->arch.ppr);
1808 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001809#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1810 case KVM_REG_PPC_TFHAR:
1811 *val = get_reg_val(id, vcpu->arch.tfhar);
1812 break;
1813 case KVM_REG_PPC_TFIAR:
1814 *val = get_reg_val(id, vcpu->arch.tfiar);
1815 break;
1816 case KVM_REG_PPC_TEXASR:
1817 *val = get_reg_val(id, vcpu->arch.texasr);
1818 break;
1819 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
1820 i = id - KVM_REG_PPC_TM_GPR0;
1821 *val = get_reg_val(id, vcpu->arch.gpr_tm[i]);
1822 break;
1823 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
1824 {
1825 int j;
1826 i = id - KVM_REG_PPC_TM_VSR0;
1827 if (i < 32)
1828 for (j = 0; j < TS_FPRWIDTH; j++)
1829 val->vsxval[j] = vcpu->arch.fp_tm.fpr[i][j];
1830 else {
1831 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1832 val->vval = vcpu->arch.vr_tm.vr[i-32];
1833 else
1834 r = -ENXIO;
1835 }
1836 break;
1837 }
1838 case KVM_REG_PPC_TM_CR:
1839 *val = get_reg_val(id, vcpu->arch.cr_tm);
1840 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11001841 case KVM_REG_PPC_TM_XER:
1842 *val = get_reg_val(id, vcpu->arch.xer_tm);
1843 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001844 case KVM_REG_PPC_TM_LR:
1845 *val = get_reg_val(id, vcpu->arch.lr_tm);
1846 break;
1847 case KVM_REG_PPC_TM_CTR:
1848 *val = get_reg_val(id, vcpu->arch.ctr_tm);
1849 break;
1850 case KVM_REG_PPC_TM_FPSCR:
1851 *val = get_reg_val(id, vcpu->arch.fp_tm.fpscr);
1852 break;
1853 case KVM_REG_PPC_TM_AMR:
1854 *val = get_reg_val(id, vcpu->arch.amr_tm);
1855 break;
1856 case KVM_REG_PPC_TM_PPR:
1857 *val = get_reg_val(id, vcpu->arch.ppr_tm);
1858 break;
1859 case KVM_REG_PPC_TM_VRSAVE:
1860 *val = get_reg_val(id, vcpu->arch.vrsave_tm);
1861 break;
1862 case KVM_REG_PPC_TM_VSCR:
1863 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1864 *val = get_reg_val(id, vcpu->arch.vr_tm.vscr.u[3]);
1865 else
1866 r = -ENXIO;
1867 break;
1868 case KVM_REG_PPC_TM_DSCR:
1869 *val = get_reg_val(id, vcpu->arch.dscr_tm);
1870 break;
1871 case KVM_REG_PPC_TM_TAR:
1872 *val = get_reg_val(id, vcpu->arch.tar_tm);
1873 break;
1874#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10001875 case KVM_REG_PPC_ARCH_COMPAT:
1876 *val = get_reg_val(id, vcpu->arch.vcore->arch_compat);
1877 break;
Paul Mackerras58555642018-01-12 20:55:20 +11001878 case KVM_REG_PPC_DEC_EXPIRY:
1879 *val = get_reg_val(id, vcpu->arch.dec_expires +
1880 vcpu->arch.vcore->tb_offset);
1881 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10001882 case KVM_REG_PPC_ONLINE:
1883 *val = get_reg_val(id, vcpu->arch.online);
1884 break;
Paul Mackerras30323412018-10-08 16:31:13 +11001885 case KVM_REG_PPC_PTCR:
1886 *val = get_reg_val(id, vcpu->kvm->arch.l1_ptcr);
1887 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001888 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001889 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001890 break;
1891 }
1892
1893 return r;
1894}
1895
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301896static int kvmppc_set_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1897 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001898{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001899 int r = 0;
1900 long int i;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001901 unsigned long addr, len;
Paul Mackerras31f34382011-12-12 12:26:50 +00001902
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001903 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001904 case KVM_REG_PPC_HIOR:
Paul Mackerras31f34382011-12-12 12:26:50 +00001905 /* Only allow this to be set to zero */
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001906 if (set_reg_val(id, *val))
Paul Mackerras31f34382011-12-12 12:26:50 +00001907 r = -EINVAL;
1908 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001909 case KVM_REG_PPC_DABR:
1910 vcpu->arch.dabr = set_reg_val(id, *val);
1911 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001912 case KVM_REG_PPC_DABRX:
1913 vcpu->arch.dabrx = set_reg_val(id, *val) & ~DABRX_HYP;
1914 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001915 case KVM_REG_PPC_DSCR:
1916 vcpu->arch.dscr = set_reg_val(id, *val);
1917 break;
1918 case KVM_REG_PPC_PURR:
1919 vcpu->arch.purr = set_reg_val(id, *val);
1920 break;
1921 case KVM_REG_PPC_SPURR:
1922 vcpu->arch.spurr = set_reg_val(id, *val);
1923 break;
1924 case KVM_REG_PPC_AMR:
1925 vcpu->arch.amr = set_reg_val(id, *val);
1926 break;
1927 case KVM_REG_PPC_UAMOR:
1928 vcpu->arch.uamor = set_reg_val(id, *val);
1929 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04001930 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCR1:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001931 i = id - KVM_REG_PPC_MMCR0;
1932 vcpu->arch.mmcr[i] = set_reg_val(id, *val);
1933 break;
Athira Rajeev7e4a1452020-07-17 10:38:14 -04001934 case KVM_REG_PPC_MMCR2:
1935 vcpu->arch.mmcr[2] = set_reg_val(id, *val);
1936 break;
1937 case KVM_REG_PPC_MMCRA:
1938 vcpu->arch.mmcra = set_reg_val(id, *val);
1939 break;
1940 case KVM_REG_PPC_MMCRS:
1941 vcpu->arch.mmcrs = set_reg_val(id, *val);
1942 break;
Athira Rajeev5752fe02020-07-17 10:38:17 -04001943 case KVM_REG_PPC_MMCR3:
1944 *val = get_reg_val(id, vcpu->arch.mmcr[3]);
1945 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001946 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1947 i = id - KVM_REG_PPC_PMC1;
1948 vcpu->arch.pmc[i] = set_reg_val(id, *val);
1949 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001950 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1951 i = id - KVM_REG_PPC_SPMC1;
1952 vcpu->arch.spmc[i] = set_reg_val(id, *val);
1953 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001954 case KVM_REG_PPC_SIAR:
1955 vcpu->arch.siar = set_reg_val(id, *val);
1956 break;
1957 case KVM_REG_PPC_SDAR:
1958 vcpu->arch.sdar = set_reg_val(id, *val);
1959 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001960 case KVM_REG_PPC_SIER:
Athira Rajeev5752fe02020-07-17 10:38:17 -04001961 vcpu->arch.sier[0] = set_reg_val(id, *val);
1962 break;
1963 case KVM_REG_PPC_SIER2:
1964 vcpu->arch.sier[1] = set_reg_val(id, *val);
1965 break;
1966 case KVM_REG_PPC_SIER3:
1967 vcpu->arch.sier[2] = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001968 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001969 case KVM_REG_PPC_IAMR:
1970 vcpu->arch.iamr = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001971 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001972 case KVM_REG_PPC_PSPB:
1973 vcpu->arch.pspb = set_reg_val(id, *val);
1974 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001975 case KVM_REG_PPC_DPDES:
1976 vcpu->arch.vcore->dpdes = set_reg_val(id, *val);
1977 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001978 case KVM_REG_PPC_VTB:
1979 vcpu->arch.vcore->vtb = set_reg_val(id, *val);
1980 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001981 case KVM_REG_PPC_DAWR:
1982 vcpu->arch.dawr = set_reg_val(id, *val);
1983 break;
1984 case KVM_REG_PPC_DAWRX:
1985 vcpu->arch.dawrx = set_reg_val(id, *val) & ~DAWRX_HYP;
1986 break;
1987 case KVM_REG_PPC_CIABR:
1988 vcpu->arch.ciabr = set_reg_val(id, *val);
1989 /* Don't allow setting breakpoints in hypervisor code */
1990 if ((vcpu->arch.ciabr & CIABR_PRIV) == CIABR_PRIV_HYPER)
1991 vcpu->arch.ciabr &= ~CIABR_PRIV; /* disable */
1992 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001993 case KVM_REG_PPC_CSIGR:
1994 vcpu->arch.csigr = set_reg_val(id, *val);
1995 break;
1996 case KVM_REG_PPC_TACR:
1997 vcpu->arch.tacr = set_reg_val(id, *val);
1998 break;
1999 case KVM_REG_PPC_TCSCR:
2000 vcpu->arch.tcscr = set_reg_val(id, *val);
2001 break;
2002 case KVM_REG_PPC_PID:
2003 vcpu->arch.pid = set_reg_val(id, *val);
2004 break;
2005 case KVM_REG_PPC_ACOP:
2006 vcpu->arch.acop = set_reg_val(id, *val);
2007 break;
2008 case KVM_REG_PPC_WORT:
2009 vcpu->arch.wort = set_reg_val(id, *val);
2010 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11002011 case KVM_REG_PPC_TIDR:
2012 vcpu->arch.tid = set_reg_val(id, *val);
2013 break;
2014 case KVM_REG_PPC_PSSCR:
2015 vcpu->arch.psscr = set_reg_val(id, *val) & PSSCR_GUEST_VIS;
2016 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00002017 case KVM_REG_PPC_VPA_ADDR:
2018 addr = set_reg_val(id, *val);
2019 r = -EINVAL;
2020 if (!addr && (vcpu->arch.slb_shadow.next_gpa ||
2021 vcpu->arch.dtl.next_gpa))
2022 break;
2023 r = set_vpa(vcpu, &vcpu->arch.vpa, addr, sizeof(struct lppaca));
2024 break;
2025 case KVM_REG_PPC_VPA_SLB:
2026 addr = val->vpaval.addr;
2027 len = val->vpaval.length;
2028 r = -EINVAL;
2029 if (addr && !vcpu->arch.vpa.next_gpa)
2030 break;
2031 r = set_vpa(vcpu, &vcpu->arch.slb_shadow, addr, len);
2032 break;
2033 case KVM_REG_PPC_VPA_DTL:
2034 addr = val->vpaval.addr;
2035 len = val->vpaval.length;
2036 r = -EINVAL;
Paul Mackerras9f8c8c72012-10-15 01:18:37 +00002037 if (addr && (len < sizeof(struct dtl_entry) ||
2038 !vcpu->arch.vpa.next_gpa))
Paul Mackerras55b665b2012-09-25 20:33:06 +00002039 break;
2040 len -= len % sizeof(struct dtl_entry);
2041 r = set_vpa(vcpu, &vcpu->arch.dtl, addr, len);
2042 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10002043 case KVM_REG_PPC_TB_OFFSET:
2044 /* round up to multiple of 2^24 */
2045 vcpu->arch.vcore->tb_offset =
2046 ALIGN(set_reg_val(id, *val), 1UL << 24);
2047 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002048 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10002049 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), true);
2050 break;
2051 case KVM_REG_PPC_LPCR_64:
2052 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), false);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10002053 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10002054 case KVM_REG_PPC_PPR:
2055 vcpu->arch.ppr = set_reg_val(id, *val);
2056 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002057#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
2058 case KVM_REG_PPC_TFHAR:
2059 vcpu->arch.tfhar = set_reg_val(id, *val);
2060 break;
2061 case KVM_REG_PPC_TFIAR:
2062 vcpu->arch.tfiar = set_reg_val(id, *val);
2063 break;
2064 case KVM_REG_PPC_TEXASR:
2065 vcpu->arch.texasr = set_reg_val(id, *val);
2066 break;
2067 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
2068 i = id - KVM_REG_PPC_TM_GPR0;
2069 vcpu->arch.gpr_tm[i] = set_reg_val(id, *val);
2070 break;
2071 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
2072 {
2073 int j;
2074 i = id - KVM_REG_PPC_TM_VSR0;
2075 if (i < 32)
2076 for (j = 0; j < TS_FPRWIDTH; j++)
2077 vcpu->arch.fp_tm.fpr[i][j] = val->vsxval[j];
2078 else
2079 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2080 vcpu->arch.vr_tm.vr[i-32] = val->vval;
2081 else
2082 r = -ENXIO;
2083 break;
2084 }
2085 case KVM_REG_PPC_TM_CR:
2086 vcpu->arch.cr_tm = set_reg_val(id, *val);
2087 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11002088 case KVM_REG_PPC_TM_XER:
2089 vcpu->arch.xer_tm = set_reg_val(id, *val);
2090 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11002091 case KVM_REG_PPC_TM_LR:
2092 vcpu->arch.lr_tm = set_reg_val(id, *val);
2093 break;
2094 case KVM_REG_PPC_TM_CTR:
2095 vcpu->arch.ctr_tm = set_reg_val(id, *val);
2096 break;
2097 case KVM_REG_PPC_TM_FPSCR:
2098 vcpu->arch.fp_tm.fpscr = set_reg_val(id, *val);
2099 break;
2100 case KVM_REG_PPC_TM_AMR:
2101 vcpu->arch.amr_tm = set_reg_val(id, *val);
2102 break;
2103 case KVM_REG_PPC_TM_PPR:
2104 vcpu->arch.ppr_tm = set_reg_val(id, *val);
2105 break;
2106 case KVM_REG_PPC_TM_VRSAVE:
2107 vcpu->arch.vrsave_tm = set_reg_val(id, *val);
2108 break;
2109 case KVM_REG_PPC_TM_VSCR:
2110 if (cpu_has_feature(CPU_FTR_ALTIVEC))
2111 vcpu->arch.vr.vscr.u[3] = set_reg_val(id, *val);
2112 else
2113 r = - ENXIO;
2114 break;
2115 case KVM_REG_PPC_TM_DSCR:
2116 vcpu->arch.dscr_tm = set_reg_val(id, *val);
2117 break;
2118 case KVM_REG_PPC_TM_TAR:
2119 vcpu->arch.tar_tm = set_reg_val(id, *val);
2120 break;
2121#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10002122 case KVM_REG_PPC_ARCH_COMPAT:
2123 r = kvmppc_set_arch_compat(vcpu, set_reg_val(id, *val));
2124 break;
Paul Mackerras58555642018-01-12 20:55:20 +11002125 case KVM_REG_PPC_DEC_EXPIRY:
2126 vcpu->arch.dec_expires = set_reg_val(id, *val) -
2127 vcpu->arch.vcore->tb_offset;
2128 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002129 case KVM_REG_PPC_ONLINE:
Paul Mackerras7aa15842018-04-20 19:53:22 +10002130 i = set_reg_val(id, *val);
2131 if (i && !vcpu->arch.online)
2132 atomic_inc(&vcpu->arch.vcore->online_count);
2133 else if (!i && vcpu->arch.online)
2134 atomic_dec(&vcpu->arch.vcore->online_count);
2135 vcpu->arch.online = i;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10002136 break;
Paul Mackerras30323412018-10-08 16:31:13 +11002137 case KVM_REG_PPC_PTCR:
2138 vcpu->kvm->arch.l1_ptcr = set_reg_val(id, *val);
2139 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00002140 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00002141 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00002142 break;
2143 }
2144
2145 return r;
2146}
2147
Paul Mackerras45c940b2016-11-18 17:43:30 +11002148/*
2149 * On POWER9, threads are independent and can be in different partitions.
2150 * Therefore we consider each thread to be a subcore.
2151 * There is a restriction that all threads have to be in the same
2152 * MMU mode (radix or HPT), unfortunately, but since we only support
2153 * HPT guests on a HPT host so far, that isn't an impediment yet.
2154 */
Paul Mackerras516f7892017-10-16 16:11:57 +11002155static int threads_per_vcore(struct kvm *kvm)
Paul Mackerras45c940b2016-11-18 17:43:30 +11002156{
Paul Mackerras516f7892017-10-16 16:11:57 +11002157 if (kvm->arch.threads_indep)
Paul Mackerras45c940b2016-11-18 17:43:30 +11002158 return 1;
2159 return threads_per_subcore;
2160}
2161
Sam Bobroff1e175d22018-07-25 16:12:02 +10002162static struct kvmppc_vcore *kvmppc_vcore_create(struct kvm *kvm, int id)
Stewart Smithde9bdd12014-07-18 14:18:42 +10002163{
2164 struct kvmppc_vcore *vcore;
2165
2166 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
2167
2168 if (vcore == NULL)
2169 return NULL;
2170
Stewart Smithde9bdd12014-07-18 14:18:42 +10002171 spin_lock_init(&vcore->lock);
Paul Mackerras2711e242014-12-04 16:43:28 +11002172 spin_lock_init(&vcore->stoltb_lock);
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07002173 rcuwait_init(&vcore->wait);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002174 vcore->preempt_tb = TB_NIL;
2175 vcore->lpcr = kvm->arch.lpcr;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002176 vcore->first_vcpuid = id;
Stewart Smithde9bdd12014-07-18 14:18:42 +10002177 vcore->kvm = kvm;
Paul Mackerrasec257162015-06-24 21:18:03 +10002178 INIT_LIST_HEAD(&vcore->preempt_list);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002179
2180 return vcore;
2181}
2182
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002183#ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
2184static struct debugfs_timings_element {
2185 const char *name;
2186 size_t offset;
2187} timings[] = {
2188 {"rm_entry", offsetof(struct kvm_vcpu, arch.rm_entry)},
2189 {"rm_intr", offsetof(struct kvm_vcpu, arch.rm_intr)},
2190 {"rm_exit", offsetof(struct kvm_vcpu, arch.rm_exit)},
2191 {"guest", offsetof(struct kvm_vcpu, arch.guest_time)},
2192 {"cede", offsetof(struct kvm_vcpu, arch.cede_time)},
2193};
2194
Thomas Meyer4bb817ed2017-09-03 14:19:31 +02002195#define N_TIMINGS (ARRAY_SIZE(timings))
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002196
2197struct debugfs_timings_state {
2198 struct kvm_vcpu *vcpu;
2199 unsigned int buflen;
2200 char buf[N_TIMINGS * 100];
2201};
2202
2203static int debugfs_timings_open(struct inode *inode, struct file *file)
2204{
2205 struct kvm_vcpu *vcpu = inode->i_private;
2206 struct debugfs_timings_state *p;
2207
2208 p = kzalloc(sizeof(*p), GFP_KERNEL);
2209 if (!p)
2210 return -ENOMEM;
2211
2212 kvm_get_kvm(vcpu->kvm);
2213 p->vcpu = vcpu;
2214 file->private_data = p;
2215
2216 return nonseekable_open(inode, file);
2217}
2218
2219static int debugfs_timings_release(struct inode *inode, struct file *file)
2220{
2221 struct debugfs_timings_state *p = file->private_data;
2222
2223 kvm_put_kvm(p->vcpu->kvm);
2224 kfree(p);
2225 return 0;
2226}
2227
2228static ssize_t debugfs_timings_read(struct file *file, char __user *buf,
2229 size_t len, loff_t *ppos)
2230{
2231 struct debugfs_timings_state *p = file->private_data;
2232 struct kvm_vcpu *vcpu = p->vcpu;
2233 char *s, *buf_end;
2234 struct kvmhv_tb_accumulator tb;
2235 u64 count;
2236 loff_t pos;
2237 ssize_t n;
2238 int i, loops;
2239 bool ok;
2240
2241 if (!p->buflen) {
2242 s = p->buf;
2243 buf_end = s + sizeof(p->buf);
2244 for (i = 0; i < N_TIMINGS; ++i) {
2245 struct kvmhv_tb_accumulator *acc;
2246
2247 acc = (struct kvmhv_tb_accumulator *)
2248 ((unsigned long)vcpu + timings[i].offset);
2249 ok = false;
2250 for (loops = 0; loops < 1000; ++loops) {
2251 count = acc->seqcount;
2252 if (!(count & 1)) {
2253 smp_rmb();
2254 tb = *acc;
2255 smp_rmb();
2256 if (count == acc->seqcount) {
2257 ok = true;
2258 break;
2259 }
2260 }
2261 udelay(1);
2262 }
2263 if (!ok)
2264 snprintf(s, buf_end - s, "%s: stuck\n",
2265 timings[i].name);
2266 else
2267 snprintf(s, buf_end - s,
2268 "%s: %llu %llu %llu %llu\n",
2269 timings[i].name, count / 2,
2270 tb_to_ns(tb.tb_total),
2271 tb_to_ns(tb.tb_min),
2272 tb_to_ns(tb.tb_max));
2273 s += strlen(s);
2274 }
2275 p->buflen = s - p->buf;
2276 }
2277
2278 pos = *ppos;
2279 if (pos >= p->buflen)
2280 return 0;
2281 if (len > p->buflen - pos)
2282 len = p->buflen - pos;
2283 n = copy_to_user(buf, p->buf + pos, len);
2284 if (n) {
2285 if (n == len)
2286 return -EFAULT;
2287 len -= n;
2288 }
2289 *ppos = pos + len;
2290 return len;
2291}
2292
2293static ssize_t debugfs_timings_write(struct file *file, const char __user *buf,
2294 size_t len, loff_t *ppos)
2295{
2296 return -EACCES;
2297}
2298
2299static const struct file_operations debugfs_timings_ops = {
2300 .owner = THIS_MODULE,
2301 .open = debugfs_timings_open,
2302 .release = debugfs_timings_release,
2303 .read = debugfs_timings_read,
2304 .write = debugfs_timings_write,
2305 .llseek = generic_file_llseek,
2306};
2307
2308/* Create a debugfs directory for the vcpu */
2309static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2310{
2311 char buf[16];
2312 struct kvm *kvm = vcpu->kvm;
2313
2314 snprintf(buf, sizeof(buf), "vcpu%u", id);
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002315 vcpu->arch.debugfs_dir = debugfs_create_dir(buf, kvm->arch.debugfs_dir);
Greg Kroah-Hartmanc4fd5272020-02-09 11:58:57 +01002316 debugfs_create_file("timings", 0444, vcpu->arch.debugfs_dir, vcpu,
2317 &debugfs_timings_ops);
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002318}
2319
2320#else /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2321static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2322{
2323}
2324#endif /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2325
Sean Christophersonff030fd2019-12-18 13:55:00 -08002326static int kvmppc_core_vcpu_create_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002327{
Paul Mackerras3c313522017-02-06 13:24:41 +11002328 int err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002329 int core;
2330 struct kvmppc_vcore *vcore;
Sean Christophersonff030fd2019-12-18 13:55:00 -08002331 struct kvm *kvm;
2332 unsigned int id;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002333
Sean Christophersonff030fd2019-12-18 13:55:00 -08002334 kvm = vcpu->kvm;
2335 id = vcpu->vcpu_id;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002336
2337 vcpu->arch.shared = &vcpu->arch.shregs;
Alexander Graf5deb8e72014-04-24 13:46:24 +02002338#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2339 /*
2340 * The shared struct is never shared on HV,
2341 * so we can always use host endianness
2342 */
2343#ifdef __BIG_ENDIAN__
2344 vcpu->arch.shared_big_endian = true;
2345#else
2346 vcpu->arch.shared_big_endian = false;
2347#endif
2348#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +00002349 vcpu->arch.mmcr[0] = MMCR0_FC;
2350 vcpu->arch.ctrl = CTRL_RUNLATCH;
2351 /* default to host PVR, since we can't spoof it */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302352 kvmppc_set_pvr_hv(vcpu, mfspr(SPRN_PVR));
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002353 spin_lock_init(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002354 spin_lock_init(&vcpu->arch.tbacct_lock);
2355 vcpu->arch.busy_preempt = TB_NIL;
Anton Blanchardd6829162014-01-08 21:25:30 +11002356 vcpu->arch.intr_msr = MSR_SF | MSR_ME;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002357
Paul Mackerras769377f2017-02-15 14:30:17 +11002358 /*
2359 * Set the default HFSCR for the guest from the host value.
2360 * This value is only used on POWER9.
Paul Mackerras57900692017-05-16 16:41:20 +10002361 * On POWER9, we want to virtualize the doorbell facility, so we
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002362 * don't set the HFSCR_MSGP bit, and that causes those instructions
2363 * to trap and then we emulate them.
Paul Mackerras769377f2017-02-15 14:30:17 +11002364 */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002365 vcpu->arch.hfscr = HFSCR_TAR | HFSCR_EBB | HFSCR_PM | HFSCR_BHRB |
Alistair Popple4cb4ade2020-06-02 15:53:25 +10002366 HFSCR_DSCR | HFSCR_VECVSX | HFSCR_FP | HFSCR_PREFIX;
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002367 if (cpu_has_feature(CPU_FTR_HVMODE)) {
2368 vcpu->arch.hfscr &= mfspr(SPRN_HFSCR);
2369 if (cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
2370 vcpu->arch.hfscr |= HFSCR_TM;
2371 }
2372 if (cpu_has_feature(CPU_FTR_TM_COMP))
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002373 vcpu->arch.hfscr |= HFSCR_TM;
Paul Mackerras769377f2017-02-15 14:30:17 +11002374
Paul Mackerrasde56a942011-06-29 00:21:34 +00002375 kvmppc_mmu_book3s_hv_init(vcpu);
2376
Paul Mackerras8455d792012-10-15 01:17:42 +00002377 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002378
2379 init_waitqueue_head(&vcpu->arch.cpu_run);
2380
2381 mutex_lock(&kvm->lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002382 vcore = NULL;
2383 err = -EINVAL;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002384 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasb5c6f762018-07-26 15:38:41 +10002385 if (id >= (KVM_MAX_VCPUS * kvm->arch.emul_smt_mode)) {
2386 pr_devel("KVM: VCPU ID too high\n");
2387 core = KVM_MAX_VCORES;
2388 } else {
2389 BUG_ON(kvm->arch.smt_mode != 1);
2390 core = kvmppc_pack_vcpu_id(kvm, id);
2391 }
Sam Bobroff1e175d22018-07-25 16:12:02 +10002392 } else {
2393 core = id / kvm->arch.smt_mode;
2394 }
Paul Mackerras3c313522017-02-06 13:24:41 +11002395 if (core < KVM_MAX_VCORES) {
2396 vcore = kvm->arch.vcores[core];
Sam Bobroff1e175d22018-07-25 16:12:02 +10002397 if (vcore && cpu_has_feature(CPU_FTR_ARCH_300)) {
2398 pr_devel("KVM: collision on id %u", id);
2399 vcore = NULL;
2400 } else if (!vcore) {
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002401 /*
2402 * Take mmu_setup_lock for mutual exclusion
2403 * with kvmppc_update_lpcr().
2404 */
Paul Mackerras3c313522017-02-06 13:24:41 +11002405 err = -ENOMEM;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002406 vcore = kvmppc_vcore_create(kvm,
2407 id & ~(kvm->arch.smt_mode - 1));
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002408 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002409 kvm->arch.vcores[core] = vcore;
2410 kvm->arch.online_vcores++;
Paul Mackerras0d4ee882019-05-23 16:35:34 +10002411 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002412 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002413 }
2414 mutex_unlock(&kvm->lock);
2415
2416 if (!vcore)
Sean Christophersonff030fd2019-12-18 13:55:00 -08002417 return err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002418
2419 spin_lock(&vcore->lock);
2420 ++vcore->num_threads;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002421 spin_unlock(&vcore->lock);
2422 vcpu->arch.vcore = vcore;
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11002423 vcpu->arch.ptid = vcpu->vcpu_id - vcore->first_vcpuid;
Paul Mackerrasec257162015-06-24 21:18:03 +10002424 vcpu->arch.thread_cpu = -1;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002425 vcpu->arch.prev_cpu = -1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002426
Alexander Grafaf8f38b2011-08-10 13:57:08 +02002427 vcpu->arch.cpu_type = KVM_CPU_3S_64;
2428 kvmppc_sanity_check(vcpu);
2429
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002430 debugfs_vcpu_init(vcpu, id);
2431
Sean Christophersonc50bfbd2019-12-18 13:54:57 -08002432 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002433}
2434
Paul Mackerras3c313522017-02-06 13:24:41 +11002435static int kvmhv_set_smt_mode(struct kvm *kvm, unsigned long smt_mode,
2436 unsigned long flags)
2437{
2438 int err;
Paul Mackerras57900692017-05-16 16:41:20 +10002439 int esmt = 0;
Paul Mackerras3c313522017-02-06 13:24:41 +11002440
2441 if (flags)
2442 return -EINVAL;
2443 if (smt_mode > MAX_SMT_THREADS || !is_power_of_2(smt_mode))
2444 return -EINVAL;
2445 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
2446 /*
2447 * On POWER8 (or POWER7), the threading mode is "strict",
2448 * so we pack smt_mode vcpus per vcore.
2449 */
2450 if (smt_mode > threads_per_subcore)
2451 return -EINVAL;
2452 } else {
2453 /*
2454 * On POWER9, the threading mode is "loose",
2455 * so each vcpu gets its own vcore.
2456 */
Paul Mackerras57900692017-05-16 16:41:20 +10002457 esmt = smt_mode;
Paul Mackerras3c313522017-02-06 13:24:41 +11002458 smt_mode = 1;
2459 }
2460 mutex_lock(&kvm->lock);
2461 err = -EBUSY;
2462 if (!kvm->arch.online_vcores) {
2463 kvm->arch.smt_mode = smt_mode;
Paul Mackerras57900692017-05-16 16:41:20 +10002464 kvm->arch.emul_smt_mode = esmt;
Paul Mackerras3c313522017-02-06 13:24:41 +11002465 err = 0;
2466 }
2467 mutex_unlock(&kvm->lock);
2468
2469 return err;
2470}
2471
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002472static void unpin_vpa(struct kvm *kvm, struct kvmppc_vpa *vpa)
2473{
2474 if (vpa->pinned_addr)
2475 kvmppc_unpin_guest_page(kvm, vpa->pinned_addr, vpa->gpa,
2476 vpa->dirty);
2477}
2478
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302479static void kvmppc_core_vcpu_free_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002480{
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002481 spin_lock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002482 unpin_vpa(vcpu->kvm, &vcpu->arch.dtl);
2483 unpin_vpa(vcpu->kvm, &vcpu->arch.slb_shadow);
2484 unpin_vpa(vcpu->kvm, &vcpu->arch.vpa);
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002485 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002486}
2487
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302488static int kvmppc_core_check_requests_hv(struct kvm_vcpu *vcpu)
2489{
2490 /* Indicate we want to get back into the guest */
2491 return 1;
2492}
2493
Paul Mackerras19ccb762011-07-23 17:42:46 +10002494static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002495{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002496 unsigned long dec_nsec, now;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002497
Paul Mackerras19ccb762011-07-23 17:42:46 +10002498 now = get_tb();
2499 if (now > vcpu->arch.dec_expires) {
2500 /* decrementer has already gone negative */
2501 kvmppc_core_queue_dec(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -06002502 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002503 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002504 }
Paul Mackerrasc43befc2018-10-20 20:54:55 +11002505 dec_nsec = tb_to_ns(vcpu->arch.dec_expires - now);
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002506 hrtimer_start(&vcpu->arch.dec_timer, dec_nsec, HRTIMER_MODE_REL);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002507 vcpu->arch.timer_running = 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002508}
2509
Paul Mackerras8b24e692017-06-26 15:45:51 +10002510extern int __kvmppc_vcore_entry(void);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002511
2512static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
2513 struct kvm_vcpu *vcpu)
2514{
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002515 u64 now;
2516
Paul Mackerras371fefd2011-06-29 00:23:08 +00002517 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
2518 return;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002519 spin_lock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002520 now = mftb();
2521 vcpu->arch.busy_stolen += vcore_stolen_time(vc, now) -
2522 vcpu->arch.stolen_logged;
2523 vcpu->arch.busy_preempt = now;
2524 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002525 spin_unlock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002526 --vc->n_runnable;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002527 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], NULL);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002528}
2529
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002530static int kvmppc_grab_hwthread(int cpu)
2531{
2532 struct paca_struct *tpaca;
Paul Mackerrasb754c732014-09-02 16:14:42 +10002533 long timeout = 10000;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002534
Nicholas Piggind2e60072018-02-14 01:08:12 +10002535 tpaca = paca_ptrs[cpu];
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002536
2537 /* Ensure the thread won't go into the kernel if it wakes */
Paul Mackerras7b444c62012-10-15 01:16:14 +00002538 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002539 tpaca->kvm_hstate.kvm_vcore = NULL;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002540 tpaca->kvm_hstate.napping = 0;
2541 smp_wmb();
2542 tpaca->kvm_hstate.hwthread_req = 1;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002543
2544 /*
2545 * If the thread is already executing in the kernel (e.g. handling
2546 * a stray interrupt), wait for it to get back to nap mode.
2547 * The smp_mb() is to ensure that our setting of hwthread_req
2548 * is visible before we look at hwthread_state, so if this
2549 * races with the code at system_reset_pSeries and the thread
2550 * misses our setting of hwthread_req, we are sure to see its
2551 * setting of hwthread_state, and vice versa.
2552 */
2553 smp_mb();
2554 while (tpaca->kvm_hstate.hwthread_state == KVM_HWTHREAD_IN_KERNEL) {
2555 if (--timeout <= 0) {
2556 pr_err("KVM: couldn't grab cpu %d\n", cpu);
2557 return -EBUSY;
2558 }
2559 udelay(1);
2560 }
2561 return 0;
2562}
2563
2564static void kvmppc_release_hwthread(int cpu)
2565{
2566 struct paca_struct *tpaca;
2567
Nicholas Piggind2e60072018-02-14 01:08:12 +10002568 tpaca = paca_ptrs[cpu];
Paul Mackerras31a4d442017-10-19 15:14:20 +11002569 tpaca->kvm_hstate.hwthread_req = 0;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002570 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002571 tpaca->kvm_hstate.kvm_vcore = NULL;
2572 tpaca->kvm_hstate.kvm_split_mode = NULL;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002573}
2574
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002575static void radix_flush_cpu(struct kvm *kvm, int cpu, struct kvm_vcpu *vcpu)
2576{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002577 struct kvm_nested_guest *nested = vcpu->arch.nested;
2578 cpumask_t *cpu_in_guest;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002579 int i;
2580
2581 cpu = cpu_first_thread_sibling(cpu);
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002582 if (nested) {
2583 cpumask_set_cpu(cpu, &nested->need_tlb_flush);
2584 cpu_in_guest = &nested->cpu_in_guest;
2585 } else {
2586 cpumask_set_cpu(cpu, &kvm->arch.need_tlb_flush);
2587 cpu_in_guest = &kvm->arch.cpu_in_guest;
2588 }
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002589 /*
2590 * Make sure setting of bit in need_tlb_flush precedes
2591 * testing of cpu_in_guest bits. The matching barrier on
2592 * the other side is the first smp_mb() in kvmppc_run_core().
2593 */
2594 smp_mb();
2595 for (i = 0; i < threads_per_core; ++i)
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002596 if (cpumask_test_cpu(cpu + i, cpu_in_guest))
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002597 smp_call_function_single(cpu + i, do_nothing, NULL, 1);
2598}
2599
Paul Mackerras8b24e692017-06-26 15:45:51 +10002600static void kvmppc_prepare_radix_vcpu(struct kvm_vcpu *vcpu, int pcpu)
2601{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002602 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002603 struct kvm *kvm = vcpu->kvm;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002604 int prev_cpu;
2605
2606 if (!cpu_has_feature(CPU_FTR_HVMODE))
2607 return;
2608
2609 if (nested)
2610 prev_cpu = nested->prev_cpu[vcpu->arch.nested_vcpu_id];
2611 else
2612 prev_cpu = vcpu->arch.prev_cpu;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002613
2614 /*
2615 * With radix, the guest can do TLB invalidations itself,
2616 * and it could choose to use the local form (tlbiel) if
2617 * it is invalidating a translation that has only ever been
2618 * used on one vcpu. However, that doesn't mean it has
2619 * only ever been used on one physical cpu, since vcpus
2620 * can move around between pcpus. To cope with this, when
2621 * a vcpu moves from one pcpu to another, we need to tell
2622 * any vcpus running on the same core as this vcpu previously
2623 * ran to flush the TLB. The TLB is shared between threads,
2624 * so we use a single bit in .need_tlb_flush for all 4 threads.
2625 */
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002626 if (prev_cpu != pcpu) {
2627 if (prev_cpu >= 0 &&
2628 cpu_first_thread_sibling(prev_cpu) !=
Paul Mackerras8b24e692017-06-26 15:45:51 +10002629 cpu_first_thread_sibling(pcpu))
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002630 radix_flush_cpu(kvm, prev_cpu, vcpu);
2631 if (nested)
2632 nested->prev_cpu[vcpu->arch.nested_vcpu_id] = pcpu;
2633 else
2634 vcpu->arch.prev_cpu = pcpu;
2635 }
2636}
2637
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002638static void kvmppc_start_thread(struct kvm_vcpu *vcpu, struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002639{
2640 int cpu;
2641 struct paca_struct *tpaca;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002642 struct kvm *kvm = vc->kvm;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002643
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002644 cpu = vc->pcpu;
2645 if (vcpu) {
2646 if (vcpu->arch.timer_running) {
2647 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2648 vcpu->arch.timer_running = 0;
2649 }
2650 cpu += vcpu->arch.ptid;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002651 vcpu->cpu = vc->pcpu;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002652 vcpu->arch.thread_cpu = cpu;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002653 cpumask_set_cpu(cpu, &kvm->arch.cpu_in_guest);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002654 }
Nicholas Piggind2e60072018-02-14 01:08:12 +10002655 tpaca = paca_ptrs[cpu];
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002656 tpaca->kvm_hstate.kvm_vcpu = vcpu;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002657 tpaca->kvm_hstate.ptid = cpu - vc->pcpu;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002658 tpaca->kvm_hstate.fake_suspend = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002659 /* Order stores to hstate.kvm_vcpu etc. before store to kvm_vcore */
Paul Mackerras19ccb762011-07-23 17:42:46 +10002660 smp_wmb();
Paul Mackerras898b25b2017-06-22 15:08:42 +10002661 tpaca->kvm_hstate.kvm_vcore = vc;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002662 if (cpu != smp_processor_id())
Paul Mackerras66feed62015-03-28 14:21:12 +11002663 kvmppc_ipi_thread(cpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002664}
2665
Paul Mackerras516f7892017-10-16 16:11:57 +11002666static void kvmppc_wait_for_nap(int n_threads)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002667{
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002668 int cpu = smp_processor_id();
2669 int i, loops;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002670
Paul Mackerras45c940b2016-11-18 17:43:30 +11002671 if (n_threads <= 1)
2672 return;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002673 for (loops = 0; loops < 1000000; ++loops) {
2674 /*
2675 * Check if all threads are finished.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002676 * We set the vcore pointer when starting a thread
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002677 * and the thread clears it when finished, so we look
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002678 * for any threads that still have a non-NULL vcore ptr.
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002679 */
Paul Mackerras45c940b2016-11-18 17:43:30 +11002680 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002681 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002682 break;
Paul Mackerras45c940b2016-11-18 17:43:30 +11002683 if (i == n_threads) {
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002684 HMT_medium();
2685 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002686 }
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002687 HMT_low();
Paul Mackerras371fefd2011-06-29 00:23:08 +00002688 }
2689 HMT_medium();
Paul Mackerras45c940b2016-11-18 17:43:30 +11002690 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002691 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002692 pr_err("KVM: CPU %d seems to be stuck\n", cpu + i);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002693}
2694
2695/*
2696 * Check that we are on thread 0 and that any other threads in
Paul Mackerras7b444c62012-10-15 01:16:14 +00002697 * this core are off-line. Then grab the threads so they can't
2698 * enter the kernel.
Paul Mackerras371fefd2011-06-29 00:23:08 +00002699 */
2700static int on_primary_thread(void)
2701{
2702 int cpu = smp_processor_id();
Michael Ellerman3102f782014-05-23 18:15:29 +10002703 int thr;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002704
Michael Ellerman3102f782014-05-23 18:15:29 +10002705 /* Are we on a primary subcore? */
2706 if (cpu_thread_in_subcore(cpu))
Paul Mackerras371fefd2011-06-29 00:23:08 +00002707 return 0;
Michael Ellerman3102f782014-05-23 18:15:29 +10002708
2709 thr = 0;
2710 while (++thr < threads_per_subcore)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002711 if (cpu_online(cpu + thr))
2712 return 0;
Paul Mackerras7b444c62012-10-15 01:16:14 +00002713
2714 /* Grab all hw threads so they can't go into the kernel */
Michael Ellerman3102f782014-05-23 18:15:29 +10002715 for (thr = 1; thr < threads_per_subcore; ++thr) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00002716 if (kvmppc_grab_hwthread(cpu + thr)) {
2717 /* Couldn't grab one; let the others go */
2718 do {
2719 kvmppc_release_hwthread(cpu + thr);
2720 } while (--thr > 0);
2721 return 0;
2722 }
2723 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002724 return 1;
2725}
2726
Paul Mackerrasec257162015-06-24 21:18:03 +10002727/*
2728 * A list of virtual cores for each physical CPU.
2729 * These are vcores that could run but their runner VCPU tasks are
2730 * (or may be) preempted.
2731 */
2732struct preempted_vcore_list {
2733 struct list_head list;
2734 spinlock_t lock;
2735};
2736
2737static DEFINE_PER_CPU(struct preempted_vcore_list, preempted_vcores);
2738
2739static void init_vcore_lists(void)
2740{
2741 int cpu;
2742
2743 for_each_possible_cpu(cpu) {
2744 struct preempted_vcore_list *lp = &per_cpu(preempted_vcores, cpu);
2745 spin_lock_init(&lp->lock);
2746 INIT_LIST_HEAD(&lp->list);
2747 }
2748}
2749
2750static void kvmppc_vcore_preempt(struct kvmppc_vcore *vc)
2751{
2752 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2753
2754 vc->vcore_state = VCORE_PREEMPT;
2755 vc->pcpu = smp_processor_id();
Paul Mackerras516f7892017-10-16 16:11:57 +11002756 if (vc->num_threads < threads_per_vcore(vc->kvm)) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002757 spin_lock(&lp->lock);
2758 list_add_tail(&vc->preempt_list, &lp->list);
2759 spin_unlock(&lp->lock);
2760 }
2761
2762 /* Start accumulating stolen time */
2763 kvmppc_core_start_stolen(vc);
2764}
2765
2766static void kvmppc_vcore_end_preempt(struct kvmppc_vcore *vc)
2767{
Paul Mackerras402813f2015-07-16 17:11:13 +10002768 struct preempted_vcore_list *lp;
Paul Mackerrasec257162015-06-24 21:18:03 +10002769
2770 kvmppc_core_end_stolen(vc);
2771 if (!list_empty(&vc->preempt_list)) {
Paul Mackerras402813f2015-07-16 17:11:13 +10002772 lp = &per_cpu(preempted_vcores, vc->pcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002773 spin_lock(&lp->lock);
2774 list_del_init(&vc->preempt_list);
2775 spin_unlock(&lp->lock);
2776 }
2777 vc->vcore_state = VCORE_INACTIVE;
2778}
2779
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002780/*
2781 * This stores information about the virtual cores currently
2782 * assigned to a physical core.
2783 */
Paul Mackerrasec257162015-06-24 21:18:03 +10002784struct core_info {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002785 int n_subcores;
2786 int max_subcore_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002787 int total_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002788 int subcore_threads[MAX_SUBCORES];
Paul Mackerras898b25b2017-06-22 15:08:42 +10002789 struct kvmppc_vcore *vc[MAX_SUBCORES];
Paul Mackerrasec257162015-06-24 21:18:03 +10002790};
2791
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002792/*
2793 * This mapping means subcores 0 and 1 can use threads 0-3 and 4-7
Paul Mackerras516f7892017-10-16 16:11:57 +11002794 * respectively in 2-way micro-threading (split-core) mode on POWER8.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002795 */
2796static int subcore_thread_map[MAX_SUBCORES] = { 0, 4, 2, 6 };
2797
Paul Mackerrasec257162015-06-24 21:18:03 +10002798static void init_core_info(struct core_info *cip, struct kvmppc_vcore *vc)
2799{
2800 memset(cip, 0, sizeof(*cip));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002801 cip->n_subcores = 1;
2802 cip->max_subcore_threads = vc->num_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002803 cip->total_threads = vc->num_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002804 cip->subcore_threads[0] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002805 cip->vc[0] = vc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002806}
2807
2808static bool subcore_config_ok(int n_subcores, int n_threads)
2809{
Paul Mackerras516f7892017-10-16 16:11:57 +11002810 /*
Paul Mackerras00608e12018-01-11 16:54:26 +11002811 * POWER9 "SMT4" cores are permanently in what is effectively a 4-way
2812 * split-core mode, with one thread per subcore.
Paul Mackerras516f7892017-10-16 16:11:57 +11002813 */
2814 if (cpu_has_feature(CPU_FTR_ARCH_300))
2815 return n_subcores <= 4 && n_threads == 1;
2816
2817 /* On POWER8, can only dynamically split if unsplit to begin with */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002818 if (n_subcores > 1 && threads_per_subcore < MAX_SMT_THREADS)
2819 return false;
2820 if (n_subcores > MAX_SUBCORES)
2821 return false;
2822 if (n_subcores > 1) {
2823 if (!(dynamic_mt_modes & 2))
2824 n_subcores = 4;
2825 if (n_subcores > 2 && !(dynamic_mt_modes & 4))
2826 return false;
2827 }
2828
2829 return n_subcores * roundup_pow_of_two(n_threads) <= MAX_SMT_THREADS;
Paul Mackerrasec257162015-06-24 21:18:03 +10002830}
2831
Paul Mackerras898b25b2017-06-22 15:08:42 +10002832static void init_vcore_to_run(struct kvmppc_vcore *vc)
Paul Mackerrasec257162015-06-24 21:18:03 +10002833{
Paul Mackerrasec257162015-06-24 21:18:03 +10002834 vc->entry_exit_map = 0;
2835 vc->in_guest = 0;
2836 vc->napping_threads = 0;
2837 vc->conferring_threads = 0;
Paul Mackerras57b8daa2018-04-20 22:51:11 +10002838 vc->tb_offset_applied = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002839}
2840
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002841static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip)
2842{
2843 int n_threads = vc->num_threads;
2844 int sub;
2845
2846 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
2847 return false;
2848
Paul Mackerrasaa227862018-09-12 10:42:12 +10002849 /* In one_vm_per_core mode, require all vcores to be from the same vm */
2850 if (one_vm_per_core && vc->kvm != cip->vc[0]->kvm)
2851 return false;
2852
Paul Mackerras00608e12018-01-11 16:54:26 +11002853 /* Some POWER9 chips require all threads to be in the same MMU mode */
2854 if (no_mixing_hpt_and_radix &&
Paul Mackerrasc0101502017-10-19 14:11:23 +11002855 kvm_is_radix(vc->kvm) != kvm_is_radix(cip->vc[0]->kvm))
2856 return false;
2857
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002858 if (n_threads < cip->max_subcore_threads)
2859 n_threads = cip->max_subcore_threads;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002860 if (!subcore_config_ok(cip->n_subcores + 1, n_threads))
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002861 return false;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002862 cip->max_subcore_threads = n_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002863
2864 sub = cip->n_subcores;
2865 ++cip->n_subcores;
2866 cip->total_threads += vc->num_threads;
2867 cip->subcore_threads[sub] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002868 cip->vc[sub] = vc;
2869 init_vcore_to_run(vc);
2870 list_del_init(&vc->preempt_list);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002871
2872 return true;
2873}
2874
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002875/*
2876 * Work out whether it is possible to piggyback the execution of
2877 * vcore *pvc onto the execution of the other vcores described in *cip.
2878 */
2879static bool can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip,
2880 int target_threads)
2881{
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002882 if (cip->total_threads + pvc->num_threads > target_threads)
2883 return false;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002884
Paul Mackerrasb0090312016-09-15 16:27:41 +10002885 return can_dynamic_split(pvc, cip);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002886}
2887
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002888static void prepare_threads(struct kvmppc_vcore *vc)
2889{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002890 int i;
2891 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002892
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002893 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002894 if (signal_pending(vcpu->arch.run_task))
2895 vcpu->arch.ret = -EINTR;
2896 else if (vcpu->arch.vpa.update_pending ||
2897 vcpu->arch.slb_shadow.update_pending ||
2898 vcpu->arch.dtl.update_pending)
2899 vcpu->arch.ret = RESUME_GUEST;
2900 else
2901 continue;
2902 kvmppc_remove_runnable(vc, vcpu);
2903 wake_up(&vcpu->arch.cpu_run);
2904 }
2905}
2906
Paul Mackerrasec257162015-06-24 21:18:03 +10002907static void collect_piggybacks(struct core_info *cip, int target_threads)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002908{
Paul Mackerrasec257162015-06-24 21:18:03 +10002909 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2910 struct kvmppc_vcore *pvc, *vcnext;
2911
2912 spin_lock(&lp->lock);
2913 list_for_each_entry_safe(pvc, vcnext, &lp->list, preempt_list) {
2914 if (!spin_trylock(&pvc->lock))
2915 continue;
2916 prepare_threads(pvc);
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10002917 if (!pvc->n_runnable || !pvc->kvm->arch.mmu_ready) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002918 list_del_init(&pvc->preempt_list);
2919 if (pvc->runner == NULL) {
2920 pvc->vcore_state = VCORE_INACTIVE;
2921 kvmppc_core_end_stolen(pvc);
2922 }
2923 spin_unlock(&pvc->lock);
2924 continue;
2925 }
2926 if (!can_piggyback(pvc, cip, target_threads)) {
2927 spin_unlock(&pvc->lock);
2928 continue;
2929 }
2930 kvmppc_core_end_stolen(pvc);
2931 pvc->vcore_state = VCORE_PIGGYBACK;
2932 if (cip->total_threads >= target_threads)
2933 break;
2934 }
2935 spin_unlock(&lp->lock);
2936}
2937
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10002938static bool recheck_signals_and_mmu(struct core_info *cip)
Paul Mackerras8b24e692017-06-26 15:45:51 +10002939{
2940 int sub, i;
2941 struct kvm_vcpu *vcpu;
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10002942 struct kvmppc_vcore *vc;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002943
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10002944 for (sub = 0; sub < cip->n_subcores; ++sub) {
2945 vc = cip->vc[sub];
2946 if (!vc->kvm->arch.mmu_ready)
2947 return true;
2948 for_each_runnable_thread(i, vcpu, vc)
Paul Mackerras8b24e692017-06-26 15:45:51 +10002949 if (signal_pending(vcpu->arch.run_task))
2950 return true;
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10002951 }
Paul Mackerras8b24e692017-06-26 15:45:51 +10002952 return false;
2953}
2954
Paul Mackerrasec257162015-06-24 21:18:03 +10002955static void post_guest_process(struct kvmppc_vcore *vc, bool is_master)
2956{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002957 int still_running = 0, i;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002958 u64 now;
2959 long ret;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002960 struct kvm_vcpu *vcpu;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002961
Paul Mackerrasec257162015-06-24 21:18:03 +10002962 spin_lock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002963 now = get_tb();
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002964 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras53655dd2018-10-08 16:30:54 +11002965 /*
2966 * It's safe to unlock the vcore in the loop here, because
2967 * for_each_runnable_thread() is safe against removal of
2968 * the vcpu, and the vcore state is VCORE_EXITING here,
2969 * so any vcpus becoming runnable will have their arch.trap
2970 * set to zero and can't actually run in the guest.
2971 */
2972 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002973 /* cancel pending dec exception if dec is positive */
2974 if (now < vcpu->arch.dec_expires &&
2975 kvmppc_core_pending_dec(vcpu))
2976 kvmppc_core_dequeue_dec(vcpu);
2977
2978 trace_kvm_guest_exit(vcpu);
2979
2980 ret = RESUME_GUEST;
2981 if (vcpu->arch.trap)
Tianjia Zhang8c99d342020-04-27 12:35:11 +08002982 ret = kvmppc_handle_exit_hv(vcpu,
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002983 vcpu->arch.run_task);
2984
2985 vcpu->arch.ret = ret;
2986 vcpu->arch.trap = 0;
2987
Paul Mackerras53655dd2018-10-08 16:30:54 +11002988 spin_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10002989 if (is_kvmppc_resume_guest(vcpu->arch.ret)) {
2990 if (vcpu->arch.pending_exceptions)
2991 kvmppc_core_prepare_to_enter(vcpu);
2992 if (vcpu->arch.ceded)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002993 kvmppc_set_timer(vcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002994 else
2995 ++still_running;
2996 } else {
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002997 kvmppc_remove_runnable(vc, vcpu);
2998 wake_up(&vcpu->arch.cpu_run);
2999 }
3000 }
Paul Mackerrasec257162015-06-24 21:18:03 +10003001 if (!is_master) {
Paul Mackerras563a1e92015-07-16 17:11:14 +10003002 if (still_running > 0) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003003 kvmppc_vcore_preempt(vc);
Paul Mackerras563a1e92015-07-16 17:11:14 +10003004 } else if (vc->runner) {
3005 vc->vcore_state = VCORE_PREEMPT;
3006 kvmppc_core_start_stolen(vc);
3007 } else {
3008 vc->vcore_state = VCORE_INACTIVE;
3009 }
Paul Mackerrasec257162015-06-24 21:18:03 +10003010 if (vc->n_runnable > 0 && vc->runner == NULL) {
3011 /* make sure there's a candidate runner awake */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003012 i = -1;
3013 vcpu = next_runnable_thread(vc, &i);
Paul Mackerrasec257162015-06-24 21:18:03 +10003014 wake_up(&vcpu->arch.cpu_run);
3015 }
3016 }
3017 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003018}
3019
Paul Mackerras371fefd2011-06-29 00:23:08 +00003020/*
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003021 * Clear core from the list of active host cores as we are about to
3022 * enter the guest. Only do this if it is the primary thread of the
3023 * core (not if a subcore) that is entering the guest.
3024 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003025static inline int kvmppc_clear_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003026{
3027 int core;
3028
3029 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003030 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003031 /*
3032 * Memory barrier can be omitted here as we will do a smp_wmb()
3033 * later in kvmppc_start_thread and we need ensure that state is
3034 * visible to other CPUs only after we enter guest.
3035 */
3036 core = cpu >> threads_shift;
3037 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 0;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003038 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003039}
3040
3041/*
3042 * Advertise this core as an active host core since we exited the guest
3043 * Only need to do this if it is the primary thread of the core that is
3044 * exiting.
3045 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003046static inline int kvmppc_set_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003047{
3048 int core;
3049
3050 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003051 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003052
3053 /*
3054 * Memory barrier can be omitted here because we do a spin_unlock
3055 * immediately after this which provides the memory barrier.
3056 */
3057 core = cpu >> threads_shift;
3058 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 1;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003059 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003060}
3061
Paul Mackerras8b24e692017-06-26 15:45:51 +10003062static void set_irq_happened(int trap)
3063{
3064 switch (trap) {
3065 case BOOK3S_INTERRUPT_EXTERNAL:
3066 local_paca->irq_happened |= PACA_IRQ_EE;
3067 break;
3068 case BOOK3S_INTERRUPT_H_DOORBELL:
3069 local_paca->irq_happened |= PACA_IRQ_DBELL;
3070 break;
3071 case BOOK3S_INTERRUPT_HMI:
3072 local_paca->irq_happened |= PACA_IRQ_HMI;
3073 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11003074 case BOOK3S_INTERRUPT_SYSTEM_RESET:
3075 replay_system_reset();
3076 break;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003077 }
3078}
3079
Suresh Warrierb8e6a872015-12-17 14:59:07 -06003080/*
Paul Mackerras371fefd2011-06-29 00:23:08 +00003081 * Run a set of guest threads on a physical core.
3082 * Called with vc->lock held.
3083 */
Paul Mackerras66feed62015-03-28 14:21:12 +11003084static noinline void kvmppc_run_core(struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003085{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003086 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003087 int i;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003088 int srcu_idx;
Paul Mackerrasec257162015-06-24 21:18:03 +10003089 struct core_info core_info;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003090 struct kvmppc_vcore *pvc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003091 struct kvm_split_mode split_info, *sip;
3092 int split, subcore_size, active;
3093 int sub;
3094 bool thr0_done;
3095 unsigned long cmd_bit, stat_bit;
Paul Mackerrasec257162015-06-24 21:18:03 +10003096 int pcpu, thr;
3097 int target_threads;
Paul Mackerras45c940b2016-11-18 17:43:30 +11003098 int controlled_threads;
Paul Mackerras8b24e692017-06-26 15:45:51 +10003099 int trap;
Paul Mackerras516f7892017-10-16 16:11:57 +11003100 bool is_power8;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003101 bool hpt_on_radix;
Paul Mackerras081f3232012-06-01 20:20:24 +10003102
3103 /*
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11003104 * Remove from the list any threads that have a signal pending
3105 * or need a VPA update done
3106 */
3107 prepare_threads(vc);
3108
3109 /* if the runner is no longer runnable, let the caller pick a new one */
3110 if (vc->runner->arch.state != KVMPPC_VCPU_RUNNABLE)
3111 return;
3112
3113 /*
3114 * Initialize *vc.
Paul Mackerras081f3232012-06-01 20:20:24 +10003115 */
Paul Mackerras898b25b2017-06-22 15:08:42 +10003116 init_vcore_to_run(vc);
Paul Mackerras2711e242014-12-04 16:43:28 +11003117 vc->preempt_tb = TB_NIL;
Paul Mackerras081f3232012-06-01 20:20:24 +10003118
3119 /*
Paul Mackerras45c940b2016-11-18 17:43:30 +11003120 * Number of threads that we will be controlling: the same as
3121 * the number of threads per subcore, except on POWER9,
3122 * where it's 1 because the threads are (mostly) independent.
3123 */
Paul Mackerras516f7892017-10-16 16:11:57 +11003124 controlled_threads = threads_per_vcore(vc->kvm);
Paul Mackerras45c940b2016-11-18 17:43:30 +11003125
3126 /*
Michael Ellerman3102f782014-05-23 18:15:29 +10003127 * Make sure we are running on primary threads, and that secondary
3128 * threads are offline. Also check if the number of threads in this
3129 * guest are greater than the current system threads per guest.
Paul Mackerrasc0101502017-10-19 14:11:23 +11003130 * On POWER9, we need to be not in independent-threads mode if
Paul Mackerras00608e12018-01-11 16:54:26 +11003131 * this is a HPT guest on a radix host machine where the
3132 * CPU threads may not be in different MMU modes.
Paul Mackerras7b444c62012-10-15 01:16:14 +00003133 */
Paul Mackerras00608e12018-01-11 16:54:26 +11003134 hpt_on_radix = no_mixing_hpt_and_radix && radix_enabled() &&
3135 !kvm_is_radix(vc->kvm);
Paul Mackerrasc0101502017-10-19 14:11:23 +11003136 if (((controlled_threads > 1) &&
3137 ((vc->num_threads > threads_per_subcore) || !on_primary_thread())) ||
3138 (hpt_on_radix && vc->kvm->arch.threads_indep)) {
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003139 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00003140 vcpu->arch.ret = -EBUSY;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003141 kvmppc_remove_runnable(vc, vcpu);
3142 wake_up(&vcpu->arch.cpu_run);
3143 }
Paul Mackerras7b444c62012-10-15 01:16:14 +00003144 goto out;
3145 }
3146
Paul Mackerrasec257162015-06-24 21:18:03 +10003147 /*
3148 * See if we could run any other vcores on the physical core
3149 * along with this one.
3150 */
3151 init_core_info(&core_info, vc);
3152 pcpu = smp_processor_id();
Paul Mackerras45c940b2016-11-18 17:43:30 +11003153 target_threads = controlled_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10003154 if (target_smt_mode && target_smt_mode < target_threads)
3155 target_threads = target_smt_mode;
3156 if (vc->num_threads < target_threads)
3157 collect_piggybacks(&core_info, target_threads);
Michael Ellerman3102f782014-05-23 18:15:29 +10003158
Paul Mackerras8b24e692017-06-26 15:45:51 +10003159 /*
3160 * On radix, arrange for TLB flushing if necessary.
3161 * This has to be done before disabling interrupts since
3162 * it uses smp_call_function().
3163 */
3164 pcpu = smp_processor_id();
3165 if (kvm_is_radix(vc->kvm)) {
3166 for (sub = 0; sub < core_info.n_subcores; ++sub)
3167 for_each_runnable_thread(i, vcpu, core_info.vc[sub])
3168 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
3169 }
3170
3171 /*
3172 * Hard-disable interrupts, and check resched flag and signals.
3173 * If we need to reschedule or deliver a signal, clean up
3174 * and return without going into the guest(s).
Paul Mackerras072df812017-11-09 14:30:24 +11003175 * If the mmu_ready flag has been cleared, don't go into the
Paul Mackerras38c53af2017-11-08 14:44:04 +11003176 * guest because that means a HPT resize operation is in progress.
Paul Mackerras8b24e692017-06-26 15:45:51 +10003177 */
3178 local_irq_disable();
3179 hard_irq_disable();
3180 if (lazy_irq_pending() || need_resched() ||
Paul Mackerrasd28eafc2019-08-27 11:31:37 +10003181 recheck_signals_and_mmu(&core_info)) {
Paul Mackerras8b24e692017-06-26 15:45:51 +10003182 local_irq_enable();
3183 vc->vcore_state = VCORE_INACTIVE;
3184 /* Unlock all except the primary vcore */
3185 for (sub = 1; sub < core_info.n_subcores; ++sub) {
3186 pvc = core_info.vc[sub];
3187 /* Put back on to the preempted vcores list */
3188 kvmppc_vcore_preempt(pvc);
3189 spin_unlock(&pvc->lock);
3190 }
3191 for (i = 0; i < controlled_threads; ++i)
3192 kvmppc_release_hwthread(pcpu + i);
3193 return;
3194 }
3195
3196 kvmppc_clear_host_core(pcpu);
3197
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003198 /* Decide on micro-threading (split-core) mode */
3199 subcore_size = threads_per_subcore;
3200 cmd_bit = stat_bit = 0;
3201 split = core_info.n_subcores;
3202 sip = NULL;
Paul Mackerras516f7892017-10-16 16:11:57 +11003203 is_power8 = cpu_has_feature(CPU_FTR_ARCH_207S)
3204 && !cpu_has_feature(CPU_FTR_ARCH_300);
3205
Paul Mackerrasc0101502017-10-19 14:11:23 +11003206 if (split > 1 || hpt_on_radix) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003207 sip = &split_info;
3208 memset(&split_info, 0, sizeof(split_info));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003209 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003210 split_info.vc[sub] = core_info.vc[sub];
Paul Mackerras516f7892017-10-16 16:11:57 +11003211
3212 if (is_power8) {
3213 if (split == 2 && (dynamic_mt_modes & 2)) {
3214 cmd_bit = HID0_POWER8_1TO2LPAR;
3215 stat_bit = HID0_POWER8_2LPARMODE;
3216 } else {
3217 split = 4;
3218 cmd_bit = HID0_POWER8_1TO4LPAR;
3219 stat_bit = HID0_POWER8_4LPARMODE;
3220 }
3221 subcore_size = MAX_SMT_THREADS / split;
3222 split_info.rpr = mfspr(SPRN_RPR);
3223 split_info.pmmar = mfspr(SPRN_PMMAR);
3224 split_info.ldbar = mfspr(SPRN_LDBAR);
3225 split_info.subcore_size = subcore_size;
3226 } else {
3227 split_info.subcore_size = 1;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003228 if (hpt_on_radix) {
3229 /* Use the split_info for LPCR/LPIDR changes */
3230 split_info.lpcr_req = vc->lpcr;
3231 split_info.lpidr_req = vc->kvm->arch.lpid;
3232 split_info.host_lpcr = vc->kvm->arch.host_lpcr;
3233 split_info.do_set = 1;
3234 }
Paul Mackerras516f7892017-10-16 16:11:57 +11003235 }
3236
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003237 /* order writes to split_info before kvm_split_mode pointer */
3238 smp_wmb();
3239 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003240
Paul Mackerrasc0101502017-10-19 14:11:23 +11003241 for (thr = 0; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003242 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3243
3244 paca->kvm_hstate.tid = thr;
3245 paca->kvm_hstate.napping = 0;
3246 paca->kvm_hstate.kvm_split_mode = sip;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003247 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003248
Paul Mackerras516f7892017-10-16 16:11:57 +11003249 /* Initiate micro-threading (split-core) on POWER8 if required */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003250 if (cmd_bit) {
3251 unsigned long hid0 = mfspr(SPRN_HID0);
3252
3253 hid0 |= cmd_bit | HID0_POWER8_DYNLPARDIS;
3254 mb();
3255 mtspr(SPRN_HID0, hid0);
3256 isync();
3257 for (;;) {
3258 hid0 = mfspr(SPRN_HID0);
3259 if (hid0 & stat_bit)
3260 break;
3261 cpu_relax();
3262 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +00003263 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003264
Paul Mackerras7aa15842018-04-20 19:53:22 +10003265 /*
3266 * On POWER8, set RWMR register.
3267 * Since it only affects PURR and SPURR, it doesn't affect
3268 * the host, so we don't save/restore the host value.
3269 */
3270 if (is_power8) {
3271 unsigned long rwmr_val = RWMR_RPA_P8_8THREAD;
3272 int n_online = atomic_read(&vc->online_count);
3273
3274 /*
3275 * Use the 8-thread value if we're doing split-core
3276 * or if the vcore's online count looks bogus.
3277 */
3278 if (split == 1 && threads_per_subcore == MAX_SMT_THREADS &&
3279 n_online >= 1 && n_online <= MAX_SMT_THREADS)
3280 rwmr_val = p8_rwmr_values[n_online];
3281 mtspr(SPRN_RWMR, rwmr_val);
3282 }
3283
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003284 /* Start all the threads */
3285 active = 0;
3286 for (sub = 0; sub < core_info.n_subcores; ++sub) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003287 thr = is_power8 ? subcore_thread_map[sub] : sub;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003288 thr0_done = false;
3289 active |= 1 << thr;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003290 pvc = core_info.vc[sub];
3291 pvc->pcpu = pcpu + thr;
3292 for_each_runnable_thread(i, vcpu, pvc) {
3293 kvmppc_start_thread(vcpu, pvc);
3294 kvmppc_create_dtl_entry(vcpu, pvc);
3295 trace_kvm_guest_enter(vcpu);
3296 if (!vcpu->arch.ptid)
3297 thr0_done = true;
3298 active |= 1 << (thr + vcpu->arch.ptid);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003299 }
Paul Mackerras898b25b2017-06-22 15:08:42 +10003300 /*
3301 * We need to start the first thread of each subcore
3302 * even if it doesn't have a vcpu.
3303 */
3304 if (!thr0_done)
3305 kvmppc_start_thread(NULL, pvc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003306 }
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303307
3308 /*
3309 * Ensure that split_info.do_nap is set after setting
3310 * the vcore pointer in the PACA of the secondaries.
3311 */
3312 smp_mb();
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303313
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003314 /*
3315 * When doing micro-threading, poke the inactive threads as well.
3316 * This gets them to the nap instruction after kvm_do_nap,
3317 * which reduces the time taken to unsplit later.
Paul Mackerrasc0101502017-10-19 14:11:23 +11003318 * For POWER9 HPT guest on radix host, we need all the secondary
3319 * threads woken up so they can do the LPCR/LPIDR change.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003320 */
Paul Mackerrasc0101502017-10-19 14:11:23 +11003321 if (cmd_bit || hpt_on_radix) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003322 split_info.do_nap = 1; /* ask secondaries to nap when done */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003323 for (thr = 1; thr < threads_per_subcore; ++thr)
3324 if (!(active & (1 << thr)))
3325 kvmppc_ipi_thread(pcpu + thr);
Paul Mackerras516f7892017-10-16 16:11:57 +11003326 }
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003327
Paul Mackerras2f12f032012-10-15 01:17:17 +00003328 vc->vcore_state = VCORE_RUNNING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003329 preempt_disable();
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003330
3331 trace_kvmppc_run_core(vc, 0);
3332
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003333 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003334 spin_unlock(&core_info.vc[sub]->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003335
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003336 guest_enter_irqoff();
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003337
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003338 srcu_idx = srcu_read_lock(&vc->kvm->srcu);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003339
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303340 this_cpu_disable_ftrace();
3341
Alexey Kardashevskiy3309bec2019-03-29 16:40:13 +11003342 /*
3343 * Interrupts will be enabled once we get into the guest,
3344 * so tell lockdep that we're about to enable interrupts.
3345 */
3346 trace_hardirqs_on();
3347
Paul Mackerras8b24e692017-06-26 15:45:51 +10003348 trap = __kvmppc_vcore_entry();
Paul Mackerras19ccb762011-07-23 17:42:46 +10003349
Alexey Kardashevskiy3309bec2019-03-29 16:40:13 +11003350 trace_hardirqs_off();
3351
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303352 this_cpu_enable_ftrace();
3353
Paul Mackerrasec257162015-06-24 21:18:03 +10003354 srcu_read_unlock(&vc->kvm->srcu, srcu_idx);
3355
Paul Mackerras8b24e692017-06-26 15:45:51 +10003356 set_irq_happened(trap);
3357
Paul Mackerrasec257162015-06-24 21:18:03 +10003358 spin_lock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003359 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
Paul Mackerras19ccb762011-07-23 17:42:46 +10003360 vc->vcore_state = VCORE_EXITING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003361
Paul Mackerras371fefd2011-06-29 00:23:08 +00003362 /* wait for secondary threads to finish writing their state to memory */
Paul Mackerras516f7892017-10-16 16:11:57 +11003363 kvmppc_wait_for_nap(controlled_threads);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003364
3365 /* Return to whole-core mode if we split the core earlier */
Paul Mackerras516f7892017-10-16 16:11:57 +11003366 if (cmd_bit) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003367 unsigned long hid0 = mfspr(SPRN_HID0);
3368 unsigned long loops = 0;
3369
3370 hid0 &= ~HID0_POWER8_DYNLPARDIS;
3371 stat_bit = HID0_POWER8_2LPARMODE | HID0_POWER8_4LPARMODE;
3372 mb();
3373 mtspr(SPRN_HID0, hid0);
3374 isync();
3375 for (;;) {
3376 hid0 = mfspr(SPRN_HID0);
3377 if (!(hid0 & stat_bit))
3378 break;
3379 cpu_relax();
3380 ++loops;
3381 }
Paul Mackerrasc0101502017-10-19 14:11:23 +11003382 } else if (hpt_on_radix) {
3383 /* Wait for all threads to have seen final sync */
3384 for (thr = 1; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003385 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3386
3387 while (paca->kvm_hstate.kvm_split_mode) {
Paul Mackerrasc0101502017-10-19 14:11:23 +11003388 HMT_low();
3389 barrier();
3390 }
3391 HMT_medium();
3392 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003393 }
Paul Mackerrasc0101502017-10-19 14:11:23 +11003394 split_info.do_nap = 0;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003395
Paul Mackerras8b24e692017-06-26 15:45:51 +10003396 kvmppc_set_host_core(pcpu);
3397
3398 local_irq_enable();
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003399 guest_exit();
Paul Mackerras8b24e692017-06-26 15:45:51 +10003400
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003401 /* Let secondaries go back to the offline loop */
Paul Mackerras45c940b2016-11-18 17:43:30 +11003402 for (i = 0; i < controlled_threads; ++i) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003403 kvmppc_release_hwthread(pcpu + i);
3404 if (sip && sip->napped[i])
3405 kvmppc_ipi_thread(pcpu + i);
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003406 cpumask_clear_cpu(pcpu + i, &vc->kvm->arch.cpu_in_guest);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003407 }
3408
Paul Mackerras371fefd2011-06-29 00:23:08 +00003409 spin_unlock(&vc->lock);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003410
Paul Mackerras371fefd2011-06-29 00:23:08 +00003411 /* make sure updates to secondary vcpu structs are visible now */
3412 smp_mb();
Paul Mackerrasde56a942011-06-29 00:21:34 +00003413
Paul Mackerras36ee41d2018-01-30 10:51:32 +11003414 preempt_enable();
3415
Paul Mackerras898b25b2017-06-22 15:08:42 +10003416 for (sub = 0; sub < core_info.n_subcores; ++sub) {
3417 pvc = core_info.vc[sub];
3418 post_guest_process(pvc, pvc == vc);
3419 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00003420
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003421 spin_lock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003422
Paul Mackerrasde56a942011-06-29 00:21:34 +00003423 out:
Paul Mackerras19ccb762011-07-23 17:42:46 +10003424 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003425 trace_kvmppc_run_core(vc, 1);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003426}
3427
Paul Mackerras19ccb762011-07-23 17:42:46 +10003428/*
Paul Mackerras95a64322018-10-08 16:30:55 +11003429 * Load up hypervisor-mode registers on P9.
3430 */
Paul Mackerras360cae32018-10-08 16:31:04 +11003431static int kvmhv_load_hv_regs_and_go(struct kvm_vcpu *vcpu, u64 time_limit,
3432 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003433{
3434 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3435 s64 hdec;
3436 u64 tb, purr, spurr;
3437 int trap;
3438 unsigned long host_hfscr = mfspr(SPRN_HFSCR);
3439 unsigned long host_ciabr = mfspr(SPRN_CIABR);
Ravi Bangoria09f82b02020-05-14 16:47:26 +05303440 unsigned long host_dawr = mfspr(SPRN_DAWR0);
3441 unsigned long host_dawrx = mfspr(SPRN_DAWRX0);
Paul Mackerras95a64322018-10-08 16:30:55 +11003442 unsigned long host_psscr = mfspr(SPRN_PSSCR);
3443 unsigned long host_pidr = mfspr(SPRN_PID);
3444
3445 hdec = time_limit - mftb();
3446 if (hdec < 0)
3447 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3448 mtspr(SPRN_HDEC, hdec);
3449
3450 if (vc->tb_offset) {
3451 u64 new_tb = mftb() + vc->tb_offset;
3452 mtspr(SPRN_TBU40, new_tb);
3453 tb = mftb();
3454 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3455 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3456 vc->tb_offset_applied = vc->tb_offset;
3457 }
3458
3459 if (vc->pcr)
Jordan Niethe13c7bb32019-09-17 10:46:05 +10003460 mtspr(SPRN_PCR, vc->pcr | PCR_MASK);
Paul Mackerras95a64322018-10-08 16:30:55 +11003461 mtspr(SPRN_DPDES, vc->dpdes);
3462 mtspr(SPRN_VTB, vc->vtb);
3463
3464 local_paca->kvm_hstate.host_purr = mfspr(SPRN_PURR);
3465 local_paca->kvm_hstate.host_spurr = mfspr(SPRN_SPURR);
3466 mtspr(SPRN_PURR, vcpu->arch.purr);
3467 mtspr(SPRN_SPURR, vcpu->arch.spurr);
3468
Michael Neulingc1fe1902019-04-01 17:03:12 +11003469 if (dawr_enabled()) {
Ravi Bangoria09f82b02020-05-14 16:47:26 +05303470 mtspr(SPRN_DAWR0, vcpu->arch.dawr);
3471 mtspr(SPRN_DAWRX0, vcpu->arch.dawrx);
Paul Mackerras95a64322018-10-08 16:30:55 +11003472 }
3473 mtspr(SPRN_CIABR, vcpu->arch.ciabr);
3474 mtspr(SPRN_IC, vcpu->arch.ic);
3475 mtspr(SPRN_PID, vcpu->arch.pid);
3476
3477 mtspr(SPRN_PSSCR, vcpu->arch.psscr | PSSCR_EC |
3478 (local_paca->kvm_hstate.fake_suspend << PSSCR_FAKE_SUSPEND_LG));
3479
3480 mtspr(SPRN_HFSCR, vcpu->arch.hfscr);
3481
3482 mtspr(SPRN_SPRG0, vcpu->arch.shregs.sprg0);
3483 mtspr(SPRN_SPRG1, vcpu->arch.shregs.sprg1);
3484 mtspr(SPRN_SPRG2, vcpu->arch.shregs.sprg2);
3485 mtspr(SPRN_SPRG3, vcpu->arch.shregs.sprg3);
3486
3487 mtspr(SPRN_AMOR, ~0UL);
3488
Paul Mackerras360cae32018-10-08 16:31:04 +11003489 mtspr(SPRN_LPCR, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11003490 isync();
3491
3492 kvmppc_xive_push_vcpu(vcpu);
3493
3494 mtspr(SPRN_SRR0, vcpu->arch.shregs.srr0);
3495 mtspr(SPRN_SRR1, vcpu->arch.shregs.srr1);
3496
3497 trap = __kvmhv_vcpu_entry_p9(vcpu);
3498
3499 /* Advance host PURR/SPURR by the amount used by guest */
3500 purr = mfspr(SPRN_PURR);
3501 spurr = mfspr(SPRN_SPURR);
3502 mtspr(SPRN_PURR, local_paca->kvm_hstate.host_purr +
3503 purr - vcpu->arch.purr);
3504 mtspr(SPRN_SPURR, local_paca->kvm_hstate.host_spurr +
3505 spurr - vcpu->arch.spurr);
3506 vcpu->arch.purr = purr;
3507 vcpu->arch.spurr = spurr;
3508
3509 vcpu->arch.ic = mfspr(SPRN_IC);
3510 vcpu->arch.pid = mfspr(SPRN_PID);
3511 vcpu->arch.psscr = mfspr(SPRN_PSSCR) & PSSCR_GUEST_VIS;
3512
3513 vcpu->arch.shregs.sprg0 = mfspr(SPRN_SPRG0);
3514 vcpu->arch.shregs.sprg1 = mfspr(SPRN_SPRG1);
3515 vcpu->arch.shregs.sprg2 = mfspr(SPRN_SPRG2);
3516 vcpu->arch.shregs.sprg3 = mfspr(SPRN_SPRG3);
3517
Suraj Jitindar Singh7cb9eb12019-03-18 13:59:46 +11003518 /* Preserve PSSCR[FAKE_SUSPEND] until we've called kvmppc_save_tm_hv */
3519 mtspr(SPRN_PSSCR, host_psscr |
3520 (local_paca->kvm_hstate.fake_suspend << PSSCR_FAKE_SUSPEND_LG));
Paul Mackerras95a64322018-10-08 16:30:55 +11003521 mtspr(SPRN_HFSCR, host_hfscr);
3522 mtspr(SPRN_CIABR, host_ciabr);
Ravi Bangoria09f82b02020-05-14 16:47:26 +05303523 mtspr(SPRN_DAWR0, host_dawr);
3524 mtspr(SPRN_DAWRX0, host_dawrx);
Paul Mackerras95a64322018-10-08 16:30:55 +11003525 mtspr(SPRN_PID, host_pidr);
3526
3527 /*
3528 * Since this is radix, do a eieio; tlbsync; ptesync sequence in
3529 * case we interrupted the guest between a tlbie and a ptesync.
3530 */
3531 asm volatile("eieio; tlbsync; ptesync");
3532
3533 mtspr(SPRN_LPID, vcpu->kvm->arch.host_lpid); /* restore host LPID */
3534 isync();
3535
3536 vc->dpdes = mfspr(SPRN_DPDES);
3537 vc->vtb = mfspr(SPRN_VTB);
3538 mtspr(SPRN_DPDES, 0);
3539 if (vc->pcr)
Jordan Niethe13c7bb32019-09-17 10:46:05 +10003540 mtspr(SPRN_PCR, PCR_MASK);
Paul Mackerras95a64322018-10-08 16:30:55 +11003541
3542 if (vc->tb_offset_applied) {
3543 u64 new_tb = mftb() - vc->tb_offset_applied;
3544 mtspr(SPRN_TBU40, new_tb);
3545 tb = mftb();
3546 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3547 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3548 vc->tb_offset_applied = 0;
3549 }
3550
3551 mtspr(SPRN_HDEC, 0x7fffffff);
3552 mtspr(SPRN_LPCR, vcpu->kvm->arch.host_lpcr);
3553
3554 return trap;
3555}
3556
3557/*
3558 * Virtual-mode guest entry for POWER9 and later when the host and
3559 * guest are both using the radix MMU. The LPIDR has already been set.
3560 */
Paul Mackerras360cae32018-10-08 16:31:04 +11003561int kvmhv_p9_guest_entry(struct kvm_vcpu *vcpu, u64 time_limit,
3562 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003563{
3564 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3565 unsigned long host_dscr = mfspr(SPRN_DSCR);
3566 unsigned long host_tidr = mfspr(SPRN_TIDR);
3567 unsigned long host_iamr = mfspr(SPRN_IAMR);
Michael Ellermand976f682019-02-20 19:55:00 +11003568 unsigned long host_amr = mfspr(SPRN_AMR);
Paul Mackerras95a64322018-10-08 16:30:55 +11003569 s64 dec;
3570 u64 tb;
3571 int trap, save_pmu;
3572
3573 dec = mfspr(SPRN_DEC);
3574 tb = mftb();
3575 if (dec < 512)
3576 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3577 local_paca->kvm_hstate.dec_expires = dec + tb;
3578 if (local_paca->kvm_hstate.dec_expires < time_limit)
3579 time_limit = local_paca->kvm_hstate.dec_expires;
3580
3581 vcpu->arch.ceded = 0;
3582
3583 kvmhv_save_host_pmu(); /* saves it to PACA kvm_hstate */
3584
3585 kvmppc_subcore_enter_guest();
3586
3587 vc->entry_exit_map = 1;
3588 vc->in_guest = 1;
3589
3590 if (vcpu->arch.vpa.pinned_addr) {
3591 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3592 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3593 lp->yield_count = cpu_to_be32(yield_count);
3594 vcpu->arch.vpa.dirty = 1;
3595 }
3596
3597 if (cpu_has_feature(CPU_FTR_TM) ||
3598 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3599 kvmppc_restore_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3600
3601 kvmhv_load_guest_pmu(vcpu);
3602
3603 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3604 load_fp_state(&vcpu->arch.fp);
3605#ifdef CONFIG_ALTIVEC
3606 load_vr_state(&vcpu->arch.vr);
3607#endif
Suraj Jitindar Singh44b198a2019-04-30 10:41:23 +10003608 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
Paul Mackerras95a64322018-10-08 16:30:55 +11003609
3610 mtspr(SPRN_DSCR, vcpu->arch.dscr);
3611 mtspr(SPRN_IAMR, vcpu->arch.iamr);
3612 mtspr(SPRN_PSPB, vcpu->arch.pspb);
3613 mtspr(SPRN_FSCR, vcpu->arch.fscr);
3614 mtspr(SPRN_TAR, vcpu->arch.tar);
3615 mtspr(SPRN_EBBHR, vcpu->arch.ebbhr);
3616 mtspr(SPRN_EBBRR, vcpu->arch.ebbrr);
3617 mtspr(SPRN_BESCR, vcpu->arch.bescr);
3618 mtspr(SPRN_WORT, vcpu->arch.wort);
3619 mtspr(SPRN_TIDR, vcpu->arch.tid);
3620 mtspr(SPRN_DAR, vcpu->arch.shregs.dar);
3621 mtspr(SPRN_DSISR, vcpu->arch.shregs.dsisr);
3622 mtspr(SPRN_AMR, vcpu->arch.amr);
3623 mtspr(SPRN_UAMOR, vcpu->arch.uamor);
3624
3625 if (!(vcpu->arch.ctrl & 1))
3626 mtspr(SPRN_CTRLT, mfspr(SPRN_CTRLF) & ~1);
3627
3628 mtspr(SPRN_DEC, vcpu->arch.dec_expires - mftb());
3629
Paul Mackerras360cae32018-10-08 16:31:04 +11003630 if (kvmhv_on_pseries()) {
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003631 /*
3632 * We need to save and restore the guest visible part of the
3633 * psscr (i.e. using SPRN_PSSCR_PR) since the hypervisor
3634 * doesn't do this for us. Note only required if pseries since
3635 * this is done in kvmhv_load_hv_regs_and_go() below otherwise.
3636 */
3637 unsigned long host_psscr;
Paul Mackerras360cae32018-10-08 16:31:04 +11003638 /* call our hypervisor to load up HV regs and go */
3639 struct hv_guest_state hvregs;
Paul Mackerras95a64322018-10-08 16:30:55 +11003640
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003641 host_psscr = mfspr(SPRN_PSSCR_PR);
3642 mtspr(SPRN_PSSCR_PR, vcpu->arch.psscr);
Paul Mackerras360cae32018-10-08 16:31:04 +11003643 kvmhv_save_hv_regs(vcpu, &hvregs);
3644 hvregs.lpcr = lpcr;
3645 vcpu->arch.regs.msr = vcpu->arch.shregs.msr;
3646 hvregs.version = HV_GUEST_STATE_VERSION;
3647 if (vcpu->arch.nested) {
3648 hvregs.lpid = vcpu->arch.nested->shadow_lpid;
3649 hvregs.vcpu_token = vcpu->arch.nested_vcpu_id;
3650 } else {
3651 hvregs.lpid = vcpu->kvm->arch.lpid;
3652 hvregs.vcpu_token = vcpu->vcpu_id;
3653 }
3654 hvregs.hdec_expiry = time_limit;
3655 trap = plpar_hcall_norets(H_ENTER_NESTED, __pa(&hvregs),
3656 __pa(&vcpu->arch.regs));
3657 kvmhv_restore_hv_return_state(vcpu, &hvregs);
3658 vcpu->arch.shregs.msr = vcpu->arch.regs.msr;
3659 vcpu->arch.shregs.dar = mfspr(SPRN_DAR);
3660 vcpu->arch.shregs.dsisr = mfspr(SPRN_DSISR);
Suraj Jitindar Singhc8b40832019-07-03 11:20:22 +10003661 vcpu->arch.psscr = mfspr(SPRN_PSSCR_PR);
3662 mtspr(SPRN_PSSCR_PR, host_psscr);
Paul Mackerras4bad7772018-10-08 16:31:06 +11003663
3664 /* H_CEDE has to be handled now, not later */
3665 if (trap == BOOK3S_INTERRUPT_SYSCALL && !vcpu->arch.nested &&
3666 kvmppc_get_gpr(vcpu, 3) == H_CEDE) {
3667 kvmppc_nested_cede(vcpu);
Michael Roth1f50cc12020-03-10 16:11:28 -05003668 kvmppc_set_gpr(vcpu, 3, 0);
Paul Mackerras4bad7772018-10-08 16:31:06 +11003669 trap = 0;
3670 }
Paul Mackerras360cae32018-10-08 16:31:04 +11003671 } else {
3672 trap = kvmhv_load_hv_regs_and_go(vcpu, time_limit, lpcr);
3673 }
Paul Mackerras95a64322018-10-08 16:30:55 +11003674
3675 vcpu->arch.slb_max = 0;
3676 dec = mfspr(SPRN_DEC);
Suraj Jitindar Singh86953772019-06-20 11:46:50 +10003677 if (!(lpcr & LPCR_LD)) /* Sign extend if not using large decrementer */
3678 dec = (s32) dec;
Paul Mackerras95a64322018-10-08 16:30:55 +11003679 tb = mftb();
3680 vcpu->arch.dec_expires = dec + tb;
3681 vcpu->cpu = -1;
3682 vcpu->arch.thread_cpu = -1;
3683 vcpu->arch.ctrl = mfspr(SPRN_CTRLF);
3684
3685 vcpu->arch.iamr = mfspr(SPRN_IAMR);
3686 vcpu->arch.pspb = mfspr(SPRN_PSPB);
3687 vcpu->arch.fscr = mfspr(SPRN_FSCR);
3688 vcpu->arch.tar = mfspr(SPRN_TAR);
3689 vcpu->arch.ebbhr = mfspr(SPRN_EBBHR);
3690 vcpu->arch.ebbrr = mfspr(SPRN_EBBRR);
3691 vcpu->arch.bescr = mfspr(SPRN_BESCR);
3692 vcpu->arch.wort = mfspr(SPRN_WORT);
3693 vcpu->arch.tid = mfspr(SPRN_TIDR);
3694 vcpu->arch.amr = mfspr(SPRN_AMR);
3695 vcpu->arch.uamor = mfspr(SPRN_UAMOR);
3696 vcpu->arch.dscr = mfspr(SPRN_DSCR);
3697
3698 mtspr(SPRN_PSPB, 0);
3699 mtspr(SPRN_WORT, 0);
Paul Mackerras95a64322018-10-08 16:30:55 +11003700 mtspr(SPRN_UAMOR, 0);
3701 mtspr(SPRN_DSCR, host_dscr);
3702 mtspr(SPRN_TIDR, host_tidr);
3703 mtspr(SPRN_IAMR, host_iamr);
3704 mtspr(SPRN_PSPB, 0);
3705
Michael Ellermand976f682019-02-20 19:55:00 +11003706 if (host_amr != vcpu->arch.amr)
3707 mtspr(SPRN_AMR, host_amr);
3708
Paul Mackerras95a64322018-10-08 16:30:55 +11003709 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3710 store_fp_state(&vcpu->arch.fp);
3711#ifdef CONFIG_ALTIVEC
3712 store_vr_state(&vcpu->arch.vr);
3713#endif
Suraj Jitindar Singh44b198a2019-04-30 10:41:23 +10003714 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerras95a64322018-10-08 16:30:55 +11003715
3716 if (cpu_has_feature(CPU_FTR_TM) ||
3717 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3718 kvmppc_save_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3719
3720 save_pmu = 1;
3721 if (vcpu->arch.vpa.pinned_addr) {
3722 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3723 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3724 lp->yield_count = cpu_to_be32(yield_count);
3725 vcpu->arch.vpa.dirty = 1;
3726 save_pmu = lp->pmcregs_in_use;
3727 }
Suraj Jitindar Singh63279ee2019-07-03 11:20:20 +10003728 /* Must save pmu if this guest is capable of running nested guests */
3729 save_pmu |= nesting_enabled(vcpu->kvm);
Paul Mackerras95a64322018-10-08 16:30:55 +11003730
3731 kvmhv_save_guest_pmu(vcpu, save_pmu);
3732
3733 vc->entry_exit_map = 0x101;
3734 vc->in_guest = 0;
3735
3736 mtspr(SPRN_DEC, local_paca->kvm_hstate.dec_expires - mftb());
Suraj Jitindar Singhd724c9e2019-05-30 12:17:18 +10003737 mtspr(SPRN_SPRG_VDSO_WRITE, local_paca->sprg_vdso);
Paul Mackerras95a64322018-10-08 16:30:55 +11003738
3739 kvmhv_load_host_pmu();
3740
3741 kvmppc_subcore_exit_guest();
3742
3743 return trap;
3744}
3745
3746/*
Paul Mackerras19ccb762011-07-23 17:42:46 +10003747 * Wait for some other vcpu thread to execute us, and
3748 * wake us up when we need to handle something in the host.
3749 */
Paul Mackerrasec257162015-06-24 21:18:03 +10003750static void kvmppc_wait_for_exec(struct kvmppc_vcore *vc,
3751 struct kvm_vcpu *vcpu, int wait_state)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003752{
Paul Mackerras371fefd2011-06-29 00:23:08 +00003753 DEFINE_WAIT(wait);
3754
Paul Mackerras19ccb762011-07-23 17:42:46 +10003755 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
Paul Mackerrasec257162015-06-24 21:18:03 +10003756 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
3757 spin_unlock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003758 schedule();
Paul Mackerrasec257162015-06-24 21:18:03 +10003759 spin_lock(&vc->lock);
3760 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003761 finish_wait(&vcpu->arch.cpu_run, &wait);
3762}
Paul Mackerras371fefd2011-06-29 00:23:08 +00003763
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003764static void grow_halt_poll_ns(struct kvmppc_vcore *vc)
3765{
Nir Weiner7fa08e72019-01-27 12:17:14 +02003766 if (!halt_poll_ns_grow)
3767 return;
3768
Nir Weinerdee339b2019-01-27 12:17:16 +02003769 vc->halt_poll_ns *= halt_poll_ns_grow;
3770 if (vc->halt_poll_ns < halt_poll_ns_grow_start)
Nir Weiner49113d32019-01-27 12:17:15 +02003771 vc->halt_poll_ns = halt_poll_ns_grow_start;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003772}
3773
3774static void shrink_halt_poll_ns(struct kvmppc_vcore *vc)
3775{
3776 if (halt_poll_ns_shrink == 0)
3777 vc->halt_poll_ns = 0;
3778 else
3779 vc->halt_poll_ns /= halt_poll_ns_shrink;
3780}
3781
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003782#ifdef CONFIG_KVM_XICS
3783static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3784{
Paul Mackerras03f95332019-02-04 22:07:20 +11003785 if (!xics_on_xive())
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003786 return false;
Benjamin Herrenschmidt2267ea72018-01-12 13:37:13 +11003787 return vcpu->arch.irq_pending || vcpu->arch.xive_saved_state.pipr <
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003788 vcpu->arch.xive_saved_state.cppr;
3789}
3790#else
3791static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3792{
3793 return false;
3794}
3795#endif /* CONFIG_KVM_XICS */
3796
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003797static bool kvmppc_vcpu_woken(struct kvm_vcpu *vcpu)
3798{
3799 if (vcpu->arch.pending_exceptions || vcpu->arch.prodded ||
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003800 kvmppc_doorbell_pending(vcpu) || xive_interrupt_pending(vcpu))
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003801 return true;
3802
3803 return false;
3804}
3805
Suraj Jitindar Singh908a0932016-10-14 11:53:23 +11003806/*
3807 * Check to see if any of the runnable vcpus on the vcore have pending
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003808 * exceptions or are no longer ceded
3809 */
3810static int kvmppc_vcore_check_block(struct kvmppc_vcore *vc)
3811{
3812 struct kvm_vcpu *vcpu;
3813 int i;
3814
3815 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003816 if (!vcpu->arch.ceded || kvmppc_vcpu_woken(vcpu))
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003817 return 1;
3818 }
3819
3820 return 0;
3821}
3822
Paul Mackerras19ccb762011-07-23 17:42:46 +10003823/*
3824 * All the vcpus in this vcore are idle, so wait for a decrementer
3825 * or external interrupt to one of the vcpus. vc->lock is held.
3826 */
3827static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
3828{
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003829 ktime_t cur, start_poll, start_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003830 int do_sleep = 1;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003831 u64 block_ns;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003832
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003833 /* Poll for pending exceptions and ceded state */
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003834 cur = start_poll = ktime_get();
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003835 if (vc->halt_poll_ns) {
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003836 ktime_t stop = ktime_add_ns(start_poll, vc->halt_poll_ns);
3837 ++vc->runner->stat.halt_attempted_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003838
3839 vc->vcore_state = VCORE_POLLING;
3840 spin_unlock(&vc->lock);
3841
3842 do {
3843 if (kvmppc_vcore_check_block(vc)) {
3844 do_sleep = 0;
3845 break;
3846 }
3847 cur = ktime_get();
3848 } while (single_task_running() && ktime_before(cur, stop));
3849
3850 spin_lock(&vc->lock);
3851 vc->vcore_state = VCORE_INACTIVE;
3852
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003853 if (!do_sleep) {
3854 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003855 goto out;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003856 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003857 }
3858
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07003859 prepare_to_rcuwait(&vc->wait);
3860 set_current_state(TASK_INTERRUPTIBLE);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003861 if (kvmppc_vcore_check_block(vc)) {
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07003862 finish_rcuwait(&vc->wait);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003863 do_sleep = 0;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003864 /* If we polled, count this as a successful poll */
3865 if (vc->halt_poll_ns)
3866 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003867 goto out;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003868 }
3869
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003870 start_wait = ktime_get();
3871
Paul Mackerras19ccb762011-07-23 17:42:46 +10003872 vc->vcore_state = VCORE_SLEEPING;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003873 trace_kvmppc_vcore_blocked(vc, 0);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003874 spin_unlock(&vc->lock);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003875 schedule();
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07003876 finish_rcuwait(&vc->wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003877 spin_lock(&vc->lock);
3878 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003879 trace_kvmppc_vcore_blocked(vc, 1);
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003880 ++vc->runner->stat.halt_successful_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003881
3882 cur = ktime_get();
3883
3884out:
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003885 block_ns = ktime_to_ns(cur) - ktime_to_ns(start_poll);
3886
3887 /* Attribute wait time */
3888 if (do_sleep) {
3889 vc->runner->stat.halt_wait_ns +=
3890 ktime_to_ns(cur) - ktime_to_ns(start_wait);
3891 /* Attribute failed poll time */
3892 if (vc->halt_poll_ns)
3893 vc->runner->stat.halt_poll_fail_ns +=
3894 ktime_to_ns(start_wait) -
3895 ktime_to_ns(start_poll);
3896 } else {
3897 /* Attribute successful poll time */
3898 if (vc->halt_poll_ns)
3899 vc->runner->stat.halt_poll_success_ns +=
3900 ktime_to_ns(cur) -
3901 ktime_to_ns(start_poll);
3902 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003903
3904 /* Adjust poll time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003905 if (halt_poll_ns) {
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003906 if (block_ns <= vc->halt_poll_ns)
3907 ;
3908 /* We slept and blocked for longer than the max halt time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003909 else if (vc->halt_poll_ns && block_ns > halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003910 shrink_halt_poll_ns(vc);
3911 /* We slept and our poll time is too small */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003912 else if (vc->halt_poll_ns < halt_poll_ns &&
3913 block_ns < halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003914 grow_halt_poll_ns(vc);
Suraj Jitindar Singhe03f3922016-10-14 11:53:21 +11003915 if (vc->halt_poll_ns > halt_poll_ns)
3916 vc->halt_poll_ns = halt_poll_ns;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003917 } else
3918 vc->halt_poll_ns = 0;
3919
3920 trace_kvmppc_vcore_wakeup(do_sleep, block_ns);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003921}
3922
Paul Mackerras360cae32018-10-08 16:31:04 +11003923/*
3924 * This never fails for a radix guest, as none of the operations it does
3925 * for a radix guest can fail or have a way to report failure.
3926 * kvmhv_run_single_vcpu() relies on this fact.
3927 */
Paul Mackerras432953b2017-11-09 15:37:10 +11003928static int kvmhv_setup_mmu(struct kvm_vcpu *vcpu)
3929{
3930 int r = 0;
3931 struct kvm *kvm = vcpu->kvm;
3932
Paul Mackerras0d4ee882019-05-23 16:35:34 +10003933 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11003934 if (!kvm->arch.mmu_ready) {
3935 if (!kvm_is_radix(kvm))
3936 r = kvmppc_hv_setup_htab_rma(vcpu);
3937 if (!r) {
3938 if (cpu_has_feature(CPU_FTR_ARCH_300))
3939 kvmppc_setup_partition_table(kvm);
3940 kvm->arch.mmu_ready = 1;
3941 }
3942 }
Paul Mackerras0d4ee882019-05-23 16:35:34 +10003943 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11003944 return r;
3945}
3946
Tianjia Zhang8c99d342020-04-27 12:35:11 +08003947static int kvmppc_run_vcpu(struct kvm_vcpu *vcpu)
Paul Mackerras19ccb762011-07-23 17:42:46 +10003948{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08003949 struct kvm_run *run = vcpu->run;
Paul Mackerras38c53af2017-11-08 14:44:04 +11003950 int n_ceded, i, r;
Paul Mackerras19ccb762011-07-23 17:42:46 +10003951 struct kvmppc_vcore *vc;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003952 struct kvm_vcpu *v;
Paul Mackerras9e368f22011-06-29 00:40:08 +00003953
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003954 trace_kvmppc_run_vcpu_enter(vcpu);
3955
Tianjia Zhang8c99d342020-04-27 12:35:11 +08003956 run->exit_reason = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003957 vcpu->arch.ret = RESUME_GUEST;
3958 vcpu->arch.trap = 0;
Paul Mackerras2f12f032012-10-15 01:17:17 +00003959 kvmppc_update_vpas(vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003960
Paul Mackerras371fefd2011-06-29 00:23:08 +00003961 /*
3962 * Synchronize with other threads in this virtual core
3963 */
3964 vc = vcpu->arch.vcore;
3965 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003966 vcpu->arch.ceded = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003967 vcpu->arch.run_task = current;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003968 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
Paul Mackerras19ccb762011-07-23 17:42:46 +10003969 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003970 vcpu->arch.busy_preempt = TB_NIL;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003971 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003972 ++vc->n_runnable;
3973
Paul Mackerras19ccb762011-07-23 17:42:46 +10003974 /*
3975 * This happens the first time this is called for a vcpu.
3976 * If the vcore is already running, we may be able to start
3977 * this thread straight away and have it join in.
3978 */
Paul Mackerras8455d792012-10-15 01:17:42 +00003979 if (!signal_pending(current)) {
Paul Mackerrasc0093f12017-11-20 16:12:25 +11003980 if ((vc->vcore_state == VCORE_PIGGYBACK ||
3981 vc->vcore_state == VCORE_RUNNING) &&
Paul Mackerrasec257162015-06-24 21:18:03 +10003982 !VCORE_IS_EXITING(vc)) {
Paul Mackerras2f12f032012-10-15 01:17:17 +00003983 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003984 kvmppc_start_thread(vcpu, vc);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003985 trace_kvm_guest_enter(vcpu);
Paul Mackerras8455d792012-10-15 01:17:42 +00003986 } else if (vc->vcore_state == VCORE_SLEEPING) {
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07003987 rcuwait_wake_up(&vc->wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003988 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003989
Paul Mackerras8455d792012-10-15 01:17:42 +00003990 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003991
3992 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
3993 !signal_pending(current)) {
Paul Mackerras072df812017-11-09 14:30:24 +11003994 /* See if the MMU is ready to go */
3995 if (!vcpu->kvm->arch.mmu_ready) {
Paul Mackerras38c53af2017-11-08 14:44:04 +11003996 spin_unlock(&vc->lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11003997 r = kvmhv_setup_mmu(vcpu);
Paul Mackerras38c53af2017-11-08 14:44:04 +11003998 spin_lock(&vc->lock);
3999 if (r) {
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004000 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4001 run->fail_entry.
Paul Mackerras432953b2017-11-09 15:37:10 +11004002 hardware_entry_failure_reason = 0;
Paul Mackerras38c53af2017-11-08 14:44:04 +11004003 vcpu->arch.ret = r;
4004 break;
4005 }
4006 }
4007
Paul Mackerrasec257162015-06-24 21:18:03 +10004008 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
4009 kvmppc_vcore_end_preempt(vc);
4010
Paul Mackerras8455d792012-10-15 01:17:42 +00004011 if (vc->vcore_state != VCORE_INACTIVE) {
Paul Mackerrasec257162015-06-24 21:18:03 +10004012 kvmppc_wait_for_exec(vc, vcpu, TASK_INTERRUPTIBLE);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004013 continue;
4014 }
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004015 for_each_runnable_thread(i, v, vc) {
Scott Wood7e28e60e2011-11-08 18:23:20 -06004016 kvmppc_core_prepare_to_enter(v);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004017 if (signal_pending(v->arch.run_task)) {
4018 kvmppc_remove_runnable(vc, v);
4019 v->stat.signal_exits++;
Tianjia Zhang2610a572020-04-27 12:35:10 +08004020 v->run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004021 v->arch.ret = -EINTR;
4022 wake_up(&v->arch.cpu_run);
4023 }
4024 }
Paul Mackerras8455d792012-10-15 01:17:42 +00004025 if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
4026 break;
Paul Mackerras8455d792012-10-15 01:17:42 +00004027 n_ceded = 0;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004028 for_each_runnable_thread(i, v, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10004029 if (!kvmppc_vcpu_woken(v))
Paul Mackerras8455d792012-10-15 01:17:42 +00004030 n_ceded += v->arch.ceded;
Paul Mackerras4619ac82013-04-17 20:31:41 +00004031 else
4032 v->arch.ceded = 0;
4033 }
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004034 vc->runner = vcpu;
4035 if (n_ceded == vc->n_runnable) {
Paul Mackerras8455d792012-10-15 01:17:42 +00004036 kvmppc_vcore_blocked(vc);
Konstantin Khlebnikovc56dadf2015-07-15 12:52:03 +03004037 } else if (need_resched()) {
Paul Mackerrasec257162015-06-24 21:18:03 +10004038 kvmppc_vcore_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004039 /* Let something else run */
4040 cond_resched_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10004041 if (vc->vcore_state == VCORE_PREEMPT)
4042 kvmppc_vcore_end_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004043 } else {
Paul Mackerras8455d792012-10-15 01:17:42 +00004044 kvmppc_run_core(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11004045 }
Paul Mackerras0456ec42012-02-03 00:56:21 +00004046 vc->runner = NULL;
Paul Mackerras371fefd2011-06-29 00:23:08 +00004047 }
4048
Paul Mackerras8455d792012-10-15 01:17:42 +00004049 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
4050 (vc->vcore_state == VCORE_RUNNING ||
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004051 vc->vcore_state == VCORE_EXITING ||
4052 vc->vcore_state == VCORE_PIGGYBACK))
Paul Mackerrasec257162015-06-24 21:18:03 +10004053 kvmppc_wait_for_exec(vc, vcpu, TASK_UNINTERRUPTIBLE);
Paul Mackerras8455d792012-10-15 01:17:42 +00004054
Paul Mackerras5fc3e642015-09-18 13:13:44 +10004055 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
4056 kvmppc_vcore_end_preempt(vc);
4057
Paul Mackerras8455d792012-10-15 01:17:42 +00004058 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
4059 kvmppc_remove_runnable(vc, vcpu);
4060 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004061 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras8455d792012-10-15 01:17:42 +00004062 vcpu->arch.ret = -EINTR;
4063 }
4064
4065 if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) {
4066 /* Wake up some vcpu to run the core */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10004067 i = -1;
4068 v = next_runnable_thread(vc, &i);
Paul Mackerras8455d792012-10-15 01:17:42 +00004069 wake_up(&v->arch.cpu_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004070 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00004071
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004072 trace_kvmppc_run_vcpu_exit(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10004073 spin_unlock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00004074 return vcpu->arch.ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004075}
4076
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004077int kvmhv_run_single_vcpu(struct kvm_vcpu *vcpu, u64 time_limit,
Paul Mackerras360cae32018-10-08 16:31:04 +11004078 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11004079{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004080 struct kvm_run *run = vcpu->run;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11004081 int trap, r, pcpu;
Paul Mackerras70ea13f2019-04-29 19:02:58 +10004082 int srcu_idx, lpid;
Paul Mackerras95a64322018-10-08 16:30:55 +11004083 struct kvmppc_vcore *vc;
4084 struct kvm *kvm = vcpu->kvm;
Paul Mackerras360cae32018-10-08 16:31:04 +11004085 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras95a64322018-10-08 16:30:55 +11004086
4087 trace_kvmppc_run_vcpu_enter(vcpu);
4088
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004089 run->exit_reason = 0;
Paul Mackerras95a64322018-10-08 16:30:55 +11004090 vcpu->arch.ret = RESUME_GUEST;
4091 vcpu->arch.trap = 0;
4092
4093 vc = vcpu->arch.vcore;
4094 vcpu->arch.ceded = 0;
4095 vcpu->arch.run_task = current;
Paul Mackerras95a64322018-10-08 16:30:55 +11004096 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
4097 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
4098 vcpu->arch.busy_preempt = TB_NIL;
4099 vcpu->arch.last_inst = KVM_INST_FETCH_FAILED;
4100 vc->runnable_threads[0] = vcpu;
4101 vc->n_runnable = 1;
4102 vc->runner = vcpu;
4103
4104 /* See if the MMU is ready to go */
Paul Mackerras360cae32018-10-08 16:31:04 +11004105 if (!kvm->arch.mmu_ready)
4106 kvmhv_setup_mmu(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004107
4108 if (need_resched())
4109 cond_resched();
4110
4111 kvmppc_update_vpas(vcpu);
4112
4113 init_vcore_to_run(vc);
4114 vc->preempt_tb = TB_NIL;
4115
4116 preempt_disable();
4117 pcpu = smp_processor_id();
4118 vc->pcpu = pcpu;
4119 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
4120
4121 local_irq_disable();
4122 hard_irq_disable();
4123 if (signal_pending(current))
4124 goto sigpend;
4125 if (lazy_irq_pending() || need_resched() || !kvm->arch.mmu_ready)
4126 goto out;
4127
Paul Mackerras360cae32018-10-08 16:31:04 +11004128 if (!nested) {
4129 kvmppc_core_prepare_to_enter(vcpu);
4130 if (vcpu->arch.doorbell_request) {
4131 vc->dpdes = 1;
4132 smp_wmb();
4133 vcpu->arch.doorbell_request = 0;
4134 }
4135 if (test_bit(BOOK3S_IRQPRIO_EXTERNAL,
4136 &vcpu->arch.pending_exceptions))
4137 lpcr |= LPCR_MER;
4138 } else if (vcpu->arch.pending_exceptions ||
4139 vcpu->arch.doorbell_request ||
4140 xive_interrupt_pending(vcpu)) {
4141 vcpu->arch.ret = RESUME_HOST;
4142 goto out;
4143 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004144
4145 kvmppc_clear_host_core(pcpu);
4146
4147 local_paca->kvm_hstate.tid = 0;
4148 local_paca->kvm_hstate.napping = 0;
4149 local_paca->kvm_hstate.kvm_split_mode = NULL;
4150 kvmppc_start_thread(vcpu, vc);
4151 kvmppc_create_dtl_entry(vcpu, vc);
4152 trace_kvm_guest_enter(vcpu);
4153
4154 vc->vcore_state = VCORE_RUNNING;
4155 trace_kvmppc_run_core(vc, 0);
4156
Paul Mackerras70ea13f2019-04-29 19:02:58 +10004157 if (cpu_has_feature(CPU_FTR_HVMODE)) {
4158 lpid = nested ? nested->shadow_lpid : kvm->arch.lpid;
4159 mtspr(SPRN_LPID, lpid);
4160 isync();
4161 kvmppc_check_need_tlb_flush(kvm, pcpu, nested);
4162 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004163
Paul Mackerras95a64322018-10-08 16:30:55 +11004164 guest_enter_irqoff();
4165
4166 srcu_idx = srcu_read_lock(&kvm->srcu);
4167
4168 this_cpu_disable_ftrace();
4169
Paul Mackerras1b28d552019-05-28 15:01:59 +10004170 /* Tell lockdep that we're about to enable interrupts */
4171 trace_hardirqs_on();
4172
Paul Mackerras360cae32018-10-08 16:31:04 +11004173 trap = kvmhv_p9_guest_entry(vcpu, time_limit, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004174 vcpu->arch.trap = trap;
4175
Paul Mackerras1b28d552019-05-28 15:01:59 +10004176 trace_hardirqs_off();
4177
Paul Mackerras95a64322018-10-08 16:30:55 +11004178 this_cpu_enable_ftrace();
4179
4180 srcu_read_unlock(&kvm->srcu, srcu_idx);
4181
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11004182 if (cpu_has_feature(CPU_FTR_HVMODE)) {
4183 mtspr(SPRN_LPID, kvm->arch.host_lpid);
4184 isync();
4185 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004186
Paul Mackerras95a64322018-10-08 16:30:55 +11004187 set_irq_happened(trap);
4188
4189 kvmppc_set_host_core(pcpu);
4190
4191 local_irq_enable();
4192 guest_exit();
4193
4194 cpumask_clear_cpu(pcpu, &kvm->arch.cpu_in_guest);
4195
4196 preempt_enable();
4197
Suraj Jitindar Singh3c25ab32019-06-20 11:46:51 +10004198 /*
4199 * cancel pending decrementer exception if DEC is now positive, or if
4200 * entering a nested guest in which case the decrementer is now owned
4201 * by L2 and the L1 decrementer is provided in hdec_expires
4202 */
4203 if (kvmppc_core_pending_dec(vcpu) &&
4204 ((get_tb() < vcpu->arch.dec_expires) ||
4205 (trap == BOOK3S_INTERRUPT_SYSCALL &&
4206 kvmppc_get_gpr(vcpu, 3) == H_ENTER_NESTED)))
Paul Mackerras95a64322018-10-08 16:30:55 +11004207 kvmppc_core_dequeue_dec(vcpu);
4208
4209 trace_kvm_guest_exit(vcpu);
4210 r = RESUME_GUEST;
Paul Mackerras360cae32018-10-08 16:31:04 +11004211 if (trap) {
4212 if (!nested)
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004213 r = kvmppc_handle_exit_hv(vcpu, current);
Paul Mackerras360cae32018-10-08 16:31:04 +11004214 else
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004215 r = kvmppc_handle_nested_exit(vcpu);
Paul Mackerras360cae32018-10-08 16:31:04 +11004216 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004217 vcpu->arch.ret = r;
4218
4219 if (is_kvmppc_resume_guest(r) && vcpu->arch.ceded &&
4220 !kvmppc_vcpu_woken(vcpu)) {
4221 kvmppc_set_timer(vcpu);
4222 while (vcpu->arch.ceded && !kvmppc_vcpu_woken(vcpu)) {
4223 if (signal_pending(current)) {
4224 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004225 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras95a64322018-10-08 16:30:55 +11004226 vcpu->arch.ret = -EINTR;
4227 break;
4228 }
4229 spin_lock(&vc->lock);
4230 kvmppc_vcore_blocked(vc);
4231 spin_unlock(&vc->lock);
4232 }
4233 }
4234 vcpu->arch.ceded = 0;
4235
4236 vc->vcore_state = VCORE_INACTIVE;
4237 trace_kvmppc_run_core(vc, 1);
4238
4239 done:
4240 kvmppc_remove_runnable(vc, vcpu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004241 trace_kvmppc_run_vcpu_exit(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11004242
4243 return vcpu->arch.ret;
4244
4245 sigpend:
4246 vcpu->stat.signal_exits++;
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004247 run->exit_reason = KVM_EXIT_INTR;
Paul Mackerras95a64322018-10-08 16:30:55 +11004248 vcpu->arch.ret = -EINTR;
4249 out:
4250 local_irq_enable();
4251 preempt_enable();
4252 goto done;
4253}
4254
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004255static int kvmppc_vcpu_run_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004256{
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004257 struct kvm_run *run = vcpu->run;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004258 int r;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004259 int srcu_idx;
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004260 unsigned long ebb_regs[3] = {}; /* shut up GCC */
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004261 unsigned long user_tar = 0;
4262 unsigned int user_vrsave;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004263 struct kvm *kvm;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004264
Alexander Grafaf8f38b2011-08-10 13:57:08 +02004265 if (!vcpu->arch.sane) {
4266 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4267 return -EINVAL;
4268 }
4269
Paul Mackerras46a704f2017-06-15 16:10:27 +10004270 /*
4271 * Don't allow entry with a suspended transaction, because
4272 * the guest entry/exit code will lose it.
4273 * If the guest has TM enabled, save away their TM-related SPRs
4274 * (they will get restored by the TM unavailable interrupt).
4275 */
4276#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
4277 if (cpu_has_feature(CPU_FTR_TM) && current->thread.regs &&
4278 (current->thread.regs->msr & MSR_TM)) {
4279 if (MSR_TM_ACTIVE(current->thread.regs->msr)) {
4280 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4281 run->fail_entry.hardware_entry_failure_reason = 0;
4282 return -EINVAL;
4283 }
Paul Mackerrase4705712017-07-21 13:57:14 +10004284 /* Enable TM so we can read the TM SPRs */
4285 mtmsr(mfmsr() | MSR_TM);
Paul Mackerras46a704f2017-06-15 16:10:27 +10004286 current->thread.tm_tfhar = mfspr(SPRN_TFHAR);
4287 current->thread.tm_tfiar = mfspr(SPRN_TFIAR);
4288 current->thread.tm_texasr = mfspr(SPRN_TEXASR);
4289 current->thread.regs->msr &= ~MSR_TM;
4290 }
4291#endif
4292
Paul Mackerras7aa15842018-04-20 19:53:22 +10004293 /*
4294 * Force online to 1 for the sake of old userspace which doesn't
4295 * set it.
4296 */
4297 if (!vcpu->arch.online) {
4298 atomic_inc(&vcpu->arch.vcore->online_count);
4299 vcpu->arch.online = 1;
4300 }
4301
Scott Wood25051b5a2011-11-08 18:23:23 -06004302 kvmppc_core_prepare_to_enter(vcpu);
4303
Paul Mackerras19ccb762011-07-23 17:42:46 +10004304 /* No need to go into the guest when all we'll do is come back out */
4305 if (signal_pending(current)) {
4306 run->exit_reason = KVM_EXIT_INTR;
4307 return -EINTR;
4308 }
4309
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004310 kvm = vcpu->kvm;
4311 atomic_inc(&kvm->arch.vcpus_running);
4312 /* Order vcpus_running vs. mmu_ready, see kvmppc_alloc_reset_hpt */
Paul Mackerras32fad282012-05-04 02:32:53 +00004313 smp_mb();
4314
Anton Blanchard579e6332015-10-29 11:44:09 +11004315 flush_all_to_thread(current);
4316
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004317 /* Save userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004318 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4319 ebb_regs[0] = mfspr(SPRN_EBBHR);
4320 ebb_regs[1] = mfspr(SPRN_EBBRR);
4321 ebb_regs[2] = mfspr(SPRN_BESCR);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004322 user_tar = mfspr(SPRN_TAR);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004323 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004324 user_vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004325
Davidlohr Buesoda4ad882020-04-23 22:48:37 -07004326 vcpu->arch.waitp = &vcpu->arch.vcore->wait;
Leonardo Bras8a9c8922019-11-26 19:36:30 -03004327 vcpu->arch.pgdir = kvm->mm->pgd;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004328 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004329
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004330 do {
Paul Mackerras8d9fcac2018-10-19 20:44:04 +11004331 /*
4332 * The early POWER9 chips that can't mix radix and HPT threads
4333 * on the same core also need the workaround for the problem
4334 * where the TLB would prefetch entries in the guest exit path
4335 * for radix guests using the guest PIDR value and LPID 0.
4336 * The workaround is in the old path (kvmppc_run_vcpu())
4337 * but not the new path (kvmhv_run_single_vcpu()).
4338 */
4339 if (kvm->arch.threads_indep && kvm_is_radix(kvm) &&
4340 !no_mixing_hpt_and_radix)
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004341 r = kvmhv_run_single_vcpu(vcpu, ~(u64)0,
Paul Mackerras360cae32018-10-08 16:31:04 +11004342 vcpu->arch.vcore->lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004343 else
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004344 r = kvmppc_run_vcpu(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004345
4346 if (run->exit_reason == KVM_EXIT_PAPR_HCALL &&
4347 !(vcpu->arch.shregs.msr & MSR_PR)) {
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004348 trace_kvm_hcall_enter(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004349 r = kvmppc_pseries_do_hcall(vcpu);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004350 trace_kvm_hcall_exit(vcpu, r);
Scott Wood7e28e60e2011-11-08 18:23:20 -06004351 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004352 } else if (r == RESUME_PAGE_FAULT) {
Paul Mackerras432953b2017-11-09 15:37:10 +11004353 srcu_idx = srcu_read_lock(&kvm->srcu);
Tianjia Zhang8c99d342020-04-27 12:35:11 +08004354 r = kvmppc_book3s_hv_page_fault(vcpu,
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004355 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
Paul Mackerras432953b2017-11-09 15:37:10 +11004356 srcu_read_unlock(&kvm->srcu, srcu_idx);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004357 } else if (r == RESUME_PASSTHROUGH) {
Paul Mackerras03f95332019-02-04 22:07:20 +11004358 if (WARN_ON(xics_on_xive()))
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004359 r = H_SUCCESS;
4360 else
4361 r = kvmppc_xics_rm_complete(vcpu, 0);
4362 }
Greg Kurze59d24e2014-02-06 17:36:56 +01004363 } while (is_kvmppc_resume_guest(r));
Paul Mackerras32fad282012-05-04 02:32:53 +00004364
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004365 /* Restore userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004366 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4367 mtspr(SPRN_EBBHR, ebb_regs[0]);
4368 mtspr(SPRN_EBBRR, ebb_regs[1]);
4369 mtspr(SPRN_BESCR, ebb_regs[2]);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004370 mtspr(SPRN_TAR, user_tar);
4371 mtspr(SPRN_FSCR, current->thread.fscr);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004372 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004373 mtspr(SPRN_VRSAVE, user_vrsave);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004374
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004375 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras432953b2017-11-09 15:37:10 +11004376 atomic_dec(&kvm->arch.vcpus_running);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004377 return r;
4378}
4379
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004380static void kvmppc_add_seg_page_size(struct kvm_ppc_one_seg_page_size **sps,
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004381 int shift, int sllp)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004382{
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004383 (*sps)->page_shift = shift;
4384 (*sps)->slb_enc = sllp;
4385 (*sps)->enc[0].page_shift = shift;
4386 (*sps)->enc[0].pte_enc = kvmppc_pgsize_lp_encoding(shift, shift);
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304387 /*
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004388 * Add 16MB MPSS support (may get filtered out by userspace)
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304389 */
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004390 if (shift != 24) {
4391 int penc = kvmppc_pgsize_lp_encoding(shift, 24);
4392 if (penc != -1) {
4393 (*sps)->enc[1].page_shift = 24;
4394 (*sps)->enc[1].pte_enc = penc;
4395 }
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304396 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004397 (*sps)++;
4398}
4399
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304400static int kvm_vm_ioctl_get_smmu_info_hv(struct kvm *kvm,
4401 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004402{
4403 struct kvm_ppc_one_seg_page_size *sps;
4404
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004405 /*
Paul Mackerrase3bfed12017-08-25 19:53:39 +10004406 * POWER7, POWER8 and POWER9 all support 32 storage keys for data.
4407 * POWER7 doesn't support keys for instruction accesses,
4408 * POWER8 and POWER9 do.
4409 */
4410 info->data_keys = 32;
4411 info->instr_keys = cpu_has_feature(CPU_FTR_ARCH_207S) ? 32 : 0;
4412
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004413 /* POWER7, 8 and 9 all have 1T segments and 32-entry SLB */
4414 info->flags = KVM_PPC_PAGE_SIZES_REAL | KVM_PPC_1T_SEGMENTS;
4415 info->slb_size = 32;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004416
4417 /* We only support these sizes for now, and no muti-size segments */
4418 sps = &info->sps[0];
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004419 kvmppc_add_seg_page_size(&sps, 12, 0);
4420 kvmppc_add_seg_page_size(&sps, 16, SLB_VSID_L | SLB_VSID_LP_01);
4421 kvmppc_add_seg_page_size(&sps, 24, SLB_VSID_L);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004422
Paul Mackerras901f8c32018-10-08 14:24:30 +11004423 /* If running as a nested hypervisor, we don't support HPT guests */
4424 if (kvmhv_on_pseries())
4425 info->flags |= KVM_PPC_NO_HASH;
4426
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004427 return 0;
4428}
4429
Paul Mackerras82ed3612011-12-15 02:03:22 +00004430/*
4431 * Get (and clear) the dirty memory log for a memory slot.
4432 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304433static int kvm_vm_ioctl_get_dirty_log_hv(struct kvm *kvm,
4434 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004435{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004436 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004437 struct kvm_memory_slot *memslot;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004438 int i, r;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004439 unsigned long n;
Paul Mackerrase641a312017-10-26 16:39:19 +11004440 unsigned long *buf, *p;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004441 struct kvm_vcpu *vcpu;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004442
4443 mutex_lock(&kvm->slots_lock);
4444
4445 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07004446 if (log->slot >= KVM_USER_MEM_SLOTS)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004447 goto out;
4448
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004449 slots = kvm_memslots(kvm);
4450 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004451 r = -ENOENT;
Sean Christopherson0577d1a2020-02-18 13:07:31 -08004452 if (!memslot || !memslot->dirty_bitmap)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004453 goto out;
4454
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004455 /*
Paul Mackerrase641a312017-10-26 16:39:19 +11004456 * Use second half of bitmap area because both HPT and radix
4457 * accumulate bits in the first half.
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004458 */
Paul Mackerras82ed3612011-12-15 02:03:22 +00004459 n = kvm_dirty_bitmap_bytes(memslot);
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004460 buf = memslot->dirty_bitmap + n / sizeof(long);
4461 memset(buf, 0, n);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004462
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004463 if (kvm_is_radix(kvm))
4464 r = kvmppc_hv_get_dirty_log_radix(kvm, memslot, buf);
4465 else
4466 r = kvmppc_hv_get_dirty_log_hpt(kvm, memslot, buf);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004467 if (r)
4468 goto out;
4469
Paul Mackerrase641a312017-10-26 16:39:19 +11004470 /*
4471 * We accumulate dirty bits in the first half of the
4472 * memslot's dirty_bitmap area, for when pages are paged
4473 * out or modified by the host directly. Pick up these
4474 * bits and add them to the map.
4475 */
4476 p = memslot->dirty_bitmap;
4477 for (i = 0; i < n / sizeof(long); ++i)
4478 buf[i] |= xchg(&p[i], 0);
4479
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004480 /* Harvest dirty bits from VPA and DTL updates */
4481 /* Note: we never modify the SLB shadow buffer areas */
4482 kvm_for_each_vcpu(i, vcpu, kvm) {
4483 spin_lock(&vcpu->arch.vpa_update_lock);
4484 kvmppc_harvest_vpa_dirty(&vcpu->arch.vpa, memslot, buf);
4485 kvmppc_harvest_vpa_dirty(&vcpu->arch.dtl, memslot, buf);
4486 spin_unlock(&vcpu->arch.vpa_update_lock);
4487 }
4488
Paul Mackerras82ed3612011-12-15 02:03:22 +00004489 r = -EFAULT;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004490 if (copy_to_user(log->dirty_bitmap, buf, n))
Paul Mackerras82ed3612011-12-15 02:03:22 +00004491 goto out;
4492
4493 r = 0;
4494out:
4495 mutex_unlock(&kvm->slots_lock);
4496 return r;
4497}
4498
Sean Christophersone96c81e2020-02-18 13:07:27 -08004499static void kvmppc_core_free_memslot_hv(struct kvm_memory_slot *slot)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004500{
Sean Christophersone96c81e2020-02-18 13:07:27 -08004501 vfree(slot->arch.rmap);
4502 slot->arch.rmap = NULL;
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004503}
4504
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304505static int kvmppc_core_prepare_memory_region_hv(struct kvm *kvm,
Sean Christopherson82307e62020-02-18 13:07:18 -08004506 struct kvm_memory_slot *slot,
4507 const struct kvm_userspace_memory_region *mem,
4508 enum kvm_mr_change change)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004509{
Sean Christopherson82307e62020-02-18 13:07:18 -08004510 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
4511
4512 if (change == KVM_MR_CREATE) {
4513 slot->arch.rmap = vzalloc(array_size(npages,
4514 sizeof(*slot->arch.rmap)));
4515 if (!slot->arch.rmap)
4516 return -ENOMEM;
4517 }
4518
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004519 return 0;
4520}
4521
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304522static void kvmppc_core_commit_memory_region_hv(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02004523 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004524 const struct kvm_memory_slot *old,
Bharata B Raof032b732018-12-12 15:15:30 +11004525 const struct kvm_memory_slot *new,
4526 enum kvm_mr_change change)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004527{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004528 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004529
Yongji Xiea56ee9f2016-11-04 13:55:12 +08004530 /*
4531 * If we are making a new memslot, it might make
4532 * some address that was previously cached as emulated
4533 * MMIO be no longer emulated MMIO, so invalidate
4534 * all the caches of emulated MMIO translations.
4535 */
4536 if (npages)
4537 atomic64_inc(&kvm->arch.mmio_update);
Paul Mackerras5af3e9d2018-12-12 15:17:17 +11004538
4539 /*
4540 * For change == KVM_MR_MOVE or KVM_MR_DELETE, higher levels
4541 * have already called kvm_arch_flush_shadow_memslot() to
4542 * flush shadow mappings. For KVM_MR_CREATE we have no
4543 * previous mappings. So the only case to handle is
4544 * KVM_MR_FLAGS_ONLY when the KVM_MEM_LOG_DIRTY_PAGES bit
4545 * has been changed.
4546 * For radix guests, we flush on setting KVM_MEM_LOG_DIRTY_PAGES
4547 * to get rid of any THP PTEs in the partition-scoped page tables
4548 * so we can track dirtiness at the page level; we flush when
4549 * clearing KVM_MEM_LOG_DIRTY_PAGES so that we can go back to
4550 * using THP PTEs.
4551 */
4552 if (change == KVM_MR_FLAGS_ONLY && kvm_is_radix(kvm) &&
4553 ((new->flags ^ old->flags) & KVM_MEM_LOG_DIRTY_PAGES))
4554 kvmppc_radix_flush_memslot(kvm, old);
Bharata B Raoc3262252019-11-25 08:36:29 +05304555 /*
4556 * If UV hasn't yet called H_SVM_INIT_START, don't register memslots.
4557 */
4558 if (!kvm->arch.secure_guest)
4559 return;
4560
4561 switch (change) {
4562 case KVM_MR_CREATE:
Laurent Dufoura2ce7202020-07-27 11:07:18 -07004563 /*
4564 * @TODO kvmppc_uvmem_memslot_create() can fail and
4565 * return error. Fix this.
4566 */
4567 kvmppc_uvmem_memslot_create(kvm, new);
Bharata B Raoc3262252019-11-25 08:36:29 +05304568 break;
4569 case KVM_MR_DELETE:
Laurent Dufoura2ce7202020-07-27 11:07:18 -07004570 kvmppc_uvmem_memslot_delete(kvm, old);
Bharata B Raoc3262252019-11-25 08:36:29 +05304571 break;
4572 default:
4573 /* TODO: Handle KVM_MR_MOVE */
4574 break;
4575 }
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004576}
4577
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004578/*
4579 * Update LPCR values in kvm->arch and in vcores.
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004580 * Caller must hold kvm->arch.mmu_setup_lock (for mutual exclusion
4581 * of kvm->arch.lpcr update).
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004582 */
4583void kvmppc_update_lpcr(struct kvm *kvm, unsigned long lpcr, unsigned long mask)
4584{
4585 long int i;
4586 u32 cores_done = 0;
4587
4588 if ((kvm->arch.lpcr & mask) == lpcr)
4589 return;
4590
4591 kvm->arch.lpcr = (kvm->arch.lpcr & ~mask) | lpcr;
4592
4593 for (i = 0; i < KVM_MAX_VCORES; ++i) {
4594 struct kvmppc_vcore *vc = kvm->arch.vcores[i];
4595 if (!vc)
4596 continue;
4597 spin_lock(&vc->lock);
4598 vc->lpcr = (vc->lpcr & ~mask) | lpcr;
4599 spin_unlock(&vc->lock);
4600 if (++cores_done >= kvm->arch.online_vcores)
4601 break;
4602 }
4603}
4604
Paul Mackerrasded13fc2017-11-22 14:38:53 +11004605void kvmppc_setup_partition_table(struct kvm *kvm)
Paul Mackerras7a840842016-11-16 22:25:20 +11004606{
4607 unsigned long dw0, dw1;
4608
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004609 if (!kvm_is_radix(kvm)) {
4610 /* PS field - page size for VRMA */
4611 dw0 = ((kvm->arch.vrma_slb_v & SLB_VSID_L) >> 1) |
4612 ((kvm->arch.vrma_slb_v & SLB_VSID_LP) << 1);
4613 /* HTABSIZE and HTABORG fields */
4614 dw0 |= kvm->arch.sdr1;
Paul Mackerras7a840842016-11-16 22:25:20 +11004615
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004616 /* Second dword as set by userspace */
4617 dw1 = kvm->arch.process_table;
4618 } else {
4619 dw0 = PATB_HR | radix__get_tree_size() |
4620 __pa(kvm->arch.pgtable) | RADIX_PGD_INDEX_SIZE;
4621 dw1 = PATB_GR | kvm->arch.process_table;
4622 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004623 kvmhv_set_ptbl_entry(kvm->arch.lpid, dw0, dw1);
Paul Mackerras7a840842016-11-16 22:25:20 +11004624}
4625
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004626/*
4627 * Set up HPT (hashed page table) and RMA (real-mode area).
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004628 * Must be called with kvm->arch.mmu_setup_lock held.
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004629 */
Paul Mackerras32fad282012-05-04 02:32:53 +00004630static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004631{
4632 int err = 0;
4633 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004634 unsigned long hva;
4635 struct kvm_memory_slot *memslot;
4636 struct vm_area_struct *vma;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004637 unsigned long lpcr = 0, senc;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004638 unsigned long psize, porder;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004639 int srcu_idx;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004640
Paul Mackerras32fad282012-05-04 02:32:53 +00004641 /* Allocate hashed page table (if not done already) and reset it */
David Gibson3f9d4f52016-12-20 16:49:00 +11004642 if (!kvm->arch.hpt.virt) {
David Gibsonaae07772016-12-20 16:49:02 +11004643 int order = KVM_DEFAULT_HPT_ORDER;
4644 struct kvm_hpt_info info;
4645
4646 err = kvmppc_allocate_hpt(&info, order);
4647 /* If we get here, it means userspace didn't specify a
4648 * size explicitly. So, try successively smaller
4649 * sizes if the default failed. */
4650 while ((err == -ENOMEM) && --order >= PPC_MIN_HPT_ORDER)
4651 err = kvmppc_allocate_hpt(&info, order);
4652
4653 if (err < 0) {
Paul Mackerras32fad282012-05-04 02:32:53 +00004654 pr_err("KVM: Couldn't alloc HPT\n");
4655 goto out;
4656 }
David Gibsonaae07772016-12-20 16:49:02 +11004657
4658 kvmppc_set_hpt(kvm, &info);
Paul Mackerras32fad282012-05-04 02:32:53 +00004659 }
4660
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004661 /* Look up the memslot for guest physical address 0 */
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004662 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004663 memslot = gfn_to_memslot(kvm, 0);
4664
4665 /* We must have some memory at 0 by now */
4666 err = -EINVAL;
4667 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004668 goto out_srcu;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004669
4670 /* Look up the VMA for the start of this memory slot */
4671 hva = memslot->userspace_addr;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07004672 mmap_read_lock(kvm->mm);
Leonardo Bras8a9c8922019-11-26 19:36:30 -03004673 vma = find_vma(kvm->mm, hva);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004674 if (!vma || vma->vm_start > hva || (vma->vm_flags & VM_IO))
4675 goto up_out;
4676
4677 psize = vma_kernel_pagesize(vma);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004678
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07004679 mmap_read_unlock(kvm->mm);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004680
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004681 /* We can handle 4k, 64k or 16M pages in the VRMA */
Paul Mackerrasdebd5742018-03-02 15:38:04 +11004682 if (psize >= 0x1000000)
4683 psize = 0x1000000;
4684 else if (psize >= 0x10000)
4685 psize = 0x10000;
4686 else
4687 psize = 0x1000;
4688 porder = __ilog2(psize);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004689
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004690 senc = slb_pgsize_encoding(psize);
4691 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
4692 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004693 /* Create HPTEs in the hash page table for the VRMA */
4694 kvmppc_map_vrma(vcpu, memslot, porder);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004695
Paul Mackerras7a840842016-11-16 22:25:20 +11004696 /* Update VRMASD field in the LPCR */
4697 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
4698 /* the -4 is to account for senc values starting at 0x10 */
4699 lpcr = senc << (LPCR_VRMASD_SH - 4);
4700 kvmppc_update_lpcr(kvm, lpcr, LPCR_VRMASD);
Paul Mackerras7a840842016-11-16 22:25:20 +11004701 }
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004702
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004703 /* Order updates to kvm->arch.lpcr etc. vs. mmu_ready */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004704 smp_wmb();
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004705 err = 0;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004706 out_srcu:
4707 srcu_read_unlock(&kvm->srcu, srcu_idx);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004708 out:
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004709 return err;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004710
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004711 up_out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07004712 mmap_read_unlock(kvm->mm);
Lai Jiangshan505d6422013-03-16 00:50:49 +08004713 goto out_srcu;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004714}
4715
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004716/*
4717 * Must be called with kvm->arch.mmu_setup_lock held and
4718 * mmu_ready = 0 and no vcpus running.
4719 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004720int kvmppc_switch_mmu_to_hpt(struct kvm *kvm)
4721{
Paul Mackerrasaa069a92018-09-21 20:02:01 +10004722 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004723 kvmhv_release_all_nested(kvm);
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004724 kvmppc_rmap_reset(kvm);
4725 kvm->arch.process_table = 0;
4726 /* Mutual exclusion with kvm_unmap_hva_range etc. */
4727 spin_lock(&kvm->mmu_lock);
4728 kvm->arch.radix = 0;
4729 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10004730 kvmppc_free_radix(kvm);
4731 kvmppc_update_lpcr(kvm, LPCR_VPM1,
4732 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Paul Mackerras18c36402017-09-13 16:00:10 +10004733 return 0;
4734}
4735
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004736/*
4737 * Must be called with kvm->arch.mmu_setup_lock held and
4738 * mmu_ready = 0 and no vcpus running.
4739 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004740int kvmppc_switch_mmu_to_radix(struct kvm *kvm)
4741{
4742 int err;
4743
4744 err = kvmppc_init_vm_radix(kvm);
4745 if (err)
4746 return err;
Paul Mackerras234ff0b2018-11-16 21:28:18 +11004747 kvmppc_rmap_reset(kvm);
4748 /* Mutual exclusion with kvm_unmap_hva_range etc. */
4749 spin_lock(&kvm->mmu_lock);
4750 kvm->arch.radix = 1;
4751 spin_unlock(&kvm->mmu_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10004752 kvmppc_free_hpt(&kvm->arch.hpt);
4753 kvmppc_update_lpcr(kvm, LPCR_UPRT | LPCR_GTSE | LPCR_HR,
4754 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Paul Mackerras18c36402017-09-13 16:00:10 +10004755 return 0;
4756}
4757
Suresh Warrier79b6c242015-12-17 14:59:06 -06004758#ifdef CONFIG_KVM_XICS
4759/*
4760 * Allocate a per-core structure for managing state about which cores are
4761 * running in the host versus the guest and for exchanging data between
4762 * real mode KVM and CPU running in the host.
4763 * This is only done for the first VM.
4764 * The allocated structure stays even if all VMs have stopped.
4765 * It is only freed when the kvm-hv module is unloaded.
4766 * It's OK for this routine to fail, we just don't support host
4767 * core operations like redirecting H_IPI wakeups.
4768 */
4769void kvmppc_alloc_host_rm_ops(void)
4770{
4771 struct kvmppc_host_rm_ops *ops;
4772 unsigned long l_ops;
4773 int cpu, core;
4774 int size;
4775
4776 /* Not the first time here ? */
4777 if (kvmppc_host_rm_ops_hv != NULL)
4778 return;
4779
4780 ops = kzalloc(sizeof(struct kvmppc_host_rm_ops), GFP_KERNEL);
4781 if (!ops)
4782 return;
4783
4784 size = cpu_nr_cores() * sizeof(struct kvmppc_host_rm_core);
4785 ops->rm_core = kzalloc(size, GFP_KERNEL);
4786
4787 if (!ops->rm_core) {
4788 kfree(ops);
4789 return;
4790 }
4791
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004792 cpus_read_lock();
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004793
Suresh Warrier79b6c242015-12-17 14:59:06 -06004794 for (cpu = 0; cpu < nr_cpu_ids; cpu += threads_per_core) {
4795 if (!cpu_online(cpu))
4796 continue;
4797
4798 core = cpu >> threads_shift;
4799 ops->rm_core[core].rm_state.in_host = 1;
4800 }
4801
Suresh Warrier0c2a6602015-12-17 14:59:09 -06004802 ops->vcpu_kick = kvmppc_fast_vcpu_kick_hv;
4803
Suresh Warrier79b6c242015-12-17 14:59:06 -06004804 /*
4805 * Make the contents of the kvmppc_host_rm_ops structure visible
4806 * to other CPUs before we assign it to the global variable.
4807 * Do an atomic assignment (no locks used here), but if someone
4808 * beats us to it, just free our copy and return.
4809 */
4810 smp_wmb();
4811 l_ops = (unsigned long) ops;
4812
4813 if (cmpxchg64((unsigned long *)&kvmppc_host_rm_ops_hv, 0, l_ops)) {
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004814 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06004815 kfree(ops->rm_core);
4816 kfree(ops);
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004817 return;
Suresh Warrier79b6c242015-12-17 14:59:06 -06004818 }
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004819
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004820 cpuhp_setup_state_nocalls_cpuslocked(CPUHP_KVM_PPC_BOOK3S_PREPARE,
4821 "ppc/kvm_book3s:prepare",
4822 kvmppc_set_host_core,
4823 kvmppc_clear_host_core);
4824 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06004825}
4826
4827void kvmppc_free_host_rm_ops(void)
4828{
4829 if (kvmppc_host_rm_ops_hv) {
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01004830 cpuhp_remove_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE);
Suresh Warrier79b6c242015-12-17 14:59:06 -06004831 kfree(kvmppc_host_rm_ops_hv->rm_core);
4832 kfree(kvmppc_host_rm_ops_hv);
4833 kvmppc_host_rm_ops_hv = NULL;
4834 }
4835}
4836#endif
4837
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304838static int kvmppc_core_init_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004839{
Paul Mackerras32fad282012-05-04 02:32:53 +00004840 unsigned long lpcr, lpid;
Paul Mackerrase23a8082015-03-28 14:21:01 +11004841 char buf[32];
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004842 int ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004843
Bharata B Raoca9f4942019-11-25 08:36:26 +05304844 mutex_init(&kvm->arch.uvmem_lock);
4845 INIT_LIST_HEAD(&kvm->arch.uvmem_pfns);
Paul Mackerras0d4ee882019-05-23 16:35:34 +10004846 mutex_init(&kvm->arch.mmu_setup_lock);
4847
Paul Mackerras32fad282012-05-04 02:32:53 +00004848 /* Allocate the guest's logical partition ID */
4849
4850 lpid = kvmppc_alloc_lpid();
Chen Gang5d226ae2013-07-22 14:32:35 +08004851 if ((long)lpid < 0)
Paul Mackerras32fad282012-05-04 02:32:53 +00004852 return -ENOMEM;
4853 kvm->arch.lpid = lpid;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004854
Suresh Warrier79b6c242015-12-17 14:59:06 -06004855 kvmppc_alloc_host_rm_ops();
4856
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004857 kvmhv_vm_nested_init(kvm);
4858
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004859 /*
4860 * Since we don't flush the TLB when tearing down a VM,
4861 * and this lpid might have previously been used,
4862 * make sure we flush on each core before running the new VM.
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004863 * On POWER9, the tlbie in mmu_partition_table_set_entry()
4864 * does this flush for us.
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004865 */
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004866 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4867 cpumask_setall(&kvm->arch.need_tlb_flush);
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004868
Paul Mackerras699a0ea2014-06-02 11:02:59 +10004869 /* Start out with the default set of hcalls enabled */
4870 memcpy(kvm->arch.enabled_hcalls, default_enabled_hcalls,
4871 sizeof(kvm->arch.enabled_hcalls));
4872
Paul Mackerras7a840842016-11-16 22:25:20 +11004873 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4874 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004875
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004876 /* Init LPCR for virtual RMA mode */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11004877 if (cpu_has_feature(CPU_FTR_HVMODE)) {
4878 kvm->arch.host_lpid = mfspr(SPRN_LPID);
4879 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
4880 lpcr &= LPCR_PECE | LPCR_LPES;
4881 } else {
4882 lpcr = 0;
4883 }
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004884 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
4885 LPCR_VPM0 | LPCR_VPM1;
4886 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
4887 (VRMA_VSID << SLB_VSID_SHIFT_1T);
4888 /* On POWER8 turn on online bit to enable PURR/SPURR */
4889 if (cpu_has_feature(CPU_FTR_ARCH_207S))
4890 lpcr |= LPCR_ONL;
Paul Mackerras84f71392016-11-22 14:30:14 +11004891 /*
4892 * On POWER9, VPM0 bit is reserved (VPM0=1 behaviour is assumed)
4893 * Set HVICE bit to enable hypervisor virtualization interrupts.
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004894 * Set HEIC to prevent OS interrupts to go to hypervisor (should
4895 * be unnecessary but better safe than sorry in case we re-enable
4896 * EE in HV mode with this LPCR still set)
Paul Mackerras84f71392016-11-22 14:30:14 +11004897 */
4898 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerras7a840842016-11-16 22:25:20 +11004899 lpcr &= ~LPCR_VPM0;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004900 lpcr |= LPCR_HVICE | LPCR_HEIC;
4901
4902 /*
4903 * If xive is enabled, we route 0x500 interrupts directly
4904 * to the guest.
4905 */
Paul Mackerras03f95332019-02-04 22:07:20 +11004906 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004907 lpcr |= LPCR_LPES;
Paul Mackerras84f71392016-11-22 14:30:14 +11004908 }
4909
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004910 /*
Paul Mackerras18c36402017-09-13 16:00:10 +10004911 * If the host uses radix, the guest starts out as radix.
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004912 */
4913 if (radix_enabled()) {
4914 kvm->arch.radix = 1;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004915 kvm->arch.mmu_ready = 1;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004916 lpcr &= ~LPCR_VPM1;
4917 lpcr |= LPCR_UPRT | LPCR_GTSE | LPCR_HR;
4918 ret = kvmppc_init_vm_radix(kvm);
4919 if (ret) {
4920 kvmppc_free_lpid(kvm->arch.lpid);
4921 return ret;
4922 }
4923 kvmppc_setup_partition_table(kvm);
4924 }
4925
Paul Mackerras9e368f22011-06-29 00:40:08 +00004926 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004927
David Gibson5e985962016-12-20 16:49:05 +11004928 /* Initialization for future HPT resizes */
4929 kvm->arch.resize_hpt = NULL;
4930
Paul Mackerras512691d2012-10-15 01:15:41 +00004931 /*
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004932 * Work out how many sets the TLB has, for the use of
4933 * the TLB invalidation loop in book3s_hv_rmhandlers.S.
4934 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004935 if (radix_enabled())
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004936 kvm->arch.tlb_sets = POWER9_TLB_SETS_RADIX; /* 128 */
4937 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004938 kvm->arch.tlb_sets = POWER9_TLB_SETS_HASH; /* 256 */
4939 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
4940 kvm->arch.tlb_sets = POWER8_TLB_SETS; /* 512 */
4941 else
4942 kvm->arch.tlb_sets = POWER7_TLB_SETS; /* 128 */
4943
4944 /*
Michael Ellerman441c19c2014-05-23 18:15:25 +10004945 * Track that we now have a HV mode VM active. This blocks secondary
4946 * CPU threads from coming online.
Paul Mackerras516f7892017-10-16 16:11:57 +11004947 * On POWER9, we only need to do this if the "indep_threads_mode"
4948 * module parameter has been set to N.
Paul Mackerras512691d2012-10-15 01:15:41 +00004949 */
Paul Mackerras360cae32018-10-08 16:31:04 +11004950 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
4951 if (!indep_threads_mode && !cpu_has_feature(CPU_FTR_HVMODE)) {
4952 pr_warn("KVM: Ignoring indep_threads_mode=N in nested hypervisor\n");
4953 kvm->arch.threads_indep = true;
4954 } else {
4955 kvm->arch.threads_indep = indep_threads_mode;
4956 }
4957 }
Paul Mackerras516f7892017-10-16 16:11:57 +11004958 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004959 kvm_hv_vm_activated();
Paul Mackerras512691d2012-10-15 01:15:41 +00004960
Paul Mackerrase23a8082015-03-28 14:21:01 +11004961 /*
Paul Mackerras3c313522017-02-06 13:24:41 +11004962 * Initialize smt_mode depending on processor.
4963 * POWER8 and earlier have to use "strict" threading, where
4964 * all vCPUs in a vcore have to run on the same (sub)core,
4965 * whereas on POWER9 the threads can each run a different
4966 * guest.
4967 */
4968 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4969 kvm->arch.smt_mode = threads_per_subcore;
4970 else
4971 kvm->arch.smt_mode = 1;
Paul Mackerras57900692017-05-16 16:41:20 +10004972 kvm->arch.emul_smt_mode = 1;
Paul Mackerras3c313522017-02-06 13:24:41 +11004973
4974 /*
Paul Mackerrase23a8082015-03-28 14:21:01 +11004975 * Create a debugfs directory for the VM
4976 */
4977 snprintf(buf, sizeof(buf), "vm%d", current->pid);
4978 kvm->arch.debugfs_dir = debugfs_create_dir(buf, kvm_debugfs_dir);
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004979 kvmppc_mmu_debugfs_init(kvm);
Paul Mackerras9a94d3e2018-10-08 16:30:57 +11004980 if (radix_enabled())
4981 kvmhv_radix_debugfs_init(kvm);
Paul Mackerrase23a8082015-03-28 14:21:01 +11004982
David Gibson54738c02011-06-29 00:22:41 +00004983 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004984}
4985
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304986static void kvmppc_free_vcores(struct kvm *kvm)
4987{
4988 long int i;
4989
Paul Mackerras23316312015-10-21 16:03:14 +11004990 for (i = 0; i < KVM_MAX_VCORES; ++i)
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304991 kfree(kvm->arch.vcores[i]);
4992 kvm->arch.online_vcores = 0;
4993}
4994
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304995static void kvmppc_core_destroy_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004996{
Paul Mackerrase23a8082015-03-28 14:21:01 +11004997 debugfs_remove_recursive(kvm->arch.debugfs_dir);
4998
Paul Mackerras516f7892017-10-16 16:11:57 +11004999 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005000 kvm_hv_vm_deactivated();
Paul Mackerras512691d2012-10-15 01:15:41 +00005001
Paul Mackerrasf1378b12013-09-27 15:33:43 +05305002 kvmppc_free_vcores(kvm);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00005003
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005004
Paul Mackerras5a319352017-01-30 21:21:46 +11005005 if (kvm_is_radix(kvm))
5006 kvmppc_free_radix(kvm);
5007 else
David Gibsonaae07772016-12-20 16:49:02 +11005008 kvmppc_free_hpt(&kvm->arch.hpt);
Suresh Warrierc57875f2016-08-19 15:35:50 +10005009
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005010 /* Perform global invalidation and return lpid to the pool */
5011 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005012 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005013 kvmhv_release_all_nested(kvm);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005014 kvm->arch.process_table = 0;
Paul Mackerrasd89c69f2019-12-18 11:43:06 +11005015 if (kvm->arch.secure_guest)
5016 uv_svm_terminate(kvm->arch.lpid);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005017 kvmhv_set_ptbl_entry(kvm->arch.lpid, 0, 0);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005018 }
Bharata B Raoca9f4942019-11-25 08:36:26 +05305019
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11005020 kvmppc_free_lpid(kvm->arch.lpid);
5021
Suresh Warrierc57875f2016-08-19 15:35:50 +10005022 kvmppc_free_pimap(kvm);
Paul Mackerrasde56a942011-06-29 00:21:34 +00005023}
5024
5025/* We don't need to emulate any privileged instructions or dcbz */
Tianjia Zhang8c99d342020-04-27 12:35:11 +08005026static int kvmppc_core_emulate_op_hv(struct kvm_vcpu *vcpu,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305027 unsigned int inst, int *advance)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005028{
5029 return EMULATE_FAIL;
5030}
5031
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305032static int kvmppc_core_emulate_mtspr_hv(struct kvm_vcpu *vcpu, int sprn,
5033 ulong spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005034{
5035 return EMULATE_FAIL;
5036}
5037
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305038static int kvmppc_core_emulate_mfspr_hv(struct kvm_vcpu *vcpu, int sprn,
5039 ulong *spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005040{
5041 return EMULATE_FAIL;
5042}
5043
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305044static int kvmppc_core_check_processor_compat_hv(void)
5045{
Paul Mackerrasde760db2018-10-08 16:31:16 +11005046 if (cpu_has_feature(CPU_FTR_HVMODE) &&
5047 cpu_has_feature(CPU_FTR_ARCH_206))
5048 return 0;
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10005049
Paul Mackerrasde760db2018-10-08 16:31:16 +11005050 /* POWER9 in radix mode is capable of being a nested hypervisor. */
5051 if (cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled())
5052 return 0;
5053
5054 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305055}
5056
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005057#ifdef CONFIG_KVM_XICS
5058
5059void kvmppc_free_pimap(struct kvm *kvm)
5060{
5061 kfree(kvm->arch.pimap);
5062}
5063
Suresh Warrierc57875f2016-08-19 15:35:50 +10005064static struct kvmppc_passthru_irqmap *kvmppc_alloc_pimap(void)
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005065{
5066 return kzalloc(sizeof(struct kvmppc_passthru_irqmap), GFP_KERNEL);
5067}
Suresh Warrierc57875f2016-08-19 15:35:50 +10005068
5069static int kvmppc_set_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
5070{
5071 struct irq_desc *desc;
5072 struct kvmppc_irq_map *irq_map;
5073 struct kvmppc_passthru_irqmap *pimap;
5074 struct irq_chip *chip;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005075 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005076
Suresh Warrier644abbb2016-08-19 15:35:54 +10005077 if (!kvm_irq_bypass)
5078 return 1;
5079
Suresh Warrierc57875f2016-08-19 15:35:50 +10005080 desc = irq_to_desc(host_irq);
5081 if (!desc)
5082 return -EIO;
5083
5084 mutex_lock(&kvm->lock);
5085
5086 pimap = kvm->arch.pimap;
5087 if (pimap == NULL) {
5088 /* First call, allocate structure to hold IRQ map */
5089 pimap = kvmppc_alloc_pimap();
5090 if (pimap == NULL) {
5091 mutex_unlock(&kvm->lock);
5092 return -ENOMEM;
5093 }
5094 kvm->arch.pimap = pimap;
5095 }
5096
5097 /*
5098 * For now, we only support interrupts for which the EOI operation
5099 * is an OPAL call followed by a write to XIRR, since that's
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005100 * what our real-mode EOI code does, or a XIVE interrupt
Suresh Warrierc57875f2016-08-19 15:35:50 +10005101 */
5102 chip = irq_data_get_irq_chip(&desc->irq_data);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005103 if (!chip || !(is_pnv_opal_msi(chip) || is_xive_irq(chip))) {
Suresh Warrierc57875f2016-08-19 15:35:50 +10005104 pr_warn("kvmppc_set_passthru_irq_hv: Could not assign IRQ map for (%d,%d)\n",
5105 host_irq, guest_gsi);
5106 mutex_unlock(&kvm->lock);
5107 return -ENOENT;
5108 }
5109
5110 /*
5111 * See if we already have an entry for this guest IRQ number.
5112 * If it's mapped to a hardware IRQ number, that's an error,
5113 * otherwise re-use this entry.
5114 */
5115 for (i = 0; i < pimap->n_mapped; i++) {
5116 if (guest_gsi == pimap->mapped[i].v_hwirq) {
5117 if (pimap->mapped[i].r_hwirq) {
5118 mutex_unlock(&kvm->lock);
5119 return -EINVAL;
5120 }
5121 break;
5122 }
5123 }
5124
5125 if (i == KVMPPC_PIRQ_MAPPED) {
5126 mutex_unlock(&kvm->lock);
5127 return -EAGAIN; /* table is full */
5128 }
5129
5130 irq_map = &pimap->mapped[i];
5131
5132 irq_map->v_hwirq = guest_gsi;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005133 irq_map->desc = desc;
5134
Suresh Warriere3c13e52016-08-19 15:35:51 +10005135 /*
5136 * Order the above two stores before the next to serialize with
5137 * the KVM real mode handler.
5138 */
5139 smp_wmb();
5140 irq_map->r_hwirq = desc->irq_data.hwirq;
5141
Suresh Warrierc57875f2016-08-19 15:35:50 +10005142 if (i == pimap->n_mapped)
5143 pimap->n_mapped++;
5144
Paul Mackerras03f95332019-02-04 22:07:20 +11005145 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005146 rc = kvmppc_xive_set_mapped(kvm, guest_gsi, desc);
5147 else
5148 kvmppc_xics_set_mapped(kvm, guest_gsi, desc->irq_data.hwirq);
5149 if (rc)
5150 irq_map->r_hwirq = 0;
Paul Mackerras5d375192016-08-19 15:35:56 +10005151
Suresh Warrierc57875f2016-08-19 15:35:50 +10005152 mutex_unlock(&kvm->lock);
5153
5154 return 0;
5155}
5156
5157static int kvmppc_clr_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
5158{
5159 struct irq_desc *desc;
5160 struct kvmppc_passthru_irqmap *pimap;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005161 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005162
Suresh Warrier644abbb2016-08-19 15:35:54 +10005163 if (!kvm_irq_bypass)
5164 return 0;
5165
Suresh Warrierc57875f2016-08-19 15:35:50 +10005166 desc = irq_to_desc(host_irq);
5167 if (!desc)
5168 return -EIO;
5169
5170 mutex_lock(&kvm->lock);
Markus Elfringa1c52e12017-01-20 11:00:08 +01005171 if (!kvm->arch.pimap)
5172 goto unlock;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005173
Suresh Warrierc57875f2016-08-19 15:35:50 +10005174 pimap = kvm->arch.pimap;
5175
5176 for (i = 0; i < pimap->n_mapped; i++) {
5177 if (guest_gsi == pimap->mapped[i].v_hwirq)
5178 break;
5179 }
5180
5181 if (i == pimap->n_mapped) {
5182 mutex_unlock(&kvm->lock);
5183 return -ENODEV;
5184 }
5185
Paul Mackerras03f95332019-02-04 22:07:20 +11005186 if (xics_on_xive())
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005187 rc = kvmppc_xive_clr_mapped(kvm, guest_gsi, pimap->mapped[i].desc);
5188 else
5189 kvmppc_xics_clr_mapped(kvm, guest_gsi, pimap->mapped[i].r_hwirq);
Paul Mackerras5d375192016-08-19 15:35:56 +10005190
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005191 /* invalidate the entry (what do do on error from the above ?) */
Suresh Warrierc57875f2016-08-19 15:35:50 +10005192 pimap->mapped[i].r_hwirq = 0;
5193
5194 /*
5195 * We don't free this structure even when the count goes to
5196 * zero. The structure is freed when we destroy the VM.
5197 */
Markus Elfringa1c52e12017-01-20 11:00:08 +01005198 unlock:
Suresh Warrierc57875f2016-08-19 15:35:50 +10005199 mutex_unlock(&kvm->lock);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10005200 return rc;
Suresh Warrierc57875f2016-08-19 15:35:50 +10005201}
5202
5203static int kvmppc_irq_bypass_add_producer_hv(struct irq_bypass_consumer *cons,
5204 struct irq_bypass_producer *prod)
5205{
5206 int ret = 0;
5207 struct kvm_kernel_irqfd *irqfd =
5208 container_of(cons, struct kvm_kernel_irqfd, consumer);
5209
5210 irqfd->producer = prod;
5211
5212 ret = kvmppc_set_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5213 if (ret)
5214 pr_info("kvmppc_set_passthru_irq (irq %d, gsi %d) fails: %d\n",
5215 prod->irq, irqfd->gsi, ret);
5216
5217 return ret;
5218}
5219
5220static void kvmppc_irq_bypass_del_producer_hv(struct irq_bypass_consumer *cons,
5221 struct irq_bypass_producer *prod)
5222{
5223 int ret;
5224 struct kvm_kernel_irqfd *irqfd =
5225 container_of(cons, struct kvm_kernel_irqfd, consumer);
5226
5227 irqfd->producer = NULL;
5228
5229 /*
5230 * When producer of consumer is unregistered, we change back to
5231 * default external interrupt handling mode - KVM real mode
5232 * will switch back to host.
5233 */
5234 ret = kvmppc_clr_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5235 if (ret)
5236 pr_warn("kvmppc_clr_passthru_irq (irq %d, gsi %d) fails: %d\n",
5237 prod->irq, irqfd->gsi, ret);
5238}
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005239#endif
5240
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305241static long kvm_arch_vm_ioctl_hv(struct file *filp,
5242 unsigned int ioctl, unsigned long arg)
5243{
5244 struct kvm *kvm __maybe_unused = filp->private_data;
5245 void __user *argp = (void __user *)arg;
5246 long r;
5247
5248 switch (ioctl) {
5249
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305250 case KVM_PPC_ALLOCATE_HTAB: {
5251 u32 htab_order;
5252
Fabiano Rosas05e62952020-09-11 01:16:07 -03005253 /* If we're a nested hypervisor, we currently only support radix */
5254 if (kvmhv_on_pseries()) {
5255 r = -EOPNOTSUPP;
5256 break;
5257 }
5258
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305259 r = -EFAULT;
5260 if (get_user(htab_order, (u32 __user *)argp))
5261 break;
David Gibsonf98a8bf2016-12-20 16:49:03 +11005262 r = kvmppc_alloc_reset_hpt(kvm, htab_order);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305263 if (r)
5264 break;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305265 r = 0;
5266 break;
5267 }
5268
5269 case KVM_PPC_GET_HTAB_FD: {
5270 struct kvm_get_htab_fd ghf;
5271
5272 r = -EFAULT;
5273 if (copy_from_user(&ghf, argp, sizeof(ghf)))
5274 break;
5275 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
5276 break;
5277 }
5278
David Gibson5e985962016-12-20 16:49:05 +11005279 case KVM_PPC_RESIZE_HPT_PREPARE: {
5280 struct kvm_ppc_resize_hpt rhpt;
5281
5282 r = -EFAULT;
5283 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5284 break;
5285
5286 r = kvm_vm_ioctl_resize_hpt_prepare(kvm, &rhpt);
5287 break;
5288 }
5289
5290 case KVM_PPC_RESIZE_HPT_COMMIT: {
5291 struct kvm_ppc_resize_hpt rhpt;
5292
5293 r = -EFAULT;
5294 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5295 break;
5296
5297 r = kvm_vm_ioctl_resize_hpt_commit(kvm, &rhpt);
5298 break;
5299 }
5300
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305301 default:
5302 r = -ENOTTY;
5303 }
5304
5305 return r;
5306}
5307
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005308/*
5309 * List of hcall numbers to enable by default.
5310 * For compatibility with old userspace, we enable by default
5311 * all hcalls that were implemented before the hcall-enabling
5312 * facility was added. Note this list should not include H_RTAS.
5313 */
5314static unsigned int default_hcall_list[] = {
5315 H_REMOVE,
5316 H_ENTER,
5317 H_READ,
5318 H_PROTECT,
5319 H_BULK_REMOVE,
5320 H_GET_TCE,
5321 H_PUT_TCE,
5322 H_SET_DABR,
5323 H_SET_XDABR,
5324 H_CEDE,
5325 H_PROD,
5326 H_CONFER,
5327 H_REGISTER_VPA,
5328#ifdef CONFIG_KVM_XICS
5329 H_EOI,
5330 H_CPPR,
5331 H_IPI,
5332 H_IPOLL,
5333 H_XIRR,
5334 H_XIRR_X,
5335#endif
5336 0
5337};
5338
5339static void init_default_hcalls(void)
5340{
5341 int i;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005342 unsigned int hcall;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005343
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005344 for (i = 0; default_hcall_list[i]; ++i) {
5345 hcall = default_hcall_list[i];
5346 WARN_ON(!kvmppc_hcall_impl_hv(hcall));
5347 __set_bit(hcall / 4, default_enabled_hcalls);
5348 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005349}
5350
Paul Mackerrasc9270132017-01-30 21:21:41 +11005351static int kvmhv_configure_mmu(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
5352{
Paul Mackerras468808b2017-01-30 21:21:42 +11005353 unsigned long lpcr;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005354 int radix;
Paul Mackerras18c36402017-09-13 16:00:10 +10005355 int err;
Paul Mackerras468808b2017-01-30 21:21:42 +11005356
5357 /* If not on a POWER9, reject it */
5358 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5359 return -ENODEV;
5360
5361 /* If any unknown flags set, reject it */
5362 if (cfg->flags & ~(KVM_PPC_MMUV3_RADIX | KVM_PPC_MMUV3_GTSE))
5363 return -EINVAL;
5364
Paul Mackerras468808b2017-01-30 21:21:42 +11005365 /* GR (guest radix) bit in process_table field must match */
Paul Mackerras18c36402017-09-13 16:00:10 +10005366 radix = !!(cfg->flags & KVM_PPC_MMUV3_RADIX);
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005367 if (!!(cfg->process_table & PATB_GR) != radix)
Paul Mackerras468808b2017-01-30 21:21:42 +11005368 return -EINVAL;
5369
5370 /* Process table size field must be reasonable, i.e. <= 24 */
5371 if ((cfg->process_table & PRTS_MASK) > 24)
5372 return -EINVAL;
5373
Paul Mackerras18c36402017-09-13 16:00:10 +10005374 /* We can change a guest to/from radix now, if the host is radix */
5375 if (radix && !radix_enabled())
5376 return -EINVAL;
5377
Paul Mackerrasde760db2018-10-08 16:31:16 +11005378 /* If we're a nested hypervisor, we currently only support radix */
5379 if (kvmhv_on_pseries() && !radix)
5380 return -EINVAL;
5381
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005382 mutex_lock(&kvm->arch.mmu_setup_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005383 if (radix != kvm_is_radix(kvm)) {
5384 if (kvm->arch.mmu_ready) {
5385 kvm->arch.mmu_ready = 0;
5386 /* order mmu_ready vs. vcpus_running */
5387 smp_mb();
5388 if (atomic_read(&kvm->arch.vcpus_running)) {
5389 kvm->arch.mmu_ready = 1;
5390 err = -EBUSY;
5391 goto out_unlock;
5392 }
5393 }
5394 if (radix)
5395 err = kvmppc_switch_mmu_to_radix(kvm);
5396 else
5397 err = kvmppc_switch_mmu_to_hpt(kvm);
5398 if (err)
5399 goto out_unlock;
5400 }
5401
Paul Mackerras468808b2017-01-30 21:21:42 +11005402 kvm->arch.process_table = cfg->process_table;
5403 kvmppc_setup_partition_table(kvm);
5404
5405 lpcr = (cfg->flags & KVM_PPC_MMUV3_GTSE) ? LPCR_GTSE : 0;
5406 kvmppc_update_lpcr(kvm, lpcr, LPCR_GTSE);
Paul Mackerras18c36402017-09-13 16:00:10 +10005407 err = 0;
Paul Mackerras468808b2017-01-30 21:21:42 +11005408
Paul Mackerras18c36402017-09-13 16:00:10 +10005409 out_unlock:
Paul Mackerras0d4ee882019-05-23 16:35:34 +10005410 mutex_unlock(&kvm->arch.mmu_setup_lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005411 return err;
Paul Mackerrasc9270132017-01-30 21:21:41 +11005412}
5413
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005414static int kvmhv_enable_nested(struct kvm *kvm)
5415{
5416 if (!nested)
5417 return -EPERM;
Paul Mackerras8d9fcac2018-10-19 20:44:04 +11005418 if (!cpu_has_feature(CPU_FTR_ARCH_300) || no_mixing_hpt_and_radix)
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005419 return -ENODEV;
5420
5421 /* kvm == NULL means the caller is testing if the capability exists */
5422 if (kvm)
5423 kvm->arch.nested_enable = true;
5424 return 0;
5425}
5426
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11005427static int kvmhv_load_from_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5428 int size)
5429{
5430 int rc = -EINVAL;
5431
5432 if (kvmhv_vcpu_is_radix(vcpu)) {
5433 rc = kvmhv_copy_from_guest_radix(vcpu, *eaddr, ptr, size);
5434
5435 if (rc > 0)
5436 rc = -EINVAL;
5437 }
5438
5439 /* For now quadrants are the only way to access nested guest memory */
5440 if (rc && vcpu->arch.nested)
5441 rc = -EAGAIN;
5442
5443 return rc;
5444}
5445
5446static int kvmhv_store_to_eaddr(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
5447 int size)
5448{
5449 int rc = -EINVAL;
5450
5451 if (kvmhv_vcpu_is_radix(vcpu)) {
5452 rc = kvmhv_copy_to_guest_radix(vcpu, *eaddr, ptr, size);
5453
5454 if (rc > 0)
5455 rc = -EINVAL;
5456 }
5457
5458 /* For now quadrants are the only way to access nested guest memory */
5459 if (rc && vcpu->arch.nested)
5460 rc = -EAGAIN;
5461
5462 return rc;
5463}
5464
Bharata B Rao22945682019-11-25 08:36:30 +05305465static void unpin_vpa_reset(struct kvm *kvm, struct kvmppc_vpa *vpa)
5466{
5467 unpin_vpa(kvm, vpa);
5468 vpa->gpa = 0;
5469 vpa->pinned_addr = NULL;
5470 vpa->dirty = false;
5471 vpa->update_pending = 0;
5472}
5473
5474/*
Paul Mackerras9a5788c2020-03-19 15:29:55 +11005475 * Enable a guest to become a secure VM, or test whether
5476 * that could be enabled.
5477 * Called when the KVM_CAP_PPC_SECURE_GUEST capability is
5478 * tested (kvm == NULL) or enabled (kvm != NULL).
5479 */
5480static int kvmhv_enable_svm(struct kvm *kvm)
5481{
5482 if (!kvmppc_uvmem_available())
5483 return -EINVAL;
5484 if (kvm)
5485 kvm->arch.svm_enabled = 1;
5486 return 0;
5487}
5488
5489/*
Bharata B Rao22945682019-11-25 08:36:30 +05305490 * IOCTL handler to turn off secure mode of guest
5491 *
5492 * - Release all device pages
5493 * - Issue ucall to terminate the guest on the UV side
5494 * - Unpin the VPA pages.
5495 * - Reinit the partition scoped page tables
5496 */
5497static int kvmhv_svm_off(struct kvm *kvm)
5498{
5499 struct kvm_vcpu *vcpu;
5500 int mmu_was_ready;
5501 int srcu_idx;
5502 int ret = 0;
5503 int i;
5504
5505 if (!(kvm->arch.secure_guest & KVMPPC_SECURE_INIT_START))
5506 return ret;
5507
5508 mutex_lock(&kvm->arch.mmu_setup_lock);
5509 mmu_was_ready = kvm->arch.mmu_ready;
5510 if (kvm->arch.mmu_ready) {
5511 kvm->arch.mmu_ready = 0;
5512 /* order mmu_ready vs. vcpus_running */
5513 smp_mb();
5514 if (atomic_read(&kvm->arch.vcpus_running)) {
5515 kvm->arch.mmu_ready = 1;
5516 ret = -EBUSY;
5517 goto out;
5518 }
5519 }
5520
5521 srcu_idx = srcu_read_lock(&kvm->srcu);
5522 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
5523 struct kvm_memory_slot *memslot;
5524 struct kvm_memslots *slots = __kvm_memslots(kvm, i);
5525
5526 if (!slots)
5527 continue;
5528
5529 kvm_for_each_memslot(memslot, slots) {
Sukadev Bhattiproluce477a72019-12-19 13:51:45 -08005530 kvmppc_uvmem_drop_pages(memslot, kvm, true);
Bharata B Rao22945682019-11-25 08:36:30 +05305531 uv_unregister_mem_slot(kvm->arch.lpid, memslot->id);
5532 }
5533 }
5534 srcu_read_unlock(&kvm->srcu, srcu_idx);
5535
5536 ret = uv_svm_terminate(kvm->arch.lpid);
5537 if (ret != U_SUCCESS) {
5538 ret = -EINVAL;
5539 goto out;
5540 }
5541
5542 /*
5543 * When secure guest is reset, all the guest pages are sent
5544 * to UV via UV_PAGE_IN before the non-boot vcpus get a
5545 * chance to run and unpin their VPA pages. Unpinning of all
5546 * VPA pages is done here explicitly so that VPA pages
5547 * can be migrated to the secure side.
5548 *
5549 * This is required to for the secure SMP guest to reboot
5550 * correctly.
5551 */
5552 kvm_for_each_vcpu(i, vcpu, kvm) {
5553 spin_lock(&vcpu->arch.vpa_update_lock);
5554 unpin_vpa_reset(kvm, &vcpu->arch.dtl);
5555 unpin_vpa_reset(kvm, &vcpu->arch.slb_shadow);
5556 unpin_vpa_reset(kvm, &vcpu->arch.vpa);
5557 spin_unlock(&vcpu->arch.vpa_update_lock);
5558 }
5559
5560 kvmppc_setup_partition_table(kvm);
5561 kvm->arch.secure_guest = 0;
5562 kvm->arch.mmu_ready = mmu_was_ready;
5563out:
5564 mutex_unlock(&kvm->arch.mmu_setup_lock);
5565 return ret;
5566}
5567
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305568static struct kvmppc_ops kvm_ops_hv = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305569 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_hv,
5570 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_hv,
5571 .get_one_reg = kvmppc_get_one_reg_hv,
5572 .set_one_reg = kvmppc_set_one_reg_hv,
5573 .vcpu_load = kvmppc_core_vcpu_load_hv,
5574 .vcpu_put = kvmppc_core_vcpu_put_hv,
Nicholas Piggin87a45e02019-10-02 16:00:22 +10005575 .inject_interrupt = kvmppc_inject_interrupt_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305576 .set_msr = kvmppc_set_msr_hv,
5577 .vcpu_run = kvmppc_vcpu_run_hv,
5578 .vcpu_create = kvmppc_core_vcpu_create_hv,
5579 .vcpu_free = kvmppc_core_vcpu_free_hv,
5580 .check_requests = kvmppc_core_check_requests_hv,
5581 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_hv,
5582 .flush_memslot = kvmppc_core_flush_memslot_hv,
5583 .prepare_memory_region = kvmppc_core_prepare_memory_region_hv,
5584 .commit_memory_region = kvmppc_core_commit_memory_region_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305585 .unmap_hva_range = kvm_unmap_hva_range_hv,
5586 .age_hva = kvm_age_hva_hv,
5587 .test_age_hva = kvm_test_age_hva_hv,
5588 .set_spte_hva = kvm_set_spte_hva_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305589 .free_memslot = kvmppc_core_free_memslot_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305590 .init_vm = kvmppc_core_init_vm_hv,
5591 .destroy_vm = kvmppc_core_destroy_vm_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305592 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_hv,
5593 .emulate_op = kvmppc_core_emulate_op_hv,
5594 .emulate_mtspr = kvmppc_core_emulate_mtspr_hv,
5595 .emulate_mfspr = kvmppc_core_emulate_mfspr_hv,
5596 .fast_vcpu_kick = kvmppc_fast_vcpu_kick_hv,
5597 .arch_vm_ioctl = kvm_arch_vm_ioctl_hv,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005598 .hcall_implemented = kvmppc_hcall_impl_hv,
Suresh Warrierc57875f2016-08-19 15:35:50 +10005599#ifdef CONFIG_KVM_XICS
5600 .irq_bypass_add_producer = kvmppc_irq_bypass_add_producer_hv,
5601 .irq_bypass_del_producer = kvmppc_irq_bypass_del_producer_hv,
5602#endif
Paul Mackerrasc9270132017-01-30 21:21:41 +11005603 .configure_mmu = kvmhv_configure_mmu,
5604 .get_rmmu_info = kvmhv_get_rmmu_info,
Paul Mackerras3c313522017-02-06 13:24:41 +11005605 .set_smt_mode = kvmhv_set_smt_mode,
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005606 .enable_nested = kvmhv_enable_nested,
Suraj Jitindar Singhdceadcf2018-12-14 16:29:06 +11005607 .load_from_eaddr = kvmhv_load_from_eaddr,
5608 .store_to_eaddr = kvmhv_store_to_eaddr,
Paul Mackerras9a5788c2020-03-19 15:29:55 +11005609 .enable_svm = kvmhv_enable_svm,
Bharata B Rao22945682019-11-25 08:36:30 +05305610 .svm_off = kvmhv_svm_off,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305611};
5612
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305613static int kvm_init_subcore_bitmap(void)
5614{
5615 int i, j;
5616 int nr_cores = cpu_nr_cores();
5617 struct sibling_subcore_state *sibling_subcore_state;
5618
5619 for (i = 0; i < nr_cores; i++) {
5620 int first_cpu = i * threads_per_core;
5621 int node = cpu_to_node(first_cpu);
5622
5623 /* Ignore if it is already allocated. */
Nicholas Piggind2e60072018-02-14 01:08:12 +10005624 if (paca_ptrs[first_cpu]->sibling_subcore_state)
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305625 continue;
5626
5627 sibling_subcore_state =
wangbo08434ab2019-01-07 20:15:52 +08005628 kzalloc_node(sizeof(struct sibling_subcore_state),
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305629 GFP_KERNEL, node);
5630 if (!sibling_subcore_state)
5631 return -ENOMEM;
5632
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305633
5634 for (j = 0; j < threads_per_core; j++) {
5635 int cpu = first_cpu + j;
5636
Nicholas Piggind2e60072018-02-14 01:08:12 +10005637 paca_ptrs[cpu]->sibling_subcore_state =
5638 sibling_subcore_state;
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305639 }
5640 }
5641 return 0;
5642}
5643
Paul Mackerras5a319352017-01-30 21:21:46 +11005644static int kvmppc_radix_possible(void)
5645{
5646 return cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled();
5647}
5648
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305649static int kvmppc_book3s_init_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005650{
5651 int r;
Nicholas Piggin2275d7b2019-09-03 01:29:31 +10005652
5653 if (!tlbie_capable) {
5654 pr_err("KVM-HV: Host does not support TLBIE\n");
5655 return -ENODEV;
5656 }
5657
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305658 /*
5659 * FIXME!! Do we need to check on all cpus ?
5660 */
5661 r = kvmppc_core_check_processor_compat_hv();
5662 if (r < 0)
Paul Mackerras739e2422014-03-25 10:47:05 +11005663 return -ENODEV;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005664
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005665 r = kvmhv_nested_init();
5666 if (r)
5667 return r;
5668
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305669 r = kvm_init_subcore_bitmap();
5670 if (r)
5671 return r;
5672
Paul Mackerrasf7257582016-11-18 09:02:08 +11005673 /*
5674 * We need a way of accessing the XICS interrupt controller,
Nicholas Piggind2e60072018-02-14 01:08:12 +10005675 * either directly, via paca_ptrs[cpu]->kvm_hstate.xics_phys, or
Paul Mackerrasf7257582016-11-18 09:02:08 +11005676 * indirectly, via OPAL.
5677 */
5678#ifdef CONFIG_SMP
Paul Mackerras03f95332019-02-04 22:07:20 +11005679 if (!xics_on_xive() && !kvmhv_on_pseries() &&
Paul Mackerrasf3c18e92018-10-08 16:31:05 +11005680 !local_paca->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +11005681 struct device_node *np;
5682
5683 np = of_find_compatible_node(NULL, NULL, "ibm,opal-intc");
5684 if (!np) {
5685 pr_err("KVM-HV: Cannot determine method for accessing XICS\n");
5686 return -ENODEV;
5687 }
Nicholas Mc Guire51eaa082018-07-07 08:53:07 +02005688 /* presence of intc confirmed - node can be dropped again */
5689 of_node_put(np);
Paul Mackerrasf7257582016-11-18 09:02:08 +11005690 }
5691#endif
5692
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305693 kvm_ops_hv.owner = THIS_MODULE;
5694 kvmppc_hv_ops = &kvm_ops_hv;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005695
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005696 init_default_hcalls();
5697
Paul Mackerrasec257162015-06-24 21:18:03 +10005698 init_vcore_lists();
5699
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305700 r = kvmppc_mmu_hv_init();
Paul Mackerras5a319352017-01-30 21:21:46 +11005701 if (r)
5702 return r;
5703
5704 if (kvmppc_radix_possible())
5705 r = kvmppc_radix_init();
Paul Mackerras00608e12018-01-11 16:54:26 +11005706
5707 /*
5708 * POWER9 chips before version 2.02 can't have some threads in
5709 * HPT mode and some in radix mode on the same core.
5710 */
5711 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
5712 unsigned int pvr = mfspr(SPRN_PVR);
5713 if ((pvr >> 16) == PVR_POWER9 &&
5714 (((pvr & 0xe000) == 0 && (pvr & 0xfff) < 0x202) ||
5715 ((pvr & 0xe000) == 0x2000 && (pvr & 0xfff) < 0x101)))
5716 no_mixing_hpt_and_radix = true;
5717 }
5718
Bharata B Raoca9f4942019-11-25 08:36:26 +05305719 r = kvmppc_uvmem_init();
5720 if (r < 0)
5721 pr_err("KVM-HV: kvmppc_uvmem_init failed %d\n", r);
5722
Paul Mackerrasde56a942011-06-29 00:21:34 +00005723 return r;
5724}
5725
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305726static void kvmppc_book3s_exit_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005727{
Bharata B Raoca9f4942019-11-25 08:36:26 +05305728 kvmppc_uvmem_free();
Suresh Warrier79b6c242015-12-17 14:59:06 -06005729 kvmppc_free_host_rm_ops();
Paul Mackerras5a319352017-01-30 21:21:46 +11005730 if (kvmppc_radix_possible())
5731 kvmppc_radix_exit();
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305732 kvmppc_hv_ops = NULL;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005733 kvmhv_nested_exit();
Paul Mackerrasde56a942011-06-29 00:21:34 +00005734}
5735
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305736module_init(kvmppc_book3s_init_hv);
5737module_exit(kvmppc_book3s_exit_hv);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05305738MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01005739MODULE_ALIAS_MISCDEV(KVM_MINOR);
5740MODULE_ALIAS("devname:kvm");