blob: 1182cfd7985715aef69f3ef04370d6aba835b138 [file] [log] [blame]
Paul Mackerrasde56a942011-06-29 00:21:34 +00001/*
2 * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
3 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
4 *
5 * Authors:
6 * Paul Mackerras <paulus@au1.ibm.com>
7 * Alexander Graf <agraf@suse.de>
8 * Kevin Wolf <mail@kevin-wolf.de>
9 *
10 * Description: KVM functions specific to running on Book 3S
11 * processors in hypervisor mode (specifically POWER7 and later).
12 *
13 * This file is derived from arch/powerpc/kvm/book3s.c,
14 * by Alexander Graf <agraf@suse.de>.
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License, version 2, as
18 * published by the Free Software Foundation.
19 */
20
21#include <linux/kvm_host.h>
22#include <linux/err.h>
23#include <linux/slab.h>
24#include <linux/preempt.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010025#include <linux/sched/signal.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010026#include <linux/sched/stat.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000027#include <linux/delay.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040028#include <linux/export.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000029#include <linux/fs.h>
30#include <linux/anon_inodes.h>
Gavin Shan07f8ab252016-05-11 11:15:55 +100031#include <linux/cpu.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000032#include <linux/cpumask.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000033#include <linux/spinlock.h>
34#include <linux/page-flags.h>
Paul Mackerras2c9097e2012-09-11 13:27:01 +000035#include <linux/srcu.h>
Alexander Graf398a76c2013-12-09 13:53:42 +010036#include <linux/miscdevice.h>
Paul Mackerrase23a8082015-03-28 14:21:01 +110037#include <linux/debugfs.h>
Benjamin Herrenschmidtd3989142017-04-05 17:54:51 +100038#include <linux/gfp.h>
39#include <linux/vmalloc.h>
40#include <linux/highmem.h>
41#include <linux/hugetlb.h>
42#include <linux/kvm_irqfd.h>
43#include <linux/irqbypass.h>
44#include <linux/module.h>
45#include <linux/compiler.h>
46#include <linux/of.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000047
48#include <asm/reg.h>
Paul Mackerras57900692017-05-16 16:41:20 +100049#include <asm/ppc-opcode.h>
50#include <asm/disassemble.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000051#include <asm/cputable.h>
52#include <asm/cacheflush.h>
53#include <asm/tlbflush.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080054#include <linux/uaccess.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000055#include <asm/io.h>
56#include <asm/kvm_ppc.h>
57#include <asm/kvm_book3s.h>
58#include <asm/mmu_context.h>
59#include <asm/lppaca.h>
60#include <asm/processor.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000061#include <asm/cputhreads.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000062#include <asm/page.h>
Michael Neulingde1d9242011-11-09 20:39:49 +000063#include <asm/hvcall.h>
David Howellsae3a1972012-03-28 18:30:02 +010064#include <asm/switch_to.h>
Paul Mackerras512691d2012-10-15 01:15:41 +000065#include <asm/smp.h>
Paul Mackerras66feed62015-03-28 14:21:12 +110066#include <asm/dbell.h>
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +053067#include <asm/hmi.h>
Suresh Warrierc57875f2016-08-19 15:35:50 +100068#include <asm/pnv-pci.h>
Paul Mackerras7a840842016-11-16 22:25:20 +110069#include <asm/mmu.h>
Paul Mackerrasf7257582016-11-18 09:02:08 +110070#include <asm/opal.h>
71#include <asm/xics.h>
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +100072#include <asm/xive.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000073
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053074#include "book3s.h"
75
Suresh E. Warrier3c78f782014-12-03 18:48:10 -060076#define CREATE_TRACE_POINTS
77#include "trace_hv.h"
78
Paul Mackerrasde56a942011-06-29 00:21:34 +000079/* #define EXIT_DEBUG */
80/* #define EXIT_DEBUG_SIMPLE */
81/* #define EXIT_DEBUG_INT */
82
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000083/* Used to indicate that a guest page fault needs to be handled */
84#define RESUME_PAGE_FAULT (RESUME_GUEST | RESUME_FLAG_ARCH1)
Suresh Warrierf7af5202016-08-19 15:35:52 +100085/* Used to indicate that a guest passthrough interrupt needs to be handled */
86#define RESUME_PASSTHROUGH (RESUME_GUEST | RESUME_FLAG_ARCH2)
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000087
Paul Mackerrasc7b67672012-10-15 01:18:07 +000088/* Used as a "null" value for timebase values */
89#define TB_NIL (~(u64)0)
90
Paul Mackerras699a0ea2014-06-02 11:02:59 +100091static DECLARE_BITMAP(default_enabled_hcalls, MAX_HCALL_OPCODE/4 + 1);
92
Paul Mackerrasb4deba52015-07-02 20:38:16 +100093static int dynamic_mt_modes = 6;
94module_param(dynamic_mt_modes, int, S_IRUGO | S_IWUSR);
95MODULE_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 +100096static int target_smt_mode;
97module_param(target_smt_mode, int, S_IRUGO | S_IWUSR);
98MODULE_PARM_DESC(target_smt_mode, "Target threads per core (0 = max)");
Stewart Smith9678cda2014-07-18 14:18:43 +100099
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600100#ifdef CONFIG_KVM_XICS
101static struct kernel_param_ops module_param_ops = {
102 .set = param_set_int,
103 .get = param_get_int,
104};
105
Suresh Warrier644abbb2016-08-19 15:35:54 +1000106module_param_cb(kvm_irq_bypass, &module_param_ops, &kvm_irq_bypass,
107 S_IRUGO | S_IWUSR);
108MODULE_PARM_DESC(kvm_irq_bypass, "Bypass passthrough interrupt optimization");
109
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600110module_param_cb(h_ipi_redirect, &module_param_ops, &h_ipi_redirect,
111 S_IRUGO | S_IWUSR);
112MODULE_PARM_DESC(h_ipi_redirect, "Redirect H_IPI wakeup to a free host core");
113#endif
114
Paul Mackerras19ccb762011-07-23 17:42:46 +1000115static void kvmppc_end_cede(struct kvm_vcpu *vcpu);
Paul Mackerras32fad282012-05-04 02:32:53 +0000116static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000117
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +1000118static inline struct kvm_vcpu *next_runnable_thread(struct kvmppc_vcore *vc,
119 int *ip)
120{
121 int i = *ip;
122 struct kvm_vcpu *vcpu;
123
124 while (++i < MAX_SMT_THREADS) {
125 vcpu = READ_ONCE(vc->runnable_threads[i]);
126 if (vcpu) {
127 *ip = i;
128 return vcpu;
129 }
130 }
131 return NULL;
132}
133
134/* Used to traverse the list of runnable threads for a given vcore */
135#define for_each_runnable_thread(i, vcpu, vc) \
136 for (i = -1; (vcpu = next_runnable_thread(vc, &i)); )
137
Paul Mackerras66feed62015-03-28 14:21:12 +1100138static bool kvmppc_ipi_thread(int cpu)
139{
Paul Mackerras1704a812016-11-18 08:47:08 +1100140 unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER);
141
142 /* On POWER9 we can use msgsnd to IPI any cpu */
143 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
144 msg |= get_hard_smp_processor_id(cpu);
145 smp_mb();
146 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
147 return true;
148 }
149
Paul Mackerras66feed62015-03-28 14:21:12 +1100150 /* On POWER8 for IPIs to threads in the same core, use msgsnd */
151 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
152 preempt_disable();
153 if (cpu_first_thread_sibling(cpu) ==
154 cpu_first_thread_sibling(smp_processor_id())) {
Paul Mackerras66feed62015-03-28 14:21:12 +1100155 msg |= cpu_thread_in_core(cpu);
156 smp_mb();
157 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
158 preempt_enable();
159 return true;
160 }
161 preempt_enable();
162 }
163
164#if defined(CONFIG_PPC_ICP_NATIVE) && defined(CONFIG_SMP)
Paul Mackerrasf7257582016-11-18 09:02:08 +1100165 if (cpu >= 0 && cpu < nr_cpu_ids) {
166 if (paca[cpu].kvm_hstate.xics_phys) {
167 xics_wake_cpu(cpu);
168 return true;
169 }
170 opal_int_set_mfrr(get_hard_smp_processor_id(cpu), IPI_PRIORITY);
Paul Mackerras66feed62015-03-28 14:21:12 +1100171 return true;
172 }
173#endif
174
175 return false;
176}
177
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530178static void kvmppc_fast_vcpu_kick_hv(struct kvm_vcpu *vcpu)
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000179{
Paul Mackerrasec257162015-06-24 21:18:03 +1000180 int cpu;
Marcelo Tosatti85773702016-02-19 09:46:39 +0100181 struct swait_queue_head *wqp;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000182
183 wqp = kvm_arch_vcpu_wq(vcpu);
Marcelo Tosatti85773702016-02-19 09:46:39 +0100184 if (swait_active(wqp)) {
185 swake_up(wqp);
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000186 ++vcpu->stat.halt_wakeup;
187 }
188
Paul Mackerras3deda5e2016-12-20 14:02:29 +1100189 cpu = READ_ONCE(vcpu->arch.thread_cpu);
190 if (cpu >= 0 && kvmppc_ipi_thread(cpu))
Paul Mackerras66feed62015-03-28 14:21:12 +1100191 return;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000192
193 /* CPU points to the first thread of the core */
Paul Mackerrasec257162015-06-24 21:18:03 +1000194 cpu = vcpu->cpu;
Paul Mackerras66feed62015-03-28 14:21:12 +1100195 if (cpu >= 0 && cpu < nr_cpu_ids && cpu_online(cpu))
196 smp_send_reschedule(cpu);
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000197}
198
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000199/*
200 * We use the vcpu_load/put functions to measure stolen time.
201 * Stolen time is counted as time when either the vcpu is able to
202 * run as part of a virtual core, but the task running the vcore
203 * is preempted or sleeping, or when the vcpu needs something done
204 * in the kernel by the task running the vcpu, but that task is
205 * preempted or sleeping. Those two things have to be counted
206 * separately, since one of the vcpu tasks will take on the job
207 * of running the core, and the other vcpu tasks in the vcore will
208 * sleep waiting for it to do that, but that sleep shouldn't count
209 * as stolen time.
210 *
211 * Hence we accumulate stolen time when the vcpu can run as part of
212 * a vcore using vc->stolen_tb, and the stolen time when the vcpu
213 * needs its task to do other things in the kernel (for example,
214 * service a page fault) in busy_stolen. We don't accumulate
215 * stolen time for a vcore when it is inactive, or for a vcpu
216 * when it is in state RUNNING or NOTREADY. NOTREADY is a bit of
217 * a misnomer; it means that the vcpu task is not executing in
218 * the KVM_VCPU_RUN ioctl, i.e. it is in userspace or elsewhere in
219 * the kernel. We don't have any way of dividing up that time
220 * between time that the vcpu is genuinely stopped, time that
221 * the task is actively working on behalf of the vcpu, and time
222 * that the task is preempted, so we don't count any of it as
223 * stolen.
224 *
225 * Updates to busy_stolen are protected by arch.tbacct_lock;
Paul Mackerras2711e242014-12-04 16:43:28 +1100226 * updates to vc->stolen_tb are protected by the vcore->stoltb_lock
227 * lock. The stolen times are measured in units of timebase ticks.
228 * (Note that the != TB_NIL checks below are purely defensive;
229 * they should never fail.)
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000230 */
231
Paul Mackerrasec257162015-06-24 21:18:03 +1000232static void kvmppc_core_start_stolen(struct kvmppc_vcore *vc)
233{
234 unsigned long flags;
235
236 spin_lock_irqsave(&vc->stoltb_lock, flags);
237 vc->preempt_tb = mftb();
238 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
239}
240
241static void kvmppc_core_end_stolen(struct kvmppc_vcore *vc)
242{
243 unsigned long flags;
244
245 spin_lock_irqsave(&vc->stoltb_lock, flags);
246 if (vc->preempt_tb != TB_NIL) {
247 vc->stolen_tb += mftb() - vc->preempt_tb;
248 vc->preempt_tb = TB_NIL;
249 }
250 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
251}
252
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530253static void kvmppc_core_vcpu_load_hv(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000254{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000255 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100256 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000257
Paul Mackerras2711e242014-12-04 16:43:28 +1100258 /*
259 * We can test vc->runner without taking the vcore lock,
260 * because only this task ever sets vc->runner to this
261 * vcpu, and once it is set to this vcpu, only this task
262 * ever sets it to NULL.
263 */
Paul Mackerrasec257162015-06-24 21:18:03 +1000264 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
265 kvmppc_core_end_stolen(vc);
266
Paul Mackerras2711e242014-12-04 16:43:28 +1100267 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000268 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST &&
269 vcpu->arch.busy_preempt != TB_NIL) {
270 vcpu->arch.busy_stolen += mftb() - vcpu->arch.busy_preempt;
271 vcpu->arch.busy_preempt = TB_NIL;
272 }
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100273 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000274}
275
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530276static void kvmppc_core_vcpu_put_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000277{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000278 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100279 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000280
Paul Mackerrasec257162015-06-24 21:18:03 +1000281 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
282 kvmppc_core_start_stolen(vc);
283
Paul Mackerras2711e242014-12-04 16:43:28 +1100284 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000285 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST)
286 vcpu->arch.busy_preempt = mftb();
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100287 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000288}
289
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530290static void kvmppc_set_msr_hv(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000291{
Paul Mackerrasc20875a2015-11-12 16:43:02 +1100292 /*
293 * Check for illegal transactional state bit combination
294 * and if we find it, force the TS field to a safe state.
295 */
296 if ((msr & MSR_TS_MASK) == MSR_TS_MASK)
297 msr &= ~MSR_TS_MASK;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000298 vcpu->arch.shregs.msr = msr;
Paul Mackerras19ccb762011-07-23 17:42:46 +1000299 kvmppc_end_cede(vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000300}
301
Thomas Huth5358a962015-05-22 09:25:02 +0200302static void kvmppc_set_pvr_hv(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000303{
304 vcpu->arch.pvr = pvr;
305}
306
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100307/* Dummy value used in computing PCR value below */
308#define PCR_ARCH_300 (PCR_ARCH_207 << 1)
309
Thomas Huth5358a962015-05-22 09:25:02 +0200310static int kvmppc_set_arch_compat(struct kvm_vcpu *vcpu, u32 arch_compat)
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000311{
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100312 unsigned long host_pcr_bit = 0, guest_pcr_bit = 0;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000313 struct kvmppc_vcore *vc = vcpu->arch.vcore;
314
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100315 /* We can (emulate) our own architecture version and anything older */
316 if (cpu_has_feature(CPU_FTR_ARCH_300))
317 host_pcr_bit = PCR_ARCH_300;
318 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
319 host_pcr_bit = PCR_ARCH_207;
320 else if (cpu_has_feature(CPU_FTR_ARCH_206))
321 host_pcr_bit = PCR_ARCH_206;
322 else
323 host_pcr_bit = PCR_ARCH_205;
324
325 /* Determine lowest PCR bit needed to run guest in given PVR level */
326 guest_pcr_bit = host_pcr_bit;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000327 if (arch_compat) {
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000328 switch (arch_compat) {
329 case PVR_ARCH_205:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100330 guest_pcr_bit = PCR_ARCH_205;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000331 break;
332 case PVR_ARCH_206:
333 case PVR_ARCH_206p:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100334 guest_pcr_bit = PCR_ARCH_206;
Paul Mackerras5557ae02014-01-08 21:25:24 +1100335 break;
336 case PVR_ARCH_207:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100337 guest_pcr_bit = PCR_ARCH_207;
338 break;
339 case PVR_ARCH_300:
340 guest_pcr_bit = PCR_ARCH_300;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000341 break;
342 default:
343 return -EINVAL;
344 }
345 }
346
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100347 /* Check requested PCR bits don't exceed our capabilities */
348 if (guest_pcr_bit > host_pcr_bit)
349 return -EINVAL;
350
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000351 spin_lock(&vc->lock);
352 vc->arch_compat = arch_compat;
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100353 /* Set all PCR bits for which guest_pcr_bit <= bit < host_pcr_bit */
354 vc->pcr = host_pcr_bit - guest_pcr_bit;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000355 spin_unlock(&vc->lock);
356
357 return 0;
358}
359
Thomas Huth5358a962015-05-22 09:25:02 +0200360static void kvmppc_dump_regs(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000361{
362 int r;
363
364 pr_err("vcpu %p (%d):\n", vcpu, vcpu->vcpu_id);
365 pr_err("pc = %.16lx msr = %.16llx trap = %x\n",
366 vcpu->arch.pc, vcpu->arch.shregs.msr, vcpu->arch.trap);
367 for (r = 0; r < 16; ++r)
368 pr_err("r%2d = %.16lx r%d = %.16lx\n",
369 r, kvmppc_get_gpr(vcpu, r),
370 r+16, kvmppc_get_gpr(vcpu, r+16));
371 pr_err("ctr = %.16lx lr = %.16lx\n",
372 vcpu->arch.ctr, vcpu->arch.lr);
373 pr_err("srr0 = %.16llx srr1 = %.16llx\n",
374 vcpu->arch.shregs.srr0, vcpu->arch.shregs.srr1);
375 pr_err("sprg0 = %.16llx sprg1 = %.16llx\n",
376 vcpu->arch.shregs.sprg0, vcpu->arch.shregs.sprg1);
377 pr_err("sprg2 = %.16llx sprg3 = %.16llx\n",
378 vcpu->arch.shregs.sprg2, vcpu->arch.shregs.sprg3);
379 pr_err("cr = %.8x xer = %.16lx dsisr = %.8x\n",
380 vcpu->arch.cr, vcpu->arch.xer, vcpu->arch.shregs.dsisr);
381 pr_err("dar = %.16llx\n", vcpu->arch.shregs.dar);
382 pr_err("fault dar = %.16lx dsisr = %.8x\n",
383 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
384 pr_err("SLB (%d entries):\n", vcpu->arch.slb_max);
385 for (r = 0; r < vcpu->arch.slb_max; ++r)
386 pr_err(" ESID = %.16llx VSID = %.16llx\n",
387 vcpu->arch.slb[r].orige, vcpu->arch.slb[r].origv);
388 pr_err("lpcr = %.16lx sdr1 = %.16lx last_inst = %.8x\n",
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000389 vcpu->arch.vcore->lpcr, vcpu->kvm->arch.sdr1,
Paul Mackerrasde56a942011-06-29 00:21:34 +0000390 vcpu->arch.last_inst);
391}
392
Thomas Huth5358a962015-05-22 09:25:02 +0200393static struct kvm_vcpu *kvmppc_find_vcpu(struct kvm *kvm, int id)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000394{
David Hildenbrande09fefd2015-11-05 09:03:50 +0100395 struct kvm_vcpu *ret;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000396
397 mutex_lock(&kvm->lock);
David Hildenbrande09fefd2015-11-05 09:03:50 +0100398 ret = kvm_get_vcpu_by_id(kvm, id);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000399 mutex_unlock(&kvm->lock);
400 return ret;
401}
402
403static void init_vpa(struct kvm_vcpu *vcpu, struct lppaca *vpa)
404{
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000405 vpa->__old_status |= LPPACA_OLD_SHARED_PROC;
Alexander Graf02407552014-06-11 10:34:19 +0200406 vpa->yield_count = cpu_to_be32(1);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000407}
408
Paul Mackerras55b665b2012-09-25 20:33:06 +0000409static int set_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *v,
410 unsigned long addr, unsigned long len)
411{
412 /* check address is cacheline aligned */
413 if (addr & (L1_CACHE_BYTES - 1))
414 return -EINVAL;
415 spin_lock(&vcpu->arch.vpa_update_lock);
416 if (v->next_gpa != addr || v->len != len) {
417 v->next_gpa = addr;
418 v->len = addr ? len : 0;
419 v->update_pending = 1;
420 }
421 spin_unlock(&vcpu->arch.vpa_update_lock);
422 return 0;
423}
424
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000425/* Length for a per-processor buffer is passed in at offset 4 in the buffer */
426struct reg_vpa {
427 u32 dummy;
428 union {
Alexander Graf02407552014-06-11 10:34:19 +0200429 __be16 hword;
430 __be32 word;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000431 } length;
432};
433
434static int vpa_is_registered(struct kvmppc_vpa *vpap)
435{
436 if (vpap->update_pending)
437 return vpap->next_gpa != 0;
438 return vpap->pinned_addr != NULL;
439}
440
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000441static unsigned long do_h_register_vpa(struct kvm_vcpu *vcpu,
442 unsigned long flags,
443 unsigned long vcpuid, unsigned long vpa)
444{
445 struct kvm *kvm = vcpu->kvm;
Paul Mackerras93e60242011-12-12 12:28:55 +0000446 unsigned long len, nb;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000447 void *va;
448 struct kvm_vcpu *tvcpu;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000449 int err;
450 int subfunc;
451 struct kvmppc_vpa *vpap;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000452
453 tvcpu = kvmppc_find_vcpu(kvm, vcpuid);
454 if (!tvcpu)
455 return H_PARAMETER;
456
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000457 subfunc = (flags >> H_VPA_FUNC_SHIFT) & H_VPA_FUNC_MASK;
458 if (subfunc == H_VPA_REG_VPA || subfunc == H_VPA_REG_DTL ||
459 subfunc == H_VPA_REG_SLB) {
460 /* Registering new area - address must be cache-line aligned */
461 if ((vpa & (L1_CACHE_BYTES - 1)) || !vpa)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000462 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000463
464 /* convert logical addr to kernel addr and read length */
Paul Mackerras93e60242011-12-12 12:28:55 +0000465 va = kvmppc_pin_guest_page(kvm, vpa, &nb);
466 if (va == NULL)
Paul Mackerrasb2b2f162011-12-12 12:28:21 +0000467 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000468 if (subfunc == H_VPA_REG_VPA)
Alexander Graf02407552014-06-11 10:34:19 +0200469 len = be16_to_cpu(((struct reg_vpa *)va)->length.hword);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000470 else
Alexander Graf02407552014-06-11 10:34:19 +0200471 len = be32_to_cpu(((struct reg_vpa *)va)->length.word);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000472 kvmppc_unpin_guest_page(kvm, va, vpa, false);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000473
474 /* Check length */
475 if (len > nb || len < sizeof(struct reg_vpa))
476 return H_PARAMETER;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000477 } else {
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000478 vpa = 0;
479 len = 0;
480 }
481
482 err = H_PARAMETER;
483 vpap = NULL;
484 spin_lock(&tvcpu->arch.vpa_update_lock);
485
486 switch (subfunc) {
487 case H_VPA_REG_VPA: /* register VPA */
Nicholas Piggineaac112e2017-08-13 11:33:38 +1000488 /*
489 * The size of our lppaca is 1kB because of the way we align
490 * it for the guest to avoid crossing a 4kB boundary. We only
491 * use 640 bytes of the structure though, so we should accept
492 * clients that set a size of 640.
493 */
494 if (len < 640)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000495 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000496 vpap = &tvcpu->arch.vpa;
497 err = 0;
498 break;
499
500 case H_VPA_REG_DTL: /* register DTL */
501 if (len < sizeof(struct dtl_entry))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000502 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000503 len -= len % sizeof(struct dtl_entry);
504
505 /* Check that they have previously registered a VPA */
506 err = H_RESOURCE;
507 if (!vpa_is_registered(&tvcpu->arch.vpa))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000508 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000509
510 vpap = &tvcpu->arch.dtl;
511 err = 0;
512 break;
513
514 case H_VPA_REG_SLB: /* register SLB shadow buffer */
515 /* Check that they have previously registered a VPA */
516 err = H_RESOURCE;
517 if (!vpa_is_registered(&tvcpu->arch.vpa))
518 break;
519
520 vpap = &tvcpu->arch.slb_shadow;
521 err = 0;
522 break;
523
524 case H_VPA_DEREG_VPA: /* deregister VPA */
525 /* Check they don't still have a DTL or SLB buf registered */
526 err = H_RESOURCE;
527 if (vpa_is_registered(&tvcpu->arch.dtl) ||
528 vpa_is_registered(&tvcpu->arch.slb_shadow))
529 break;
530
531 vpap = &tvcpu->arch.vpa;
532 err = 0;
533 break;
534
535 case H_VPA_DEREG_DTL: /* deregister DTL */
536 vpap = &tvcpu->arch.dtl;
537 err = 0;
538 break;
539
540 case H_VPA_DEREG_SLB: /* deregister SLB shadow buffer */
541 vpap = &tvcpu->arch.slb_shadow;
542 err = 0;
543 break;
544 }
545
546 if (vpap) {
547 vpap->next_gpa = vpa;
548 vpap->len = len;
549 vpap->update_pending = 1;
550 }
551
552 spin_unlock(&tvcpu->arch.vpa_update_lock);
553
554 return err;
555}
556
Paul Mackerras081f3232012-06-01 20:20:24 +1000557static void kvmppc_update_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *vpap)
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000558{
Paul Mackerras081f3232012-06-01 20:20:24 +1000559 struct kvm *kvm = vcpu->kvm;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000560 void *va;
561 unsigned long nb;
Paul Mackerras081f3232012-06-01 20:20:24 +1000562 unsigned long gpa;
563
564 /*
565 * We need to pin the page pointed to by vpap->next_gpa,
566 * but we can't call kvmppc_pin_guest_page under the lock
567 * as it does get_user_pages() and down_read(). So we
568 * have to drop the lock, pin the page, then get the lock
569 * again and check that a new area didn't get registered
570 * in the meantime.
571 */
572 for (;;) {
573 gpa = vpap->next_gpa;
574 spin_unlock(&vcpu->arch.vpa_update_lock);
575 va = NULL;
576 nb = 0;
577 if (gpa)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000578 va = kvmppc_pin_guest_page(kvm, gpa, &nb);
Paul Mackerras081f3232012-06-01 20:20:24 +1000579 spin_lock(&vcpu->arch.vpa_update_lock);
580 if (gpa == vpap->next_gpa)
581 break;
582 /* sigh... unpin that one and try again */
583 if (va)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000584 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000585 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000586
587 vpap->update_pending = 0;
Paul Mackerras081f3232012-06-01 20:20:24 +1000588 if (va && nb < vpap->len) {
589 /*
590 * If it's now too short, it must be that userspace
591 * has changed the mappings underlying guest memory,
592 * so unregister the region.
593 */
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000594 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000595 va = NULL;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000596 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000597 if (vpap->pinned_addr)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000598 kvmppc_unpin_guest_page(kvm, vpap->pinned_addr, vpap->gpa,
599 vpap->dirty);
600 vpap->gpa = gpa;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000601 vpap->pinned_addr = va;
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000602 vpap->dirty = false;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000603 if (va)
604 vpap->pinned_end = va + vpap->len;
605}
Paul Mackerras93e60242011-12-12 12:28:55 +0000606
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000607static void kvmppc_update_vpas(struct kvm_vcpu *vcpu)
608{
Paul Mackerras2f12f032012-10-15 01:17:17 +0000609 if (!(vcpu->arch.vpa.update_pending ||
610 vcpu->arch.slb_shadow.update_pending ||
611 vcpu->arch.dtl.update_pending))
612 return;
613
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000614 spin_lock(&vcpu->arch.vpa_update_lock);
615 if (vcpu->arch.vpa.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000616 kvmppc_update_vpa(vcpu, &vcpu->arch.vpa);
Paul Mackerras55b665b2012-09-25 20:33:06 +0000617 if (vcpu->arch.vpa.pinned_addr)
618 init_vpa(vcpu, vcpu->arch.vpa.pinned_addr);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000619 }
620 if (vcpu->arch.dtl.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000621 kvmppc_update_vpa(vcpu, &vcpu->arch.dtl);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000622 vcpu->arch.dtl_ptr = vcpu->arch.dtl.pinned_addr;
623 vcpu->arch.dtl_index = 0;
624 }
625 if (vcpu->arch.slb_shadow.update_pending)
Paul Mackerras081f3232012-06-01 20:20:24 +1000626 kvmppc_update_vpa(vcpu, &vcpu->arch.slb_shadow);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000627 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000628}
629
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000630/*
631 * Return the accumulated stolen time for the vcore up until `now'.
632 * The caller should hold the vcore lock.
633 */
634static u64 vcore_stolen_time(struct kvmppc_vcore *vc, u64 now)
635{
636 u64 p;
Paul Mackerras2711e242014-12-04 16:43:28 +1100637 unsigned long flags;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000638
Paul Mackerras2711e242014-12-04 16:43:28 +1100639 spin_lock_irqsave(&vc->stoltb_lock, flags);
640 p = vc->stolen_tb;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000641 if (vc->vcore_state != VCORE_INACTIVE &&
Paul Mackerras2711e242014-12-04 16:43:28 +1100642 vc->preempt_tb != TB_NIL)
643 p += now - vc->preempt_tb;
644 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000645 return p;
646}
647
Paul Mackerras0456ec42012-02-03 00:56:21 +0000648static void kvmppc_create_dtl_entry(struct kvm_vcpu *vcpu,
649 struct kvmppc_vcore *vc)
650{
651 struct dtl_entry *dt;
652 struct lppaca *vpa;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000653 unsigned long stolen;
654 unsigned long core_stolen;
655 u64 now;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000656 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000657
658 dt = vcpu->arch.dtl_ptr;
659 vpa = vcpu->arch.vpa.pinned_addr;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000660 now = mftb();
661 core_stolen = vcore_stolen_time(vc, now);
662 stolen = core_stolen - vcpu->arch.stolen_logged;
663 vcpu->arch.stolen_logged = core_stolen;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000664 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000665 stolen += vcpu->arch.busy_stolen;
666 vcpu->arch.busy_stolen = 0;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000667 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000668 if (!dt || !vpa)
669 return;
670 memset(dt, 0, sizeof(struct dtl_entry));
671 dt->dispatch_reason = 7;
Alexander Graf02407552014-06-11 10:34:19 +0200672 dt->processor_id = cpu_to_be16(vc->pcpu + vcpu->arch.ptid);
673 dt->timebase = cpu_to_be64(now + vc->tb_offset);
674 dt->enqueue_to_dispatch_time = cpu_to_be32(stolen);
675 dt->srr0 = cpu_to_be64(kvmppc_get_pc(vcpu));
676 dt->srr1 = cpu_to_be64(vcpu->arch.shregs.msr);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000677 ++dt;
678 if (dt == vcpu->arch.dtl.pinned_end)
679 dt = vcpu->arch.dtl.pinned_addr;
680 vcpu->arch.dtl_ptr = dt;
681 /* order writing *dt vs. writing vpa->dtl_idx */
682 smp_wmb();
Alexander Graf02407552014-06-11 10:34:19 +0200683 vpa->dtl_idx = cpu_to_be64(++vcpu->arch.dtl_index);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000684 vcpu->arch.dtl.dirty = true;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000685}
686
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000687/* See if there is a doorbell interrupt pending for a vcpu */
688static bool kvmppc_doorbell_pending(struct kvm_vcpu *vcpu)
689{
690 int thr;
691 struct kvmppc_vcore *vc;
692
Paul Mackerras57900692017-05-16 16:41:20 +1000693 if (vcpu->arch.doorbell_request)
694 return true;
695 /*
696 * Ensure that the read of vcore->dpdes comes after the read
697 * of vcpu->doorbell_request. This barrier matches the
698 * lwsync in book3s_hv_rmhandlers.S just before the
699 * fast_guest_return label.
700 */
701 smp_rmb();
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000702 vc = vcpu->arch.vcore;
703 thr = vcpu->vcpu_id - vc->first_vcpuid;
704 return !!(vc->dpdes & (1 << thr));
705}
706
Michael Neuling96423822014-06-02 11:03:01 +1000707static bool kvmppc_power8_compatible(struct kvm_vcpu *vcpu)
708{
709 if (vcpu->arch.vcore->arch_compat >= PVR_ARCH_207)
710 return true;
711 if ((!vcpu->arch.vcore->arch_compat) &&
712 cpu_has_feature(CPU_FTR_ARCH_207S))
713 return true;
714 return false;
715}
716
717static int kvmppc_h_set_mode(struct kvm_vcpu *vcpu, unsigned long mflags,
718 unsigned long resource, unsigned long value1,
719 unsigned long value2)
720{
721 switch (resource) {
722 case H_SET_MODE_RESOURCE_SET_CIABR:
723 if (!kvmppc_power8_compatible(vcpu))
724 return H_P2;
725 if (value2)
726 return H_P4;
727 if (mflags)
728 return H_UNSUPPORTED_FLAG_START;
729 /* Guests can't breakpoint the hypervisor */
730 if ((value1 & CIABR_PRIV) == CIABR_PRIV_HYPER)
731 return H_P3;
732 vcpu->arch.ciabr = value1;
733 return H_SUCCESS;
734 case H_SET_MODE_RESOURCE_SET_DAWR:
735 if (!kvmppc_power8_compatible(vcpu))
736 return H_P2;
737 if (mflags)
738 return H_UNSUPPORTED_FLAG_START;
739 if (value2 & DABRX_HYP)
740 return H_P4;
741 vcpu->arch.dawr = value1;
742 vcpu->arch.dawrx = value2;
743 return H_SUCCESS;
744 default:
745 return H_TOO_HARD;
746 }
747}
748
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100749static int kvm_arch_vcpu_yield_to(struct kvm_vcpu *target)
750{
751 struct kvmppc_vcore *vcore = target->arch.vcore;
752
753 /*
754 * We expect to have been called by the real mode handler
755 * (kvmppc_rm_h_confer()) which would have directly returned
756 * H_SUCCESS if the source vcore wasn't idle (e.g. if it may
757 * have useful work to do and should not confer) so we don't
758 * recheck that here.
759 */
760
761 spin_lock(&vcore->lock);
762 if (target->arch.state == KVMPPC_VCPU_RUNNABLE &&
Paul Mackerrasec257162015-06-24 21:18:03 +1000763 vcore->vcore_state != VCORE_INACTIVE &&
764 vcore->runner)
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100765 target = vcore->runner;
766 spin_unlock(&vcore->lock);
767
768 return kvm_vcpu_yield_to(target);
769}
770
771static int kvmppc_get_yield_count(struct kvm_vcpu *vcpu)
772{
773 int yield_count = 0;
774 struct lppaca *lppaca;
775
776 spin_lock(&vcpu->arch.vpa_update_lock);
777 lppaca = (struct lppaca *)vcpu->arch.vpa.pinned_addr;
778 if (lppaca)
Paul Mackerrasecb6d612015-03-20 20:39:39 +1100779 yield_count = be32_to_cpu(lppaca->yield_count);
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100780 spin_unlock(&vcpu->arch.vpa_update_lock);
781 return yield_count;
782}
783
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000784int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
785{
786 unsigned long req = kvmppc_get_gpr(vcpu, 3);
787 unsigned long target, ret = H_SUCCESS;
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100788 int yield_count;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000789 struct kvm_vcpu *tvcpu;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000790 int idx, rc;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000791
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000792 if (req <= MAX_HCALL_OPCODE &&
793 !test_bit(req/4, vcpu->kvm->arch.enabled_hcalls))
794 return RESUME_HOST;
795
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000796 switch (req) {
797 case H_CEDE:
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000798 break;
799 case H_PROD:
800 target = kvmppc_get_gpr(vcpu, 4);
801 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
802 if (!tvcpu) {
803 ret = H_PARAMETER;
804 break;
805 }
806 tvcpu->arch.prodded = 1;
807 smp_mb();
Paul Mackerras8464c882016-12-06 20:42:05 +1100808 if (tvcpu->arch.ceded)
809 kvmppc_fast_vcpu_kick_hv(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000810 break;
811 case H_CONFER:
Paul Mackerras42d76042013-09-06 13:23:21 +1000812 target = kvmppc_get_gpr(vcpu, 4);
813 if (target == -1)
814 break;
815 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
816 if (!tvcpu) {
817 ret = H_PARAMETER;
818 break;
819 }
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100820 yield_count = kvmppc_get_gpr(vcpu, 5);
821 if (kvmppc_get_yield_count(tvcpu) != yield_count)
822 break;
823 kvm_arch_vcpu_yield_to(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000824 break;
825 case H_REGISTER_VPA:
826 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
827 kvmppc_get_gpr(vcpu, 5),
828 kvmppc_get_gpr(vcpu, 6));
829 break;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000830 case H_RTAS:
831 if (list_empty(&vcpu->kvm->arch.rtas_tokens))
832 return RESUME_HOST;
833
Paul Mackerrasc9438092013-11-16 17:46:05 +1100834 idx = srcu_read_lock(&vcpu->kvm->srcu);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000835 rc = kvmppc_rtas_hcall(vcpu);
Paul Mackerrasc9438092013-11-16 17:46:05 +1100836 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000837
838 if (rc == -ENOENT)
839 return RESUME_HOST;
840 else if (rc == 0)
841 break;
842
843 /* Send the error out to userspace via KVM_RUN */
844 return rc;
David Gibson99342cf82015-02-05 11:53:25 +1100845 case H_LOGICAL_CI_LOAD:
846 ret = kvmppc_h_logical_ci_load(vcpu);
847 if (ret == H_TOO_HARD)
848 return RESUME_HOST;
849 break;
850 case H_LOGICAL_CI_STORE:
851 ret = kvmppc_h_logical_ci_store(vcpu);
852 if (ret == H_TOO_HARD)
853 return RESUME_HOST;
854 break;
Michael Neuling96423822014-06-02 11:03:01 +1000855 case H_SET_MODE:
856 ret = kvmppc_h_set_mode(vcpu, kvmppc_get_gpr(vcpu, 4),
857 kvmppc_get_gpr(vcpu, 5),
858 kvmppc_get_gpr(vcpu, 6),
859 kvmppc_get_gpr(vcpu, 7));
860 if (ret == H_TOO_HARD)
861 return RESUME_HOST;
862 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000863 case H_XIRR:
864 case H_CPPR:
865 case H_EOI:
866 case H_IPI:
Paul Mackerras8e44ddc2013-05-23 15:42:21 +0000867 case H_IPOLL:
868 case H_XIRR_X:
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000869 if (kvmppc_xics_enabled(vcpu)) {
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000870 if (xive_enabled()) {
871 ret = H_NOT_AVAILABLE;
872 return RESUME_GUEST;
873 }
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000874 ret = kvmppc_xics_hcall(vcpu, req);
875 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +1100876 }
877 return RESUME_HOST;
878 case H_PUT_TCE:
879 ret = kvmppc_h_put_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
880 kvmppc_get_gpr(vcpu, 5),
881 kvmppc_get_gpr(vcpu, 6));
882 if (ret == H_TOO_HARD)
883 return RESUME_HOST;
884 break;
885 case H_PUT_TCE_INDIRECT:
886 ret = kvmppc_h_put_tce_indirect(vcpu, kvmppc_get_gpr(vcpu, 4),
887 kvmppc_get_gpr(vcpu, 5),
888 kvmppc_get_gpr(vcpu, 6),
889 kvmppc_get_gpr(vcpu, 7));
890 if (ret == H_TOO_HARD)
891 return RESUME_HOST;
892 break;
893 case H_STUFF_TCE:
894 ret = kvmppc_h_stuff_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
895 kvmppc_get_gpr(vcpu, 5),
896 kvmppc_get_gpr(vcpu, 6),
897 kvmppc_get_gpr(vcpu, 7));
898 if (ret == H_TOO_HARD)
899 return RESUME_HOST;
900 break;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000901 default:
902 return RESUME_HOST;
903 }
904 kvmppc_set_gpr(vcpu, 3, ret);
905 vcpu->arch.hcall_needed = 0;
906 return RESUME_GUEST;
907}
908
Paul Mackerrasae2113a2014-06-02 11:03:00 +1000909static int kvmppc_hcall_impl_hv(unsigned long cmd)
910{
911 switch (cmd) {
912 case H_CEDE:
913 case H_PROD:
914 case H_CONFER:
915 case H_REGISTER_VPA:
Michael Neuling96423822014-06-02 11:03:01 +1000916 case H_SET_MODE:
David Gibson99342cf82015-02-05 11:53:25 +1100917 case H_LOGICAL_CI_LOAD:
918 case H_LOGICAL_CI_STORE:
Paul Mackerrasae2113a2014-06-02 11:03:00 +1000919#ifdef CONFIG_KVM_XICS
920 case H_XIRR:
921 case H_CPPR:
922 case H_EOI:
923 case H_IPI:
924 case H_IPOLL:
925 case H_XIRR_X:
926#endif
927 return 1;
928 }
929
930 /* See if it's in the real-mode table */
931 return kvmppc_hcall_impl_hv_realmode(cmd);
932}
933
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +0530934static int kvmppc_emulate_debug_inst(struct kvm_run *run,
935 struct kvm_vcpu *vcpu)
936{
937 u32 last_inst;
938
939 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst) !=
940 EMULATE_DONE) {
941 /*
942 * Fetch failed, so return to guest and
943 * try executing it again.
944 */
945 return RESUME_GUEST;
946 }
947
948 if (last_inst == KVMPPC_INST_SW_BREAKPOINT) {
949 run->exit_reason = KVM_EXIT_DEBUG;
950 run->debug.arch.address = kvmppc_get_pc(vcpu);
951 return RESUME_HOST;
952 } else {
953 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
954 return RESUME_GUEST;
955 }
956}
957
Paul Mackerras57900692017-05-16 16:41:20 +1000958static void do_nothing(void *x)
959{
960}
961
962static unsigned long kvmppc_read_dpdes(struct kvm_vcpu *vcpu)
963{
964 int thr, cpu, pcpu, nthreads;
965 struct kvm_vcpu *v;
966 unsigned long dpdes;
967
968 nthreads = vcpu->kvm->arch.emul_smt_mode;
969 dpdes = 0;
970 cpu = vcpu->vcpu_id & ~(nthreads - 1);
971 for (thr = 0; thr < nthreads; ++thr, ++cpu) {
972 v = kvmppc_find_vcpu(vcpu->kvm, cpu);
973 if (!v)
974 continue;
975 /*
976 * If the vcpu is currently running on a physical cpu thread,
977 * interrupt it in order to pull it out of the guest briefly,
978 * which will update its vcore->dpdes value.
979 */
980 pcpu = READ_ONCE(v->cpu);
981 if (pcpu >= 0)
982 smp_call_function_single(pcpu, do_nothing, NULL, 1);
983 if (kvmppc_doorbell_pending(v))
984 dpdes |= 1 << thr;
985 }
986 return dpdes;
987}
988
989/*
990 * On POWER9, emulate doorbell-related instructions in order to
991 * give the guest the illusion of running on a multi-threaded core.
992 * The instructions emulated are msgsndp, msgclrp, mfspr TIR,
993 * and mfspr DPDES.
994 */
995static int kvmppc_emulate_doorbell_instr(struct kvm_vcpu *vcpu)
996{
997 u32 inst, rb, thr;
998 unsigned long arg;
999 struct kvm *kvm = vcpu->kvm;
1000 struct kvm_vcpu *tvcpu;
1001
1002 if (!cpu_has_feature(CPU_FTR_ARCH_300))
1003 return EMULATE_FAIL;
1004 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &inst) != EMULATE_DONE)
1005 return RESUME_GUEST;
1006 if (get_op(inst) != 31)
1007 return EMULATE_FAIL;
1008 rb = get_rb(inst);
1009 thr = vcpu->vcpu_id & (kvm->arch.emul_smt_mode - 1);
1010 switch (get_xop(inst)) {
1011 case OP_31_XOP_MSGSNDP:
1012 arg = kvmppc_get_gpr(vcpu, rb);
1013 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1014 break;
1015 arg &= 0x3f;
1016 if (arg >= kvm->arch.emul_smt_mode)
1017 break;
1018 tvcpu = kvmppc_find_vcpu(kvm, vcpu->vcpu_id - thr + arg);
1019 if (!tvcpu)
1020 break;
1021 if (!tvcpu->arch.doorbell_request) {
1022 tvcpu->arch.doorbell_request = 1;
1023 kvmppc_fast_vcpu_kick_hv(tvcpu);
1024 }
1025 break;
1026 case OP_31_XOP_MSGCLRP:
1027 arg = kvmppc_get_gpr(vcpu, rb);
1028 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1029 break;
1030 vcpu->arch.vcore->dpdes = 0;
1031 vcpu->arch.doorbell_request = 0;
1032 break;
1033 case OP_31_XOP_MFSPR:
1034 switch (get_sprn(inst)) {
1035 case SPRN_TIR:
1036 arg = thr;
1037 break;
1038 case SPRN_DPDES:
1039 arg = kvmppc_read_dpdes(vcpu);
1040 break;
1041 default:
1042 return EMULATE_FAIL;
1043 }
1044 kvmppc_set_gpr(vcpu, get_rt(inst), arg);
1045 break;
1046 default:
1047 return EMULATE_FAIL;
1048 }
1049 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
1050 return RESUME_GUEST;
1051}
1052
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301053static int kvmppc_handle_exit_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
1054 struct task_struct *tsk)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001055{
1056 int r = RESUME_HOST;
1057
1058 vcpu->stat.sum_exits++;
1059
Paul Mackerras1c9e3d52015-11-12 16:43:48 +11001060 /*
1061 * This can happen if an interrupt occurs in the last stages
1062 * of guest entry or the first stages of guest exit (i.e. after
1063 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1064 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1065 * That can happen due to a bug, or due to a machine check
1066 * occurring at just the wrong time.
1067 */
1068 if (vcpu->arch.shregs.msr & MSR_HV) {
1069 printk(KERN_EMERG "KVM trap in HV mode!\n");
1070 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1071 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1072 vcpu->arch.shregs.msr);
1073 kvmppc_dump_regs(vcpu);
1074 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1075 run->hw.hardware_exit_reason = vcpu->arch.trap;
1076 return RESUME_HOST;
1077 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001078 run->exit_reason = KVM_EXIT_UNKNOWN;
1079 run->ready_for_interrupt_injection = 1;
1080 switch (vcpu->arch.trap) {
1081 /* We're good on these - the host merely wanted to get our attention */
1082 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1083 vcpu->stat.dec_exits++;
1084 r = RESUME_GUEST;
1085 break;
1086 case BOOK3S_INTERRUPT_EXTERNAL:
Paul Mackerras5d00f662014-01-08 21:25:28 +11001087 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerras84f71392016-11-22 14:30:14 +11001088 case BOOK3S_INTERRUPT_H_VIRT:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001089 vcpu->stat.ext_intr_exits++;
1090 r = RESUME_GUEST;
1091 break;
Mahesh Salgaonkardee6f242014-11-03 15:51:57 +11001092 /* HMI is hypervisor interrupt and host has handled it. Resume guest.*/
1093 case BOOK3S_INTERRUPT_HMI:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001094 case BOOK3S_INTERRUPT_PERFMON:
1095 r = RESUME_GUEST;
1096 break;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001097 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Aravinda Prasade20bbd32017-05-11 16:33:37 +05301098 /* Exit to guest with KVM_EXIT_NMI as exit reason */
1099 run->exit_reason = KVM_EXIT_NMI;
1100 run->hw.hardware_exit_reason = vcpu->arch.trap;
1101 /* Clear out the old NMI status from run->flags */
1102 run->flags &= ~KVM_RUN_PPC_NMI_DISP_MASK;
1103 /* Now set the NMI status */
1104 if (vcpu->arch.mce_evt.disposition == MCE_DISPOSITION_RECOVERED)
1105 run->flags |= KVM_RUN_PPC_NMI_DISP_FULLY_RECOV;
1106 else
1107 run->flags |= KVM_RUN_PPC_NMI_DISP_NOT_RECOV;
1108
1109 r = RESUME_HOST;
1110 /* Print the MCE event to host console. */
1111 machine_check_print_event_info(&vcpu->arch.mce_evt, false);
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001112 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001113 case BOOK3S_INTERRUPT_PROGRAM:
1114 {
1115 ulong flags;
1116 /*
1117 * Normally program interrupts are delivered directly
1118 * to the guest by the hardware, but we can get here
1119 * as a result of a hypervisor emulation interrupt
1120 * (e40) getting turned into a 700 by BML RTAS.
1121 */
1122 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
1123 kvmppc_core_queue_program(vcpu, flags);
1124 r = RESUME_GUEST;
1125 break;
1126 }
1127 case BOOK3S_INTERRUPT_SYSCALL:
1128 {
1129 /* hcall - punt to userspace */
1130 int i;
1131
Liu Ping Fan27025a62013-11-19 14:12:48 +08001132 /* hypercall with MSR_PR has already been handled in rmode,
1133 * and never reaches here.
1134 */
1135
Paul Mackerrasde56a942011-06-29 00:21:34 +00001136 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
1137 for (i = 0; i < 9; ++i)
1138 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
1139 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1140 vcpu->arch.hcall_needed = 1;
1141 r = RESUME_HOST;
1142 break;
1143 }
1144 /*
Paul Mackerras342d3db2011-12-12 12:38:05 +00001145 * We get these next two if the guest accesses a page which it thinks
1146 * it has mapped but which is not actually present, either because
1147 * it is for an emulated I/O device or because the corresonding
1148 * host page has been paged out. Any other HDSI/HISI interrupts
1149 * have been handled already.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001150 */
1151 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001152 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001153 break;
1154 case BOOK3S_INTERRUPT_H_INST_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001155 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
1156 vcpu->arch.fault_dsisr = 0;
1157 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001158 break;
1159 /*
1160 * This occurs if the guest executes an illegal instruction.
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301161 * If the guest debug is disabled, generate a program interrupt
1162 * to the guest. If guest debug is enabled, we need to check
1163 * whether the instruction is a software breakpoint instruction.
1164 * Accordingly return to Guest or Host.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001165 */
1166 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerras4a157d62014-12-03 13:30:39 +11001167 if (vcpu->arch.emul_inst != KVM_INST_FETCH_FAILED)
1168 vcpu->arch.last_inst = kvmppc_need_byteswap(vcpu) ?
1169 swab32(vcpu->arch.emul_inst) :
1170 vcpu->arch.emul_inst;
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301171 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) {
1172 r = kvmppc_emulate_debug_inst(run, vcpu);
1173 } else {
1174 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1175 r = RESUME_GUEST;
1176 }
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001177 break;
1178 /*
1179 * This occurs if the guest (kernel or userspace), does something that
Paul Mackerras57900692017-05-16 16:41:20 +10001180 * is prohibited by HFSCR.
1181 * On POWER9, this could be a doorbell instruction that we need
1182 * to emulate.
1183 * Otherwise, we just generate a program interrupt to the guest.
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001184 */
1185 case BOOK3S_INTERRUPT_H_FAC_UNAVAIL:
Paul Mackerras57900692017-05-16 16:41:20 +10001186 r = EMULATE_FAIL;
1187 if ((vcpu->arch.hfscr >> 56) == FSCR_MSGP_LG)
1188 r = kvmppc_emulate_doorbell_instr(vcpu);
1189 if (r == EMULATE_FAIL) {
1190 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1191 r = RESUME_GUEST;
1192 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001193 break;
Suresh Warrierf7af5202016-08-19 15:35:52 +10001194 case BOOK3S_INTERRUPT_HV_RM_HARD:
1195 r = RESUME_PASSTHROUGH;
1196 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001197 default:
1198 kvmppc_dump_regs(vcpu);
1199 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1200 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1201 vcpu->arch.shregs.msr);
Paul Mackerrasf3271d42013-09-20 14:52:41 +10001202 run->hw.hardware_exit_reason = vcpu->arch.trap;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001203 r = RESUME_HOST;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001204 break;
1205 }
1206
Paul Mackerrasde56a942011-06-29 00:21:34 +00001207 return r;
1208}
1209
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301210static int kvm_arch_vcpu_ioctl_get_sregs_hv(struct kvm_vcpu *vcpu,
1211 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001212{
1213 int i;
1214
Paul Mackerrasde56a942011-06-29 00:21:34 +00001215 memset(sregs, 0, sizeof(struct kvm_sregs));
Aneesh Kumar K.V87916442013-08-22 17:08:39 +05301216 sregs->pvr = vcpu->arch.pvr;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001217 for (i = 0; i < vcpu->arch.slb_max; i++) {
1218 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
1219 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1220 }
1221
1222 return 0;
1223}
1224
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301225static int kvm_arch_vcpu_ioctl_set_sregs_hv(struct kvm_vcpu *vcpu,
1226 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001227{
1228 int i, j;
1229
Paul Mackerras9333e6c2014-09-02 16:14:43 +10001230 /* Only accept the same PVR as the host's, since we can't spoof it */
1231 if (sregs->pvr != vcpu->arch.pvr)
1232 return -EINVAL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001233
1234 j = 0;
1235 for (i = 0; i < vcpu->arch.slb_nr; i++) {
1236 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
1237 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
1238 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
1239 ++j;
1240 }
1241 }
1242 vcpu->arch.slb_max = j;
1243
1244 return 0;
1245}
1246
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001247static void kvmppc_set_lpcr(struct kvm_vcpu *vcpu, u64 new_lpcr,
1248 bool preserve_top32)
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001249{
Paul Mackerras8f902b02015-03-20 20:39:38 +11001250 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001251 struct kvmppc_vcore *vc = vcpu->arch.vcore;
1252 u64 mask;
1253
Paul Mackerras8f902b02015-03-20 20:39:38 +11001254 mutex_lock(&kvm->lock);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001255 spin_lock(&vc->lock);
1256 /*
Anton Blanchardd6829162014-01-08 21:25:30 +11001257 * If ILE (interrupt little-endian) has changed, update the
1258 * MSR_LE bit in the intr_msr for each vcpu in this vcore.
1259 */
1260 if ((new_lpcr & LPCR_ILE) != (vc->lpcr & LPCR_ILE)) {
Anton Blanchardd6829162014-01-08 21:25:30 +11001261 struct kvm_vcpu *vcpu;
1262 int i;
1263
Anton Blanchardd6829162014-01-08 21:25:30 +11001264 kvm_for_each_vcpu(i, vcpu, kvm) {
1265 if (vcpu->arch.vcore != vc)
1266 continue;
1267 if (new_lpcr & LPCR_ILE)
1268 vcpu->arch.intr_msr |= MSR_LE;
1269 else
1270 vcpu->arch.intr_msr &= ~MSR_LE;
1271 }
Anton Blanchardd6829162014-01-08 21:25:30 +11001272 }
1273
1274 /*
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001275 * Userspace can only modify DPFD (default prefetch depth),
1276 * ILE (interrupt little-endian) and TC (translation control).
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11001277 * On POWER8 and POWER9 userspace can also modify AIL (alt. interrupt loc.).
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001278 */
1279 mask = LPCR_DPFD | LPCR_ILE | LPCR_TC;
Paul Mackerrase0622bd2014-01-08 21:25:27 +11001280 if (cpu_has_feature(CPU_FTR_ARCH_207S))
1281 mask |= LPCR_AIL;
Paul Mackerras1bc3fe82017-05-22 16:55:16 +10001282 /*
1283 * On POWER9, allow userspace to enable large decrementer for the
1284 * guest, whether or not the host has it enabled.
1285 */
1286 if (cpu_has_feature(CPU_FTR_ARCH_300))
1287 mask |= LPCR_LD;
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001288
1289 /* Broken 32-bit version of LPCR must not clear top bits */
1290 if (preserve_top32)
1291 mask &= 0xFFFFFFFF;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001292 vc->lpcr = (vc->lpcr & ~mask) | (new_lpcr & mask);
1293 spin_unlock(&vc->lock);
Paul Mackerras8f902b02015-03-20 20:39:38 +11001294 mutex_unlock(&kvm->lock);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001295}
1296
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301297static int kvmppc_get_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1298 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001299{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001300 int r = 0;
1301 long int i;
Paul Mackerras31f34382011-12-12 12:26:50 +00001302
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001303 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301304 case KVM_REG_PPC_DEBUG_INST:
1305 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1306 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001307 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001308 *val = get_reg_val(id, 0);
1309 break;
1310 case KVM_REG_PPC_DABR:
1311 *val = get_reg_val(id, vcpu->arch.dabr);
1312 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001313 case KVM_REG_PPC_DABRX:
1314 *val = get_reg_val(id, vcpu->arch.dabrx);
1315 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001316 case KVM_REG_PPC_DSCR:
1317 *val = get_reg_val(id, vcpu->arch.dscr);
1318 break;
1319 case KVM_REG_PPC_PURR:
1320 *val = get_reg_val(id, vcpu->arch.purr);
1321 break;
1322 case KVM_REG_PPC_SPURR:
1323 *val = get_reg_val(id, vcpu->arch.spurr);
1324 break;
1325 case KVM_REG_PPC_AMR:
1326 *val = get_reg_val(id, vcpu->arch.amr);
1327 break;
1328 case KVM_REG_PPC_UAMOR:
1329 *val = get_reg_val(id, vcpu->arch.uamor);
1330 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001331 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRS:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001332 i = id - KVM_REG_PPC_MMCR0;
1333 *val = get_reg_val(id, vcpu->arch.mmcr[i]);
1334 break;
1335 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1336 i = id - KVM_REG_PPC_PMC1;
1337 *val = get_reg_val(id, vcpu->arch.pmc[i]);
Paul Mackerras31f34382011-12-12 12:26:50 +00001338 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001339 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1340 i = id - KVM_REG_PPC_SPMC1;
1341 *val = get_reg_val(id, vcpu->arch.spmc[i]);
1342 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001343 case KVM_REG_PPC_SIAR:
1344 *val = get_reg_val(id, vcpu->arch.siar);
1345 break;
1346 case KVM_REG_PPC_SDAR:
1347 *val = get_reg_val(id, vcpu->arch.sdar);
1348 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001349 case KVM_REG_PPC_SIER:
1350 *val = get_reg_val(id, vcpu->arch.sier);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001351 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001352 case KVM_REG_PPC_IAMR:
1353 *val = get_reg_val(id, vcpu->arch.iamr);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001354 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001355 case KVM_REG_PPC_PSPB:
1356 *val = get_reg_val(id, vcpu->arch.pspb);
1357 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001358 case KVM_REG_PPC_DPDES:
1359 *val = get_reg_val(id, vcpu->arch.vcore->dpdes);
1360 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001361 case KVM_REG_PPC_VTB:
1362 *val = get_reg_val(id, vcpu->arch.vcore->vtb);
1363 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001364 case KVM_REG_PPC_DAWR:
1365 *val = get_reg_val(id, vcpu->arch.dawr);
1366 break;
1367 case KVM_REG_PPC_DAWRX:
1368 *val = get_reg_val(id, vcpu->arch.dawrx);
1369 break;
1370 case KVM_REG_PPC_CIABR:
1371 *val = get_reg_val(id, vcpu->arch.ciabr);
1372 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001373 case KVM_REG_PPC_CSIGR:
1374 *val = get_reg_val(id, vcpu->arch.csigr);
1375 break;
1376 case KVM_REG_PPC_TACR:
1377 *val = get_reg_val(id, vcpu->arch.tacr);
1378 break;
1379 case KVM_REG_PPC_TCSCR:
1380 *val = get_reg_val(id, vcpu->arch.tcscr);
1381 break;
1382 case KVM_REG_PPC_PID:
1383 *val = get_reg_val(id, vcpu->arch.pid);
1384 break;
1385 case KVM_REG_PPC_ACOP:
1386 *val = get_reg_val(id, vcpu->arch.acop);
1387 break;
1388 case KVM_REG_PPC_WORT:
1389 *val = get_reg_val(id, vcpu->arch.wort);
1390 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001391 case KVM_REG_PPC_TIDR:
1392 *val = get_reg_val(id, vcpu->arch.tid);
1393 break;
1394 case KVM_REG_PPC_PSSCR:
1395 *val = get_reg_val(id, vcpu->arch.psscr);
1396 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001397 case KVM_REG_PPC_VPA_ADDR:
1398 spin_lock(&vcpu->arch.vpa_update_lock);
1399 *val = get_reg_val(id, vcpu->arch.vpa.next_gpa);
1400 spin_unlock(&vcpu->arch.vpa_update_lock);
1401 break;
1402 case KVM_REG_PPC_VPA_SLB:
1403 spin_lock(&vcpu->arch.vpa_update_lock);
1404 val->vpaval.addr = vcpu->arch.slb_shadow.next_gpa;
1405 val->vpaval.length = vcpu->arch.slb_shadow.len;
1406 spin_unlock(&vcpu->arch.vpa_update_lock);
1407 break;
1408 case KVM_REG_PPC_VPA_DTL:
1409 spin_lock(&vcpu->arch.vpa_update_lock);
1410 val->vpaval.addr = vcpu->arch.dtl.next_gpa;
1411 val->vpaval.length = vcpu->arch.dtl.len;
1412 spin_unlock(&vcpu->arch.vpa_update_lock);
1413 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001414 case KVM_REG_PPC_TB_OFFSET:
1415 *val = get_reg_val(id, vcpu->arch.vcore->tb_offset);
1416 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001417 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001418 case KVM_REG_PPC_LPCR_64:
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001419 *val = get_reg_val(id, vcpu->arch.vcore->lpcr);
1420 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001421 case KVM_REG_PPC_PPR:
1422 *val = get_reg_val(id, vcpu->arch.ppr);
1423 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001424#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1425 case KVM_REG_PPC_TFHAR:
1426 *val = get_reg_val(id, vcpu->arch.tfhar);
1427 break;
1428 case KVM_REG_PPC_TFIAR:
1429 *val = get_reg_val(id, vcpu->arch.tfiar);
1430 break;
1431 case KVM_REG_PPC_TEXASR:
1432 *val = get_reg_val(id, vcpu->arch.texasr);
1433 break;
1434 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
1435 i = id - KVM_REG_PPC_TM_GPR0;
1436 *val = get_reg_val(id, vcpu->arch.gpr_tm[i]);
1437 break;
1438 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
1439 {
1440 int j;
1441 i = id - KVM_REG_PPC_TM_VSR0;
1442 if (i < 32)
1443 for (j = 0; j < TS_FPRWIDTH; j++)
1444 val->vsxval[j] = vcpu->arch.fp_tm.fpr[i][j];
1445 else {
1446 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1447 val->vval = vcpu->arch.vr_tm.vr[i-32];
1448 else
1449 r = -ENXIO;
1450 }
1451 break;
1452 }
1453 case KVM_REG_PPC_TM_CR:
1454 *val = get_reg_val(id, vcpu->arch.cr_tm);
1455 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11001456 case KVM_REG_PPC_TM_XER:
1457 *val = get_reg_val(id, vcpu->arch.xer_tm);
1458 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001459 case KVM_REG_PPC_TM_LR:
1460 *val = get_reg_val(id, vcpu->arch.lr_tm);
1461 break;
1462 case KVM_REG_PPC_TM_CTR:
1463 *val = get_reg_val(id, vcpu->arch.ctr_tm);
1464 break;
1465 case KVM_REG_PPC_TM_FPSCR:
1466 *val = get_reg_val(id, vcpu->arch.fp_tm.fpscr);
1467 break;
1468 case KVM_REG_PPC_TM_AMR:
1469 *val = get_reg_val(id, vcpu->arch.amr_tm);
1470 break;
1471 case KVM_REG_PPC_TM_PPR:
1472 *val = get_reg_val(id, vcpu->arch.ppr_tm);
1473 break;
1474 case KVM_REG_PPC_TM_VRSAVE:
1475 *val = get_reg_val(id, vcpu->arch.vrsave_tm);
1476 break;
1477 case KVM_REG_PPC_TM_VSCR:
1478 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1479 *val = get_reg_val(id, vcpu->arch.vr_tm.vscr.u[3]);
1480 else
1481 r = -ENXIO;
1482 break;
1483 case KVM_REG_PPC_TM_DSCR:
1484 *val = get_reg_val(id, vcpu->arch.dscr_tm);
1485 break;
1486 case KVM_REG_PPC_TM_TAR:
1487 *val = get_reg_val(id, vcpu->arch.tar_tm);
1488 break;
1489#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10001490 case KVM_REG_PPC_ARCH_COMPAT:
1491 *val = get_reg_val(id, vcpu->arch.vcore->arch_compat);
1492 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001493 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001494 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001495 break;
1496 }
1497
1498 return r;
1499}
1500
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301501static int kvmppc_set_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1502 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001503{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001504 int r = 0;
1505 long int i;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001506 unsigned long addr, len;
Paul Mackerras31f34382011-12-12 12:26:50 +00001507
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001508 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001509 case KVM_REG_PPC_HIOR:
Paul Mackerras31f34382011-12-12 12:26:50 +00001510 /* Only allow this to be set to zero */
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001511 if (set_reg_val(id, *val))
Paul Mackerras31f34382011-12-12 12:26:50 +00001512 r = -EINVAL;
1513 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001514 case KVM_REG_PPC_DABR:
1515 vcpu->arch.dabr = set_reg_val(id, *val);
1516 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001517 case KVM_REG_PPC_DABRX:
1518 vcpu->arch.dabrx = set_reg_val(id, *val) & ~DABRX_HYP;
1519 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001520 case KVM_REG_PPC_DSCR:
1521 vcpu->arch.dscr = set_reg_val(id, *val);
1522 break;
1523 case KVM_REG_PPC_PURR:
1524 vcpu->arch.purr = set_reg_val(id, *val);
1525 break;
1526 case KVM_REG_PPC_SPURR:
1527 vcpu->arch.spurr = set_reg_val(id, *val);
1528 break;
1529 case KVM_REG_PPC_AMR:
1530 vcpu->arch.amr = set_reg_val(id, *val);
1531 break;
1532 case KVM_REG_PPC_UAMOR:
1533 vcpu->arch.uamor = set_reg_val(id, *val);
1534 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001535 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRS:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001536 i = id - KVM_REG_PPC_MMCR0;
1537 vcpu->arch.mmcr[i] = set_reg_val(id, *val);
1538 break;
1539 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1540 i = id - KVM_REG_PPC_PMC1;
1541 vcpu->arch.pmc[i] = set_reg_val(id, *val);
1542 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001543 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1544 i = id - KVM_REG_PPC_SPMC1;
1545 vcpu->arch.spmc[i] = set_reg_val(id, *val);
1546 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001547 case KVM_REG_PPC_SIAR:
1548 vcpu->arch.siar = set_reg_val(id, *val);
1549 break;
1550 case KVM_REG_PPC_SDAR:
1551 vcpu->arch.sdar = set_reg_val(id, *val);
1552 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001553 case KVM_REG_PPC_SIER:
1554 vcpu->arch.sier = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001555 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001556 case KVM_REG_PPC_IAMR:
1557 vcpu->arch.iamr = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001558 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001559 case KVM_REG_PPC_PSPB:
1560 vcpu->arch.pspb = set_reg_val(id, *val);
1561 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001562 case KVM_REG_PPC_DPDES:
1563 vcpu->arch.vcore->dpdes = set_reg_val(id, *val);
1564 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001565 case KVM_REG_PPC_VTB:
1566 vcpu->arch.vcore->vtb = set_reg_val(id, *val);
1567 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001568 case KVM_REG_PPC_DAWR:
1569 vcpu->arch.dawr = set_reg_val(id, *val);
1570 break;
1571 case KVM_REG_PPC_DAWRX:
1572 vcpu->arch.dawrx = set_reg_val(id, *val) & ~DAWRX_HYP;
1573 break;
1574 case KVM_REG_PPC_CIABR:
1575 vcpu->arch.ciabr = set_reg_val(id, *val);
1576 /* Don't allow setting breakpoints in hypervisor code */
1577 if ((vcpu->arch.ciabr & CIABR_PRIV) == CIABR_PRIV_HYPER)
1578 vcpu->arch.ciabr &= ~CIABR_PRIV; /* disable */
1579 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001580 case KVM_REG_PPC_CSIGR:
1581 vcpu->arch.csigr = set_reg_val(id, *val);
1582 break;
1583 case KVM_REG_PPC_TACR:
1584 vcpu->arch.tacr = set_reg_val(id, *val);
1585 break;
1586 case KVM_REG_PPC_TCSCR:
1587 vcpu->arch.tcscr = set_reg_val(id, *val);
1588 break;
1589 case KVM_REG_PPC_PID:
1590 vcpu->arch.pid = set_reg_val(id, *val);
1591 break;
1592 case KVM_REG_PPC_ACOP:
1593 vcpu->arch.acop = set_reg_val(id, *val);
1594 break;
1595 case KVM_REG_PPC_WORT:
1596 vcpu->arch.wort = set_reg_val(id, *val);
1597 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001598 case KVM_REG_PPC_TIDR:
1599 vcpu->arch.tid = set_reg_val(id, *val);
1600 break;
1601 case KVM_REG_PPC_PSSCR:
1602 vcpu->arch.psscr = set_reg_val(id, *val) & PSSCR_GUEST_VIS;
1603 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001604 case KVM_REG_PPC_VPA_ADDR:
1605 addr = set_reg_val(id, *val);
1606 r = -EINVAL;
1607 if (!addr && (vcpu->arch.slb_shadow.next_gpa ||
1608 vcpu->arch.dtl.next_gpa))
1609 break;
1610 r = set_vpa(vcpu, &vcpu->arch.vpa, addr, sizeof(struct lppaca));
1611 break;
1612 case KVM_REG_PPC_VPA_SLB:
1613 addr = val->vpaval.addr;
1614 len = val->vpaval.length;
1615 r = -EINVAL;
1616 if (addr && !vcpu->arch.vpa.next_gpa)
1617 break;
1618 r = set_vpa(vcpu, &vcpu->arch.slb_shadow, addr, len);
1619 break;
1620 case KVM_REG_PPC_VPA_DTL:
1621 addr = val->vpaval.addr;
1622 len = val->vpaval.length;
1623 r = -EINVAL;
Paul Mackerras9f8c8c72012-10-15 01:18:37 +00001624 if (addr && (len < sizeof(struct dtl_entry) ||
1625 !vcpu->arch.vpa.next_gpa))
Paul Mackerras55b665b2012-09-25 20:33:06 +00001626 break;
1627 len -= len % sizeof(struct dtl_entry);
1628 r = set_vpa(vcpu, &vcpu->arch.dtl, addr, len);
1629 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001630 case KVM_REG_PPC_TB_OFFSET:
Paul Mackerras3d3efb62017-06-06 14:35:30 +10001631 /*
1632 * POWER9 DD1 has an erratum where writing TBU40 causes
1633 * the timebase to lose ticks. So we don't let the
1634 * timebase offset be changed on P9 DD1. (It is
1635 * initialized to zero.)
1636 */
1637 if (cpu_has_feature(CPU_FTR_POWER9_DD1))
1638 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001639 /* round up to multiple of 2^24 */
1640 vcpu->arch.vcore->tb_offset =
1641 ALIGN(set_reg_val(id, *val), 1UL << 24);
1642 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001643 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001644 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), true);
1645 break;
1646 case KVM_REG_PPC_LPCR_64:
1647 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), false);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001648 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001649 case KVM_REG_PPC_PPR:
1650 vcpu->arch.ppr = set_reg_val(id, *val);
1651 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001652#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1653 case KVM_REG_PPC_TFHAR:
1654 vcpu->arch.tfhar = set_reg_val(id, *val);
1655 break;
1656 case KVM_REG_PPC_TFIAR:
1657 vcpu->arch.tfiar = set_reg_val(id, *val);
1658 break;
1659 case KVM_REG_PPC_TEXASR:
1660 vcpu->arch.texasr = set_reg_val(id, *val);
1661 break;
1662 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
1663 i = id - KVM_REG_PPC_TM_GPR0;
1664 vcpu->arch.gpr_tm[i] = set_reg_val(id, *val);
1665 break;
1666 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
1667 {
1668 int j;
1669 i = id - KVM_REG_PPC_TM_VSR0;
1670 if (i < 32)
1671 for (j = 0; j < TS_FPRWIDTH; j++)
1672 vcpu->arch.fp_tm.fpr[i][j] = val->vsxval[j];
1673 else
1674 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1675 vcpu->arch.vr_tm.vr[i-32] = val->vval;
1676 else
1677 r = -ENXIO;
1678 break;
1679 }
1680 case KVM_REG_PPC_TM_CR:
1681 vcpu->arch.cr_tm = set_reg_val(id, *val);
1682 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11001683 case KVM_REG_PPC_TM_XER:
1684 vcpu->arch.xer_tm = set_reg_val(id, *val);
1685 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001686 case KVM_REG_PPC_TM_LR:
1687 vcpu->arch.lr_tm = set_reg_val(id, *val);
1688 break;
1689 case KVM_REG_PPC_TM_CTR:
1690 vcpu->arch.ctr_tm = set_reg_val(id, *val);
1691 break;
1692 case KVM_REG_PPC_TM_FPSCR:
1693 vcpu->arch.fp_tm.fpscr = set_reg_val(id, *val);
1694 break;
1695 case KVM_REG_PPC_TM_AMR:
1696 vcpu->arch.amr_tm = set_reg_val(id, *val);
1697 break;
1698 case KVM_REG_PPC_TM_PPR:
1699 vcpu->arch.ppr_tm = set_reg_val(id, *val);
1700 break;
1701 case KVM_REG_PPC_TM_VRSAVE:
1702 vcpu->arch.vrsave_tm = set_reg_val(id, *val);
1703 break;
1704 case KVM_REG_PPC_TM_VSCR:
1705 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1706 vcpu->arch.vr.vscr.u[3] = set_reg_val(id, *val);
1707 else
1708 r = - ENXIO;
1709 break;
1710 case KVM_REG_PPC_TM_DSCR:
1711 vcpu->arch.dscr_tm = set_reg_val(id, *val);
1712 break;
1713 case KVM_REG_PPC_TM_TAR:
1714 vcpu->arch.tar_tm = set_reg_val(id, *val);
1715 break;
1716#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10001717 case KVM_REG_PPC_ARCH_COMPAT:
1718 r = kvmppc_set_arch_compat(vcpu, set_reg_val(id, *val));
1719 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001720 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001721 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001722 break;
1723 }
1724
1725 return r;
1726}
1727
Paul Mackerras45c940b2016-11-18 17:43:30 +11001728/*
1729 * On POWER9, threads are independent and can be in different partitions.
1730 * Therefore we consider each thread to be a subcore.
1731 * There is a restriction that all threads have to be in the same
1732 * MMU mode (radix or HPT), unfortunately, but since we only support
1733 * HPT guests on a HPT host so far, that isn't an impediment yet.
1734 */
1735static int threads_per_vcore(void)
1736{
1737 if (cpu_has_feature(CPU_FTR_ARCH_300))
1738 return 1;
1739 return threads_per_subcore;
1740}
1741
Stewart Smithde9bdd12014-07-18 14:18:42 +10001742static struct kvmppc_vcore *kvmppc_vcore_create(struct kvm *kvm, int core)
1743{
1744 struct kvmppc_vcore *vcore;
1745
1746 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
1747
1748 if (vcore == NULL)
1749 return NULL;
1750
Stewart Smithde9bdd12014-07-18 14:18:42 +10001751 spin_lock_init(&vcore->lock);
Paul Mackerras2711e242014-12-04 16:43:28 +11001752 spin_lock_init(&vcore->stoltb_lock);
Marcelo Tosatti85773702016-02-19 09:46:39 +01001753 init_swait_queue_head(&vcore->wq);
Stewart Smithde9bdd12014-07-18 14:18:42 +10001754 vcore->preempt_tb = TB_NIL;
1755 vcore->lpcr = kvm->arch.lpcr;
Paul Mackerras3c313522017-02-06 13:24:41 +11001756 vcore->first_vcpuid = core * kvm->arch.smt_mode;
Stewart Smithde9bdd12014-07-18 14:18:42 +10001757 vcore->kvm = kvm;
Paul Mackerrasec257162015-06-24 21:18:03 +10001758 INIT_LIST_HEAD(&vcore->preempt_list);
Stewart Smithde9bdd12014-07-18 14:18:42 +10001759
1760 return vcore;
1761}
1762
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11001763#ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
1764static struct debugfs_timings_element {
1765 const char *name;
1766 size_t offset;
1767} timings[] = {
1768 {"rm_entry", offsetof(struct kvm_vcpu, arch.rm_entry)},
1769 {"rm_intr", offsetof(struct kvm_vcpu, arch.rm_intr)},
1770 {"rm_exit", offsetof(struct kvm_vcpu, arch.rm_exit)},
1771 {"guest", offsetof(struct kvm_vcpu, arch.guest_time)},
1772 {"cede", offsetof(struct kvm_vcpu, arch.cede_time)},
1773};
1774
1775#define N_TIMINGS (sizeof(timings) / sizeof(timings[0]))
1776
1777struct debugfs_timings_state {
1778 struct kvm_vcpu *vcpu;
1779 unsigned int buflen;
1780 char buf[N_TIMINGS * 100];
1781};
1782
1783static int debugfs_timings_open(struct inode *inode, struct file *file)
1784{
1785 struct kvm_vcpu *vcpu = inode->i_private;
1786 struct debugfs_timings_state *p;
1787
1788 p = kzalloc(sizeof(*p), GFP_KERNEL);
1789 if (!p)
1790 return -ENOMEM;
1791
1792 kvm_get_kvm(vcpu->kvm);
1793 p->vcpu = vcpu;
1794 file->private_data = p;
1795
1796 return nonseekable_open(inode, file);
1797}
1798
1799static int debugfs_timings_release(struct inode *inode, struct file *file)
1800{
1801 struct debugfs_timings_state *p = file->private_data;
1802
1803 kvm_put_kvm(p->vcpu->kvm);
1804 kfree(p);
1805 return 0;
1806}
1807
1808static ssize_t debugfs_timings_read(struct file *file, char __user *buf,
1809 size_t len, loff_t *ppos)
1810{
1811 struct debugfs_timings_state *p = file->private_data;
1812 struct kvm_vcpu *vcpu = p->vcpu;
1813 char *s, *buf_end;
1814 struct kvmhv_tb_accumulator tb;
1815 u64 count;
1816 loff_t pos;
1817 ssize_t n;
1818 int i, loops;
1819 bool ok;
1820
1821 if (!p->buflen) {
1822 s = p->buf;
1823 buf_end = s + sizeof(p->buf);
1824 for (i = 0; i < N_TIMINGS; ++i) {
1825 struct kvmhv_tb_accumulator *acc;
1826
1827 acc = (struct kvmhv_tb_accumulator *)
1828 ((unsigned long)vcpu + timings[i].offset);
1829 ok = false;
1830 for (loops = 0; loops < 1000; ++loops) {
1831 count = acc->seqcount;
1832 if (!(count & 1)) {
1833 smp_rmb();
1834 tb = *acc;
1835 smp_rmb();
1836 if (count == acc->seqcount) {
1837 ok = true;
1838 break;
1839 }
1840 }
1841 udelay(1);
1842 }
1843 if (!ok)
1844 snprintf(s, buf_end - s, "%s: stuck\n",
1845 timings[i].name);
1846 else
1847 snprintf(s, buf_end - s,
1848 "%s: %llu %llu %llu %llu\n",
1849 timings[i].name, count / 2,
1850 tb_to_ns(tb.tb_total),
1851 tb_to_ns(tb.tb_min),
1852 tb_to_ns(tb.tb_max));
1853 s += strlen(s);
1854 }
1855 p->buflen = s - p->buf;
1856 }
1857
1858 pos = *ppos;
1859 if (pos >= p->buflen)
1860 return 0;
1861 if (len > p->buflen - pos)
1862 len = p->buflen - pos;
1863 n = copy_to_user(buf, p->buf + pos, len);
1864 if (n) {
1865 if (n == len)
1866 return -EFAULT;
1867 len -= n;
1868 }
1869 *ppos = pos + len;
1870 return len;
1871}
1872
1873static ssize_t debugfs_timings_write(struct file *file, const char __user *buf,
1874 size_t len, loff_t *ppos)
1875{
1876 return -EACCES;
1877}
1878
1879static const struct file_operations debugfs_timings_ops = {
1880 .owner = THIS_MODULE,
1881 .open = debugfs_timings_open,
1882 .release = debugfs_timings_release,
1883 .read = debugfs_timings_read,
1884 .write = debugfs_timings_write,
1885 .llseek = generic_file_llseek,
1886};
1887
1888/* Create a debugfs directory for the vcpu */
1889static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
1890{
1891 char buf[16];
1892 struct kvm *kvm = vcpu->kvm;
1893
1894 snprintf(buf, sizeof(buf), "vcpu%u", id);
1895 if (IS_ERR_OR_NULL(kvm->arch.debugfs_dir))
1896 return;
1897 vcpu->arch.debugfs_dir = debugfs_create_dir(buf, kvm->arch.debugfs_dir);
1898 if (IS_ERR_OR_NULL(vcpu->arch.debugfs_dir))
1899 return;
1900 vcpu->arch.debugfs_timings =
1901 debugfs_create_file("timings", 0444, vcpu->arch.debugfs_dir,
1902 vcpu, &debugfs_timings_ops);
1903}
1904
1905#else /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
1906static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
1907{
1908}
1909#endif /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
1910
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301911static struct kvm_vcpu *kvmppc_core_vcpu_create_hv(struct kvm *kvm,
1912 unsigned int id)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001913{
1914 struct kvm_vcpu *vcpu;
Paul Mackerras3c313522017-02-06 13:24:41 +11001915 int err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001916 int core;
1917 struct kvmppc_vcore *vcore;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001918
Paul Mackerras371fefd2011-06-29 00:23:08 +00001919 err = -ENOMEM;
Sasha Levin6b75e6b2011-12-07 10:24:56 +02001920 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Paul Mackerrasde56a942011-06-29 00:21:34 +00001921 if (!vcpu)
1922 goto out;
1923
1924 err = kvm_vcpu_init(vcpu, kvm, id);
1925 if (err)
1926 goto free_vcpu;
1927
1928 vcpu->arch.shared = &vcpu->arch.shregs;
Alexander Graf5deb8e72014-04-24 13:46:24 +02001929#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
1930 /*
1931 * The shared struct is never shared on HV,
1932 * so we can always use host endianness
1933 */
1934#ifdef __BIG_ENDIAN__
1935 vcpu->arch.shared_big_endian = true;
1936#else
1937 vcpu->arch.shared_big_endian = false;
1938#endif
1939#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +00001940 vcpu->arch.mmcr[0] = MMCR0_FC;
1941 vcpu->arch.ctrl = CTRL_RUNLATCH;
1942 /* default to host PVR, since we can't spoof it */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301943 kvmppc_set_pvr_hv(vcpu, mfspr(SPRN_PVR));
Paul Mackerras2e25aa52012-02-19 17:46:32 +00001944 spin_lock_init(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00001945 spin_lock_init(&vcpu->arch.tbacct_lock);
1946 vcpu->arch.busy_preempt = TB_NIL;
Anton Blanchardd6829162014-01-08 21:25:30 +11001947 vcpu->arch.intr_msr = MSR_SF | MSR_ME;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001948
Paul Mackerras769377f2017-02-15 14:30:17 +11001949 /*
1950 * Set the default HFSCR for the guest from the host value.
1951 * This value is only used on POWER9.
1952 * On POWER9 DD1, TM doesn't work, so we make sure to
1953 * prevent the guest from using it.
Paul Mackerras57900692017-05-16 16:41:20 +10001954 * On POWER9, we want to virtualize the doorbell facility, so we
1955 * turn off the HFSCR bit, which causes those instructions to trap.
Paul Mackerras769377f2017-02-15 14:30:17 +11001956 */
1957 vcpu->arch.hfscr = mfspr(SPRN_HFSCR);
1958 if (!cpu_has_feature(CPU_FTR_TM))
1959 vcpu->arch.hfscr &= ~HFSCR_TM;
Paul Mackerras57900692017-05-16 16:41:20 +10001960 if (cpu_has_feature(CPU_FTR_ARCH_300))
1961 vcpu->arch.hfscr &= ~HFSCR_MSGP;
Paul Mackerras769377f2017-02-15 14:30:17 +11001962
Paul Mackerrasde56a942011-06-29 00:21:34 +00001963 kvmppc_mmu_book3s_hv_init(vcpu);
1964
Paul Mackerras8455d792012-10-15 01:17:42 +00001965 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001966
1967 init_waitqueue_head(&vcpu->arch.cpu_run);
1968
1969 mutex_lock(&kvm->lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11001970 vcore = NULL;
1971 err = -EINVAL;
1972 core = id / kvm->arch.smt_mode;
1973 if (core < KVM_MAX_VCORES) {
1974 vcore = kvm->arch.vcores[core];
1975 if (!vcore) {
1976 err = -ENOMEM;
1977 vcore = kvmppc_vcore_create(kvm, core);
1978 kvm->arch.vcores[core] = vcore;
1979 kvm->arch.online_vcores++;
1980 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00001981 }
1982 mutex_unlock(&kvm->lock);
1983
1984 if (!vcore)
1985 goto free_vcpu;
1986
1987 spin_lock(&vcore->lock);
1988 ++vcore->num_threads;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001989 spin_unlock(&vcore->lock);
1990 vcpu->arch.vcore = vcore;
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11001991 vcpu->arch.ptid = vcpu->vcpu_id - vcore->first_vcpuid;
Paul Mackerrasec257162015-06-24 21:18:03 +10001992 vcpu->arch.thread_cpu = -1;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11001993 vcpu->arch.prev_cpu = -1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001994
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001995 vcpu->arch.cpu_type = KVM_CPU_3S_64;
1996 kvmppc_sanity_check(vcpu);
1997
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11001998 debugfs_vcpu_init(vcpu, id);
1999
Paul Mackerrasde56a942011-06-29 00:21:34 +00002000 return vcpu;
2001
2002free_vcpu:
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002003 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002004out:
2005 return ERR_PTR(err);
2006}
2007
Paul Mackerras3c313522017-02-06 13:24:41 +11002008static int kvmhv_set_smt_mode(struct kvm *kvm, unsigned long smt_mode,
2009 unsigned long flags)
2010{
2011 int err;
Paul Mackerras57900692017-05-16 16:41:20 +10002012 int esmt = 0;
Paul Mackerras3c313522017-02-06 13:24:41 +11002013
2014 if (flags)
2015 return -EINVAL;
2016 if (smt_mode > MAX_SMT_THREADS || !is_power_of_2(smt_mode))
2017 return -EINVAL;
2018 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
2019 /*
2020 * On POWER8 (or POWER7), the threading mode is "strict",
2021 * so we pack smt_mode vcpus per vcore.
2022 */
2023 if (smt_mode > threads_per_subcore)
2024 return -EINVAL;
2025 } else {
2026 /*
2027 * On POWER9, the threading mode is "loose",
2028 * so each vcpu gets its own vcore.
2029 */
Paul Mackerras57900692017-05-16 16:41:20 +10002030 esmt = smt_mode;
Paul Mackerras3c313522017-02-06 13:24:41 +11002031 smt_mode = 1;
2032 }
2033 mutex_lock(&kvm->lock);
2034 err = -EBUSY;
2035 if (!kvm->arch.online_vcores) {
2036 kvm->arch.smt_mode = smt_mode;
Paul Mackerras57900692017-05-16 16:41:20 +10002037 kvm->arch.emul_smt_mode = esmt;
Paul Mackerras3c313522017-02-06 13:24:41 +11002038 err = 0;
2039 }
2040 mutex_unlock(&kvm->lock);
2041
2042 return err;
2043}
2044
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002045static void unpin_vpa(struct kvm *kvm, struct kvmppc_vpa *vpa)
2046{
2047 if (vpa->pinned_addr)
2048 kvmppc_unpin_guest_page(kvm, vpa->pinned_addr, vpa->gpa,
2049 vpa->dirty);
2050}
2051
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302052static void kvmppc_core_vcpu_free_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002053{
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002054 spin_lock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002055 unpin_vpa(vcpu->kvm, &vcpu->arch.dtl);
2056 unpin_vpa(vcpu->kvm, &vcpu->arch.slb_shadow);
2057 unpin_vpa(vcpu->kvm, &vcpu->arch.vpa);
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002058 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002059 kvm_vcpu_uninit(vcpu);
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002060 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002061}
2062
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302063static int kvmppc_core_check_requests_hv(struct kvm_vcpu *vcpu)
2064{
2065 /* Indicate we want to get back into the guest */
2066 return 1;
2067}
2068
Paul Mackerras19ccb762011-07-23 17:42:46 +10002069static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002070{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002071 unsigned long dec_nsec, now;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002072
Paul Mackerras19ccb762011-07-23 17:42:46 +10002073 now = get_tb();
2074 if (now > vcpu->arch.dec_expires) {
2075 /* decrementer has already gone negative */
2076 kvmppc_core_queue_dec(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -06002077 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002078 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002079 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10002080 dec_nsec = (vcpu->arch.dec_expires - now) * NSEC_PER_SEC
2081 / tb_ticks_per_sec;
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002082 hrtimer_start(&vcpu->arch.dec_timer, dec_nsec, HRTIMER_MODE_REL);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002083 vcpu->arch.timer_running = 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002084}
2085
Paul Mackerras19ccb762011-07-23 17:42:46 +10002086static void kvmppc_end_cede(struct kvm_vcpu *vcpu)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002087{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002088 vcpu->arch.ceded = 0;
2089 if (vcpu->arch.timer_running) {
2090 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2091 vcpu->arch.timer_running = 0;
2092 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002093}
2094
Paul Mackerras8b24e692017-06-26 15:45:51 +10002095extern int __kvmppc_vcore_entry(void);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002096
2097static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
2098 struct kvm_vcpu *vcpu)
2099{
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002100 u64 now;
2101
Paul Mackerras371fefd2011-06-29 00:23:08 +00002102 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
2103 return;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002104 spin_lock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002105 now = mftb();
2106 vcpu->arch.busy_stolen += vcore_stolen_time(vc, now) -
2107 vcpu->arch.stolen_logged;
2108 vcpu->arch.busy_preempt = now;
2109 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002110 spin_unlock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002111 --vc->n_runnable;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002112 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], NULL);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002113}
2114
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002115static int kvmppc_grab_hwthread(int cpu)
2116{
2117 struct paca_struct *tpaca;
Paul Mackerrasb754c732014-09-02 16:14:42 +10002118 long timeout = 10000;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002119
2120 tpaca = &paca[cpu];
2121
2122 /* Ensure the thread won't go into the kernel if it wakes */
Paul Mackerras7b444c62012-10-15 01:16:14 +00002123 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002124 tpaca->kvm_hstate.kvm_vcore = NULL;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002125 tpaca->kvm_hstate.napping = 0;
2126 smp_wmb();
2127 tpaca->kvm_hstate.hwthread_req = 1;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002128
2129 /*
2130 * If the thread is already executing in the kernel (e.g. handling
2131 * a stray interrupt), wait for it to get back to nap mode.
2132 * The smp_mb() is to ensure that our setting of hwthread_req
2133 * is visible before we look at hwthread_state, so if this
2134 * races with the code at system_reset_pSeries and the thread
2135 * misses our setting of hwthread_req, we are sure to see its
2136 * setting of hwthread_state, and vice versa.
2137 */
2138 smp_mb();
2139 while (tpaca->kvm_hstate.hwthread_state == KVM_HWTHREAD_IN_KERNEL) {
2140 if (--timeout <= 0) {
2141 pr_err("KVM: couldn't grab cpu %d\n", cpu);
2142 return -EBUSY;
2143 }
2144 udelay(1);
2145 }
2146 return 0;
2147}
2148
2149static void kvmppc_release_hwthread(int cpu)
2150{
2151 struct paca_struct *tpaca;
2152
2153 tpaca = &paca[cpu];
2154 tpaca->kvm_hstate.hwthread_req = 0;
2155 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002156 tpaca->kvm_hstate.kvm_vcore = NULL;
2157 tpaca->kvm_hstate.kvm_split_mode = NULL;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002158}
2159
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002160static void radix_flush_cpu(struct kvm *kvm, int cpu, struct kvm_vcpu *vcpu)
2161{
2162 int i;
2163
2164 cpu = cpu_first_thread_sibling(cpu);
2165 cpumask_set_cpu(cpu, &kvm->arch.need_tlb_flush);
2166 /*
2167 * Make sure setting of bit in need_tlb_flush precedes
2168 * testing of cpu_in_guest bits. The matching barrier on
2169 * the other side is the first smp_mb() in kvmppc_run_core().
2170 */
2171 smp_mb();
2172 for (i = 0; i < threads_per_core; ++i)
2173 if (cpumask_test_cpu(cpu + i, &kvm->arch.cpu_in_guest))
2174 smp_call_function_single(cpu + i, do_nothing, NULL, 1);
2175}
2176
Paul Mackerras8b24e692017-06-26 15:45:51 +10002177static void kvmppc_prepare_radix_vcpu(struct kvm_vcpu *vcpu, int pcpu)
2178{
2179 struct kvm *kvm = vcpu->kvm;
2180
2181 /*
2182 * With radix, the guest can do TLB invalidations itself,
2183 * and it could choose to use the local form (tlbiel) if
2184 * it is invalidating a translation that has only ever been
2185 * used on one vcpu. However, that doesn't mean it has
2186 * only ever been used on one physical cpu, since vcpus
2187 * can move around between pcpus. To cope with this, when
2188 * a vcpu moves from one pcpu to another, we need to tell
2189 * any vcpus running on the same core as this vcpu previously
2190 * ran to flush the TLB. The TLB is shared between threads,
2191 * so we use a single bit in .need_tlb_flush for all 4 threads.
2192 */
2193 if (vcpu->arch.prev_cpu != pcpu) {
2194 if (vcpu->arch.prev_cpu >= 0 &&
2195 cpu_first_thread_sibling(vcpu->arch.prev_cpu) !=
2196 cpu_first_thread_sibling(pcpu))
2197 radix_flush_cpu(kvm, vcpu->arch.prev_cpu, vcpu);
2198 vcpu->arch.prev_cpu = pcpu;
2199 }
2200}
2201
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002202static void kvmppc_start_thread(struct kvm_vcpu *vcpu, struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002203{
2204 int cpu;
2205 struct paca_struct *tpaca;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002206 struct kvm *kvm = vc->kvm;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002207
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002208 cpu = vc->pcpu;
2209 if (vcpu) {
2210 if (vcpu->arch.timer_running) {
2211 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2212 vcpu->arch.timer_running = 0;
2213 }
2214 cpu += vcpu->arch.ptid;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002215 vcpu->cpu = vc->pcpu;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002216 vcpu->arch.thread_cpu = cpu;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002217 cpumask_set_cpu(cpu, &kvm->arch.cpu_in_guest);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002218 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002219 tpaca = &paca[cpu];
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002220 tpaca->kvm_hstate.kvm_vcpu = vcpu;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002221 tpaca->kvm_hstate.ptid = cpu - vc->pcpu;
Paul Mackerrasec257162015-06-24 21:18:03 +10002222 /* Order stores to hstate.kvm_vcpu etc. before store to kvm_vcore */
Paul Mackerras19ccb762011-07-23 17:42:46 +10002223 smp_wmb();
Paul Mackerras898b25b2017-06-22 15:08:42 +10002224 tpaca->kvm_hstate.kvm_vcore = vc;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002225 if (cpu != smp_processor_id())
Paul Mackerras66feed62015-03-28 14:21:12 +11002226 kvmppc_ipi_thread(cpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002227}
2228
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002229static void kvmppc_wait_for_nap(void)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002230{
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002231 int cpu = smp_processor_id();
2232 int i, loops;
Paul Mackerras45c940b2016-11-18 17:43:30 +11002233 int n_threads = threads_per_vcore();
Paul Mackerras371fefd2011-06-29 00:23:08 +00002234
Paul Mackerras45c940b2016-11-18 17:43:30 +11002235 if (n_threads <= 1)
2236 return;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002237 for (loops = 0; loops < 1000000; ++loops) {
2238 /*
2239 * Check if all threads are finished.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002240 * We set the vcore pointer when starting a thread
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002241 * and the thread clears it when finished, so we look
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002242 * for any threads that still have a non-NULL vcore ptr.
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002243 */
Paul Mackerras45c940b2016-11-18 17:43:30 +11002244 for (i = 1; i < n_threads; ++i)
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002245 if (paca[cpu + i].kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002246 break;
Paul Mackerras45c940b2016-11-18 17:43:30 +11002247 if (i == n_threads) {
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002248 HMT_medium();
2249 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002250 }
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002251 HMT_low();
Paul Mackerras371fefd2011-06-29 00:23:08 +00002252 }
2253 HMT_medium();
Paul Mackerras45c940b2016-11-18 17:43:30 +11002254 for (i = 1; i < n_threads; ++i)
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002255 if (paca[cpu + i].kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002256 pr_err("KVM: CPU %d seems to be stuck\n", cpu + i);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002257}
2258
2259/*
2260 * Check that we are on thread 0 and that any other threads in
Paul Mackerras7b444c62012-10-15 01:16:14 +00002261 * this core are off-line. Then grab the threads so they can't
2262 * enter the kernel.
Paul Mackerras371fefd2011-06-29 00:23:08 +00002263 */
2264static int on_primary_thread(void)
2265{
2266 int cpu = smp_processor_id();
Michael Ellerman3102f782014-05-23 18:15:29 +10002267 int thr;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002268
Michael Ellerman3102f782014-05-23 18:15:29 +10002269 /* Are we on a primary subcore? */
2270 if (cpu_thread_in_subcore(cpu))
Paul Mackerras371fefd2011-06-29 00:23:08 +00002271 return 0;
Michael Ellerman3102f782014-05-23 18:15:29 +10002272
2273 thr = 0;
2274 while (++thr < threads_per_subcore)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002275 if (cpu_online(cpu + thr))
2276 return 0;
Paul Mackerras7b444c62012-10-15 01:16:14 +00002277
2278 /* Grab all hw threads so they can't go into the kernel */
Michael Ellerman3102f782014-05-23 18:15:29 +10002279 for (thr = 1; thr < threads_per_subcore; ++thr) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00002280 if (kvmppc_grab_hwthread(cpu + thr)) {
2281 /* Couldn't grab one; let the others go */
2282 do {
2283 kvmppc_release_hwthread(cpu + thr);
2284 } while (--thr > 0);
2285 return 0;
2286 }
2287 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002288 return 1;
2289}
2290
Paul Mackerrasec257162015-06-24 21:18:03 +10002291/*
2292 * A list of virtual cores for each physical CPU.
2293 * These are vcores that could run but their runner VCPU tasks are
2294 * (or may be) preempted.
2295 */
2296struct preempted_vcore_list {
2297 struct list_head list;
2298 spinlock_t lock;
2299};
2300
2301static DEFINE_PER_CPU(struct preempted_vcore_list, preempted_vcores);
2302
2303static void init_vcore_lists(void)
2304{
2305 int cpu;
2306
2307 for_each_possible_cpu(cpu) {
2308 struct preempted_vcore_list *lp = &per_cpu(preempted_vcores, cpu);
2309 spin_lock_init(&lp->lock);
2310 INIT_LIST_HEAD(&lp->list);
2311 }
2312}
2313
2314static void kvmppc_vcore_preempt(struct kvmppc_vcore *vc)
2315{
2316 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2317
2318 vc->vcore_state = VCORE_PREEMPT;
2319 vc->pcpu = smp_processor_id();
Paul Mackerras45c940b2016-11-18 17:43:30 +11002320 if (vc->num_threads < threads_per_vcore()) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002321 spin_lock(&lp->lock);
2322 list_add_tail(&vc->preempt_list, &lp->list);
2323 spin_unlock(&lp->lock);
2324 }
2325
2326 /* Start accumulating stolen time */
2327 kvmppc_core_start_stolen(vc);
2328}
2329
2330static void kvmppc_vcore_end_preempt(struct kvmppc_vcore *vc)
2331{
Paul Mackerras402813f2015-07-16 17:11:13 +10002332 struct preempted_vcore_list *lp;
Paul Mackerrasec257162015-06-24 21:18:03 +10002333
2334 kvmppc_core_end_stolen(vc);
2335 if (!list_empty(&vc->preempt_list)) {
Paul Mackerras402813f2015-07-16 17:11:13 +10002336 lp = &per_cpu(preempted_vcores, vc->pcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002337 spin_lock(&lp->lock);
2338 list_del_init(&vc->preempt_list);
2339 spin_unlock(&lp->lock);
2340 }
2341 vc->vcore_state = VCORE_INACTIVE;
2342}
2343
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002344/*
2345 * This stores information about the virtual cores currently
2346 * assigned to a physical core.
2347 */
Paul Mackerrasec257162015-06-24 21:18:03 +10002348struct core_info {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002349 int n_subcores;
2350 int max_subcore_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002351 int total_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002352 int subcore_threads[MAX_SUBCORES];
Paul Mackerras898b25b2017-06-22 15:08:42 +10002353 struct kvmppc_vcore *vc[MAX_SUBCORES];
Paul Mackerrasec257162015-06-24 21:18:03 +10002354};
2355
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002356/*
2357 * This mapping means subcores 0 and 1 can use threads 0-3 and 4-7
2358 * respectively in 2-way micro-threading (split-core) mode.
2359 */
2360static int subcore_thread_map[MAX_SUBCORES] = { 0, 4, 2, 6 };
2361
Paul Mackerrasec257162015-06-24 21:18:03 +10002362static void init_core_info(struct core_info *cip, struct kvmppc_vcore *vc)
2363{
2364 memset(cip, 0, sizeof(*cip));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002365 cip->n_subcores = 1;
2366 cip->max_subcore_threads = vc->num_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002367 cip->total_threads = vc->num_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002368 cip->subcore_threads[0] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002369 cip->vc[0] = vc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002370}
2371
2372static bool subcore_config_ok(int n_subcores, int n_threads)
2373{
2374 /* Can only dynamically split if unsplit to begin with */
2375 if (n_subcores > 1 && threads_per_subcore < MAX_SMT_THREADS)
2376 return false;
2377 if (n_subcores > MAX_SUBCORES)
2378 return false;
2379 if (n_subcores > 1) {
2380 if (!(dynamic_mt_modes & 2))
2381 n_subcores = 4;
2382 if (n_subcores > 2 && !(dynamic_mt_modes & 4))
2383 return false;
2384 }
2385
2386 return n_subcores * roundup_pow_of_two(n_threads) <= MAX_SMT_THREADS;
Paul Mackerrasec257162015-06-24 21:18:03 +10002387}
2388
Paul Mackerras898b25b2017-06-22 15:08:42 +10002389static void init_vcore_to_run(struct kvmppc_vcore *vc)
Paul Mackerrasec257162015-06-24 21:18:03 +10002390{
Paul Mackerrasec257162015-06-24 21:18:03 +10002391 vc->entry_exit_map = 0;
2392 vc->in_guest = 0;
2393 vc->napping_threads = 0;
2394 vc->conferring_threads = 0;
2395}
2396
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002397static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip)
2398{
2399 int n_threads = vc->num_threads;
2400 int sub;
2401
2402 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
2403 return false;
2404
2405 if (n_threads < cip->max_subcore_threads)
2406 n_threads = cip->max_subcore_threads;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002407 if (!subcore_config_ok(cip->n_subcores + 1, n_threads))
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002408 return false;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002409 cip->max_subcore_threads = n_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002410
2411 sub = cip->n_subcores;
2412 ++cip->n_subcores;
2413 cip->total_threads += vc->num_threads;
2414 cip->subcore_threads[sub] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002415 cip->vc[sub] = vc;
2416 init_vcore_to_run(vc);
2417 list_del_init(&vc->preempt_list);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002418
2419 return true;
2420}
2421
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002422/*
2423 * Work out whether it is possible to piggyback the execution of
2424 * vcore *pvc onto the execution of the other vcores described in *cip.
2425 */
2426static bool can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip,
2427 int target_threads)
2428{
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002429 if (cip->total_threads + pvc->num_threads > target_threads)
2430 return false;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002431
Paul Mackerrasb0090312016-09-15 16:27:41 +10002432 return can_dynamic_split(pvc, cip);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002433}
2434
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002435static void prepare_threads(struct kvmppc_vcore *vc)
2436{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002437 int i;
2438 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002439
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002440 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002441 if (signal_pending(vcpu->arch.run_task))
2442 vcpu->arch.ret = -EINTR;
2443 else if (vcpu->arch.vpa.update_pending ||
2444 vcpu->arch.slb_shadow.update_pending ||
2445 vcpu->arch.dtl.update_pending)
2446 vcpu->arch.ret = RESUME_GUEST;
2447 else
2448 continue;
2449 kvmppc_remove_runnable(vc, vcpu);
2450 wake_up(&vcpu->arch.cpu_run);
2451 }
2452}
2453
Paul Mackerrasec257162015-06-24 21:18:03 +10002454static void collect_piggybacks(struct core_info *cip, int target_threads)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002455{
Paul Mackerrasec257162015-06-24 21:18:03 +10002456 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2457 struct kvmppc_vcore *pvc, *vcnext;
2458
2459 spin_lock(&lp->lock);
2460 list_for_each_entry_safe(pvc, vcnext, &lp->list, preempt_list) {
2461 if (!spin_trylock(&pvc->lock))
2462 continue;
2463 prepare_threads(pvc);
2464 if (!pvc->n_runnable) {
2465 list_del_init(&pvc->preempt_list);
2466 if (pvc->runner == NULL) {
2467 pvc->vcore_state = VCORE_INACTIVE;
2468 kvmppc_core_end_stolen(pvc);
2469 }
2470 spin_unlock(&pvc->lock);
2471 continue;
2472 }
2473 if (!can_piggyback(pvc, cip, target_threads)) {
2474 spin_unlock(&pvc->lock);
2475 continue;
2476 }
2477 kvmppc_core_end_stolen(pvc);
2478 pvc->vcore_state = VCORE_PIGGYBACK;
2479 if (cip->total_threads >= target_threads)
2480 break;
2481 }
2482 spin_unlock(&lp->lock);
2483}
2484
Paul Mackerras8b24e692017-06-26 15:45:51 +10002485static bool recheck_signals(struct core_info *cip)
2486{
2487 int sub, i;
2488 struct kvm_vcpu *vcpu;
2489
2490 for (sub = 0; sub < cip->n_subcores; ++sub)
2491 for_each_runnable_thread(i, vcpu, cip->vc[sub])
2492 if (signal_pending(vcpu->arch.run_task))
2493 return true;
2494 return false;
2495}
2496
Paul Mackerrasec257162015-06-24 21:18:03 +10002497static void post_guest_process(struct kvmppc_vcore *vc, bool is_master)
2498{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002499 int still_running = 0, i;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002500 u64 now;
2501 long ret;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002502 struct kvm_vcpu *vcpu;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002503
Paul Mackerrasec257162015-06-24 21:18:03 +10002504 spin_lock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002505 now = get_tb();
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002506 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002507 /* cancel pending dec exception if dec is positive */
2508 if (now < vcpu->arch.dec_expires &&
2509 kvmppc_core_pending_dec(vcpu))
2510 kvmppc_core_dequeue_dec(vcpu);
2511
2512 trace_kvm_guest_exit(vcpu);
2513
2514 ret = RESUME_GUEST;
2515 if (vcpu->arch.trap)
2516 ret = kvmppc_handle_exit_hv(vcpu->arch.kvm_run, vcpu,
2517 vcpu->arch.run_task);
2518
2519 vcpu->arch.ret = ret;
2520 vcpu->arch.trap = 0;
2521
Paul Mackerrasec257162015-06-24 21:18:03 +10002522 if (is_kvmppc_resume_guest(vcpu->arch.ret)) {
2523 if (vcpu->arch.pending_exceptions)
2524 kvmppc_core_prepare_to_enter(vcpu);
2525 if (vcpu->arch.ceded)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002526 kvmppc_set_timer(vcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002527 else
2528 ++still_running;
2529 } else {
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002530 kvmppc_remove_runnable(vc, vcpu);
2531 wake_up(&vcpu->arch.cpu_run);
2532 }
2533 }
Paul Mackerrasec257162015-06-24 21:18:03 +10002534 if (!is_master) {
Paul Mackerras563a1e92015-07-16 17:11:14 +10002535 if (still_running > 0) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002536 kvmppc_vcore_preempt(vc);
Paul Mackerras563a1e92015-07-16 17:11:14 +10002537 } else if (vc->runner) {
2538 vc->vcore_state = VCORE_PREEMPT;
2539 kvmppc_core_start_stolen(vc);
2540 } else {
2541 vc->vcore_state = VCORE_INACTIVE;
2542 }
Paul Mackerrasec257162015-06-24 21:18:03 +10002543 if (vc->n_runnable > 0 && vc->runner == NULL) {
2544 /* make sure there's a candidate runner awake */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002545 i = -1;
2546 vcpu = next_runnable_thread(vc, &i);
Paul Mackerrasec257162015-06-24 21:18:03 +10002547 wake_up(&vcpu->arch.cpu_run);
2548 }
2549 }
2550 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002551}
2552
Paul Mackerras371fefd2011-06-29 00:23:08 +00002553/*
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002554 * Clear core from the list of active host cores as we are about to
2555 * enter the guest. Only do this if it is the primary thread of the
2556 * core (not if a subcore) that is entering the guest.
2557 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002558static inline int kvmppc_clear_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002559{
2560 int core;
2561
2562 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002563 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002564 /*
2565 * Memory barrier can be omitted here as we will do a smp_wmb()
2566 * later in kvmppc_start_thread and we need ensure that state is
2567 * visible to other CPUs only after we enter guest.
2568 */
2569 core = cpu >> threads_shift;
2570 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 0;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002571 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002572}
2573
2574/*
2575 * Advertise this core as an active host core since we exited the guest
2576 * Only need to do this if it is the primary thread of the core that is
2577 * exiting.
2578 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002579static inline int kvmppc_set_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002580{
2581 int core;
2582
2583 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002584 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002585
2586 /*
2587 * Memory barrier can be omitted here because we do a spin_unlock
2588 * immediately after this which provides the memory barrier.
2589 */
2590 core = cpu >> threads_shift;
2591 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 1;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002592 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002593}
2594
Paul Mackerras8b24e692017-06-26 15:45:51 +10002595static void set_irq_happened(int trap)
2596{
2597 switch (trap) {
2598 case BOOK3S_INTERRUPT_EXTERNAL:
2599 local_paca->irq_happened |= PACA_IRQ_EE;
2600 break;
2601 case BOOK3S_INTERRUPT_H_DOORBELL:
2602 local_paca->irq_happened |= PACA_IRQ_DBELL;
2603 break;
2604 case BOOK3S_INTERRUPT_HMI:
2605 local_paca->irq_happened |= PACA_IRQ_HMI;
2606 break;
2607 }
2608}
2609
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002610/*
Paul Mackerras371fefd2011-06-29 00:23:08 +00002611 * Run a set of guest threads on a physical core.
2612 * Called with vc->lock held.
2613 */
Paul Mackerras66feed62015-03-28 14:21:12 +11002614static noinline void kvmppc_run_core(struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002615{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002616 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002617 int i;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00002618 int srcu_idx;
Paul Mackerrasec257162015-06-24 21:18:03 +10002619 struct core_info core_info;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002620 struct kvmppc_vcore *pvc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002621 struct kvm_split_mode split_info, *sip;
2622 int split, subcore_size, active;
2623 int sub;
2624 bool thr0_done;
2625 unsigned long cmd_bit, stat_bit;
Paul Mackerrasec257162015-06-24 21:18:03 +10002626 int pcpu, thr;
2627 int target_threads;
Paul Mackerras45c940b2016-11-18 17:43:30 +11002628 int controlled_threads;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002629 int trap;
Paul Mackerras081f3232012-06-01 20:20:24 +10002630
2631 /*
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002632 * Remove from the list any threads that have a signal pending
2633 * or need a VPA update done
2634 */
2635 prepare_threads(vc);
2636
2637 /* if the runner is no longer runnable, let the caller pick a new one */
2638 if (vc->runner->arch.state != KVMPPC_VCPU_RUNNABLE)
2639 return;
2640
2641 /*
2642 * Initialize *vc.
Paul Mackerras081f3232012-06-01 20:20:24 +10002643 */
Paul Mackerras898b25b2017-06-22 15:08:42 +10002644 init_vcore_to_run(vc);
Paul Mackerras2711e242014-12-04 16:43:28 +11002645 vc->preempt_tb = TB_NIL;
Paul Mackerras081f3232012-06-01 20:20:24 +10002646
2647 /*
Paul Mackerras45c940b2016-11-18 17:43:30 +11002648 * Number of threads that we will be controlling: the same as
2649 * the number of threads per subcore, except on POWER9,
2650 * where it's 1 because the threads are (mostly) independent.
2651 */
2652 controlled_threads = threads_per_vcore();
2653
2654 /*
Michael Ellerman3102f782014-05-23 18:15:29 +10002655 * Make sure we are running on primary threads, and that secondary
2656 * threads are offline. Also check if the number of threads in this
2657 * guest are greater than the current system threads per guest.
Paul Mackerras7b444c62012-10-15 01:16:14 +00002658 */
Paul Mackerras45c940b2016-11-18 17:43:30 +11002659 if ((controlled_threads > 1) &&
Michael Ellerman3102f782014-05-23 18:15:29 +10002660 ((vc->num_threads > threads_per_subcore) || !on_primary_thread())) {
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002661 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00002662 vcpu->arch.ret = -EBUSY;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002663 kvmppc_remove_runnable(vc, vcpu);
2664 wake_up(&vcpu->arch.cpu_run);
2665 }
Paul Mackerras7b444c62012-10-15 01:16:14 +00002666 goto out;
2667 }
2668
Paul Mackerrasec257162015-06-24 21:18:03 +10002669 /*
2670 * See if we could run any other vcores on the physical core
2671 * along with this one.
2672 */
2673 init_core_info(&core_info, vc);
2674 pcpu = smp_processor_id();
Paul Mackerras45c940b2016-11-18 17:43:30 +11002675 target_threads = controlled_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002676 if (target_smt_mode && target_smt_mode < target_threads)
2677 target_threads = target_smt_mode;
2678 if (vc->num_threads < target_threads)
2679 collect_piggybacks(&core_info, target_threads);
Michael Ellerman3102f782014-05-23 18:15:29 +10002680
Paul Mackerras8b24e692017-06-26 15:45:51 +10002681 /*
2682 * On radix, arrange for TLB flushing if necessary.
2683 * This has to be done before disabling interrupts since
2684 * it uses smp_call_function().
2685 */
2686 pcpu = smp_processor_id();
2687 if (kvm_is_radix(vc->kvm)) {
2688 for (sub = 0; sub < core_info.n_subcores; ++sub)
2689 for_each_runnable_thread(i, vcpu, core_info.vc[sub])
2690 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
2691 }
2692
2693 /*
2694 * Hard-disable interrupts, and check resched flag and signals.
2695 * If we need to reschedule or deliver a signal, clean up
2696 * and return without going into the guest(s).
2697 */
2698 local_irq_disable();
2699 hard_irq_disable();
2700 if (lazy_irq_pending() || need_resched() ||
2701 recheck_signals(&core_info)) {
2702 local_irq_enable();
2703 vc->vcore_state = VCORE_INACTIVE;
2704 /* Unlock all except the primary vcore */
2705 for (sub = 1; sub < core_info.n_subcores; ++sub) {
2706 pvc = core_info.vc[sub];
2707 /* Put back on to the preempted vcores list */
2708 kvmppc_vcore_preempt(pvc);
2709 spin_unlock(&pvc->lock);
2710 }
2711 for (i = 0; i < controlled_threads; ++i)
2712 kvmppc_release_hwthread(pcpu + i);
2713 return;
2714 }
2715
2716 kvmppc_clear_host_core(pcpu);
2717
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002718 /* Decide on micro-threading (split-core) mode */
2719 subcore_size = threads_per_subcore;
2720 cmd_bit = stat_bit = 0;
2721 split = core_info.n_subcores;
2722 sip = NULL;
2723 if (split > 1) {
2724 /* threads_per_subcore must be MAX_SMT_THREADS (8) here */
2725 if (split == 2 && (dynamic_mt_modes & 2)) {
2726 cmd_bit = HID0_POWER8_1TO2LPAR;
2727 stat_bit = HID0_POWER8_2LPARMODE;
2728 } else {
2729 split = 4;
2730 cmd_bit = HID0_POWER8_1TO4LPAR;
2731 stat_bit = HID0_POWER8_4LPARMODE;
Paul Mackerrasec257162015-06-24 21:18:03 +10002732 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002733 subcore_size = MAX_SMT_THREADS / split;
2734 sip = &split_info;
2735 memset(&split_info, 0, sizeof(split_info));
2736 split_info.rpr = mfspr(SPRN_RPR);
2737 split_info.pmmar = mfspr(SPRN_PMMAR);
2738 split_info.ldbar = mfspr(SPRN_LDBAR);
2739 split_info.subcore_size = subcore_size;
2740 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10002741 split_info.vc[sub] = core_info.vc[sub];
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002742 /* order writes to split_info before kvm_split_mode pointer */
2743 smp_wmb();
2744 }
Paul Mackerras45c940b2016-11-18 17:43:30 +11002745 for (thr = 0; thr < controlled_threads; ++thr)
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002746 paca[pcpu + thr].kvm_hstate.kvm_split_mode = sip;
2747
2748 /* Initiate micro-threading (split-core) if required */
2749 if (cmd_bit) {
2750 unsigned long hid0 = mfspr(SPRN_HID0);
2751
2752 hid0 |= cmd_bit | HID0_POWER8_DYNLPARDIS;
2753 mb();
2754 mtspr(SPRN_HID0, hid0);
2755 isync();
2756 for (;;) {
2757 hid0 = mfspr(SPRN_HID0);
2758 if (hid0 & stat_bit)
2759 break;
2760 cpu_relax();
2761 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002762 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002763
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002764 /* Start all the threads */
2765 active = 0;
2766 for (sub = 0; sub < core_info.n_subcores; ++sub) {
2767 thr = subcore_thread_map[sub];
2768 thr0_done = false;
2769 active |= 1 << thr;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002770 pvc = core_info.vc[sub];
2771 pvc->pcpu = pcpu + thr;
2772 for_each_runnable_thread(i, vcpu, pvc) {
2773 kvmppc_start_thread(vcpu, pvc);
2774 kvmppc_create_dtl_entry(vcpu, pvc);
2775 trace_kvm_guest_enter(vcpu);
2776 if (!vcpu->arch.ptid)
2777 thr0_done = true;
2778 active |= 1 << (thr + vcpu->arch.ptid);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002779 }
Paul Mackerras898b25b2017-06-22 15:08:42 +10002780 /*
2781 * We need to start the first thread of each subcore
2782 * even if it doesn't have a vcpu.
2783 */
2784 if (!thr0_done)
2785 kvmppc_start_thread(NULL, pvc);
2786 thr += pvc->num_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002787 }
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05302788
2789 /*
2790 * Ensure that split_info.do_nap is set after setting
2791 * the vcore pointer in the PACA of the secondaries.
2792 */
2793 smp_mb();
2794 if (cmd_bit)
2795 split_info.do_nap = 1; /* ask secondaries to nap when done */
2796
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002797 /*
2798 * When doing micro-threading, poke the inactive threads as well.
2799 * This gets them to the nap instruction after kvm_do_nap,
2800 * which reduces the time taken to unsplit later.
2801 */
2802 if (split > 1)
2803 for (thr = 1; thr < threads_per_subcore; ++thr)
2804 if (!(active & (1 << thr)))
2805 kvmppc_ipi_thread(pcpu + thr);
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11002806
Paul Mackerras2f12f032012-10-15 01:17:17 +00002807 vc->vcore_state = VCORE_RUNNING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002808 preempt_disable();
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06002809
2810 trace_kvmppc_run_core(vc, 0);
2811
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002812 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10002813 spin_unlock(&core_info.vc[sub]->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002814
Paul Mackerras8b24e692017-06-26 15:45:51 +10002815 /*
2816 * Interrupts will be enabled once we get into the guest,
2817 * so tell lockdep that we're about to enable interrupts.
2818 */
2819 trace_hardirqs_on();
Paul Mackerrasde56a942011-06-29 00:21:34 +00002820
Paolo Bonzini6edaa532016-06-15 15:18:26 +02002821 guest_enter();
Paul Mackerras2c9097e2012-09-11 13:27:01 +00002822
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11002823 srcu_idx = srcu_read_lock(&vc->kvm->srcu);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00002824
Paul Mackerras8b24e692017-06-26 15:45:51 +10002825 trap = __kvmppc_vcore_entry();
Paul Mackerras19ccb762011-07-23 17:42:46 +10002826
Paul Mackerrasec257162015-06-24 21:18:03 +10002827 srcu_read_unlock(&vc->kvm->srcu, srcu_idx);
2828
Paul Mackerras8b24e692017-06-26 15:45:51 +10002829 guest_exit();
2830
2831 trace_hardirqs_off();
2832 set_irq_happened(trap);
2833
Paul Mackerrasec257162015-06-24 21:18:03 +10002834 spin_lock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002835 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
Paul Mackerras19ccb762011-07-23 17:42:46 +10002836 vc->vcore_state = VCORE_EXITING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002837
Paul Mackerras371fefd2011-06-29 00:23:08 +00002838 /* wait for secondary threads to finish writing their state to memory */
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11002839 kvmppc_wait_for_nap();
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002840
2841 /* Return to whole-core mode if we split the core earlier */
2842 if (split > 1) {
2843 unsigned long hid0 = mfspr(SPRN_HID0);
2844 unsigned long loops = 0;
2845
2846 hid0 &= ~HID0_POWER8_DYNLPARDIS;
2847 stat_bit = HID0_POWER8_2LPARMODE | HID0_POWER8_4LPARMODE;
2848 mb();
2849 mtspr(SPRN_HID0, hid0);
2850 isync();
2851 for (;;) {
2852 hid0 = mfspr(SPRN_HID0);
2853 if (!(hid0 & stat_bit))
2854 break;
2855 cpu_relax();
2856 ++loops;
2857 }
2858 split_info.do_nap = 0;
2859 }
2860
Paul Mackerras8b24e692017-06-26 15:45:51 +10002861 kvmppc_set_host_core(pcpu);
2862
2863 local_irq_enable();
2864
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002865 /* Let secondaries go back to the offline loop */
Paul Mackerras45c940b2016-11-18 17:43:30 +11002866 for (i = 0; i < controlled_threads; ++i) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002867 kvmppc_release_hwthread(pcpu + i);
2868 if (sip && sip->napped[i])
2869 kvmppc_ipi_thread(pcpu + i);
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002870 cpumask_clear_cpu(pcpu + i, &vc->kvm->arch.cpu_in_guest);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002871 }
2872
Paul Mackerras371fefd2011-06-29 00:23:08 +00002873 spin_unlock(&vc->lock);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00002874
Paul Mackerras371fefd2011-06-29 00:23:08 +00002875 /* make sure updates to secondary vcpu structs are visible now */
2876 smp_mb();
Paul Mackerrasde56a942011-06-29 00:21:34 +00002877
Paul Mackerras898b25b2017-06-22 15:08:42 +10002878 for (sub = 0; sub < core_info.n_subcores; ++sub) {
2879 pvc = core_info.vc[sub];
2880 post_guest_process(pvc, pvc == vc);
2881 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00002882
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00002883 spin_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10002884 preempt_enable();
Paul Mackerrasde56a942011-06-29 00:21:34 +00002885
Paul Mackerrasde56a942011-06-29 00:21:34 +00002886 out:
Paul Mackerras19ccb762011-07-23 17:42:46 +10002887 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06002888 trace_kvmppc_run_core(vc, 1);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002889}
2890
Paul Mackerras19ccb762011-07-23 17:42:46 +10002891/*
2892 * Wait for some other vcpu thread to execute us, and
2893 * wake us up when we need to handle something in the host.
2894 */
Paul Mackerrasec257162015-06-24 21:18:03 +10002895static void kvmppc_wait_for_exec(struct kvmppc_vcore *vc,
2896 struct kvm_vcpu *vcpu, int wait_state)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002897{
Paul Mackerras371fefd2011-06-29 00:23:08 +00002898 DEFINE_WAIT(wait);
2899
Paul Mackerras19ccb762011-07-23 17:42:46 +10002900 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
Paul Mackerrasec257162015-06-24 21:18:03 +10002901 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
2902 spin_unlock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002903 schedule();
Paul Mackerrasec257162015-06-24 21:18:03 +10002904 spin_lock(&vc->lock);
2905 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10002906 finish_wait(&vcpu->arch.cpu_run, &wait);
2907}
Paul Mackerras371fefd2011-06-29 00:23:08 +00002908
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10002909static void grow_halt_poll_ns(struct kvmppc_vcore *vc)
2910{
2911 /* 10us base */
2912 if (vc->halt_poll_ns == 0 && halt_poll_ns_grow)
2913 vc->halt_poll_ns = 10000;
2914 else
2915 vc->halt_poll_ns *= halt_poll_ns_grow;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10002916}
2917
2918static void shrink_halt_poll_ns(struct kvmppc_vcore *vc)
2919{
2920 if (halt_poll_ns_shrink == 0)
2921 vc->halt_poll_ns = 0;
2922 else
2923 vc->halt_poll_ns /= halt_poll_ns_shrink;
2924}
2925
Paul Mackerrasee3308a2017-06-20 15:46:12 +10002926#ifdef CONFIG_KVM_XICS
2927static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
2928{
2929 if (!xive_enabled())
2930 return false;
2931 return vcpu->arch.xive_saved_state.pipr <
2932 vcpu->arch.xive_saved_state.cppr;
2933}
2934#else
2935static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
2936{
2937 return false;
2938}
2939#endif /* CONFIG_KVM_XICS */
2940
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10002941static bool kvmppc_vcpu_woken(struct kvm_vcpu *vcpu)
2942{
2943 if (vcpu->arch.pending_exceptions || vcpu->arch.prodded ||
Paul Mackerrasee3308a2017-06-20 15:46:12 +10002944 kvmppc_doorbell_pending(vcpu) || xive_interrupt_pending(vcpu))
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10002945 return true;
2946
2947 return false;
2948}
2949
Suraj Jitindar Singh908a0932016-10-14 11:53:23 +11002950/*
2951 * Check to see if any of the runnable vcpus on the vcore have pending
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10002952 * exceptions or are no longer ceded
2953 */
2954static int kvmppc_vcore_check_block(struct kvmppc_vcore *vc)
2955{
2956 struct kvm_vcpu *vcpu;
2957 int i;
2958
2959 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10002960 if (!vcpu->arch.ceded || kvmppc_vcpu_woken(vcpu))
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10002961 return 1;
2962 }
2963
2964 return 0;
2965}
2966
Paul Mackerras19ccb762011-07-23 17:42:46 +10002967/*
2968 * All the vcpus in this vcore are idle, so wait for a decrementer
2969 * or external interrupt to one of the vcpus. vc->lock is held.
2970 */
2971static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
2972{
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10002973 ktime_t cur, start_poll, start_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10002974 int do_sleep = 1;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10002975 u64 block_ns;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002976 DECLARE_SWAITQUEUE(wait);
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11002977
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10002978 /* Poll for pending exceptions and ceded state */
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10002979 cur = start_poll = ktime_get();
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10002980 if (vc->halt_poll_ns) {
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10002981 ktime_t stop = ktime_add_ns(start_poll, vc->halt_poll_ns);
2982 ++vc->runner->stat.halt_attempted_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10002983
2984 vc->vcore_state = VCORE_POLLING;
2985 spin_unlock(&vc->lock);
2986
2987 do {
2988 if (kvmppc_vcore_check_block(vc)) {
2989 do_sleep = 0;
2990 break;
2991 }
2992 cur = ktime_get();
2993 } while (single_task_running() && ktime_before(cur, stop));
2994
2995 spin_lock(&vc->lock);
2996 vc->vcore_state = VCORE_INACTIVE;
2997
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10002998 if (!do_sleep) {
2999 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003000 goto out;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003001 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003002 }
3003
Marcelo Tosatti85773702016-02-19 09:46:39 +01003004 prepare_to_swait(&vc->wq, &wait, TASK_INTERRUPTIBLE);
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003005
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003006 if (kvmppc_vcore_check_block(vc)) {
Marcelo Tosatti85773702016-02-19 09:46:39 +01003007 finish_swait(&vc->wq, &wait);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003008 do_sleep = 0;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003009 /* If we polled, count this as a successful poll */
3010 if (vc->halt_poll_ns)
3011 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003012 goto out;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003013 }
3014
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003015 start_wait = ktime_get();
3016
Paul Mackerras19ccb762011-07-23 17:42:46 +10003017 vc->vcore_state = VCORE_SLEEPING;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003018 trace_kvmppc_vcore_blocked(vc, 0);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003019 spin_unlock(&vc->lock);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003020 schedule();
Marcelo Tosatti85773702016-02-19 09:46:39 +01003021 finish_swait(&vc->wq, &wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003022 spin_lock(&vc->lock);
3023 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003024 trace_kvmppc_vcore_blocked(vc, 1);
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003025 ++vc->runner->stat.halt_successful_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003026
3027 cur = ktime_get();
3028
3029out:
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003030 block_ns = ktime_to_ns(cur) - ktime_to_ns(start_poll);
3031
3032 /* Attribute wait time */
3033 if (do_sleep) {
3034 vc->runner->stat.halt_wait_ns +=
3035 ktime_to_ns(cur) - ktime_to_ns(start_wait);
3036 /* Attribute failed poll time */
3037 if (vc->halt_poll_ns)
3038 vc->runner->stat.halt_poll_fail_ns +=
3039 ktime_to_ns(start_wait) -
3040 ktime_to_ns(start_poll);
3041 } else {
3042 /* Attribute successful poll time */
3043 if (vc->halt_poll_ns)
3044 vc->runner->stat.halt_poll_success_ns +=
3045 ktime_to_ns(cur) -
3046 ktime_to_ns(start_poll);
3047 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003048
3049 /* Adjust poll time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003050 if (halt_poll_ns) {
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003051 if (block_ns <= vc->halt_poll_ns)
3052 ;
3053 /* We slept and blocked for longer than the max halt time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003054 else if (vc->halt_poll_ns && block_ns > halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003055 shrink_halt_poll_ns(vc);
3056 /* We slept and our poll time is too small */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003057 else if (vc->halt_poll_ns < halt_poll_ns &&
3058 block_ns < halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003059 grow_halt_poll_ns(vc);
Suraj Jitindar Singhe03f3922016-10-14 11:53:21 +11003060 if (vc->halt_poll_ns > halt_poll_ns)
3061 vc->halt_poll_ns = halt_poll_ns;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003062 } else
3063 vc->halt_poll_ns = 0;
3064
3065 trace_kvmppc_vcore_wakeup(do_sleep, block_ns);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003066}
3067
3068static int kvmppc_run_vcpu(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
3069{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003070 int n_ceded, i;
Paul Mackerras19ccb762011-07-23 17:42:46 +10003071 struct kvmppc_vcore *vc;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003072 struct kvm_vcpu *v;
Paul Mackerras9e368f22011-06-29 00:40:08 +00003073
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003074 trace_kvmppc_run_vcpu_enter(vcpu);
3075
Paul Mackerras371fefd2011-06-29 00:23:08 +00003076 kvm_run->exit_reason = 0;
3077 vcpu->arch.ret = RESUME_GUEST;
3078 vcpu->arch.trap = 0;
Paul Mackerras2f12f032012-10-15 01:17:17 +00003079 kvmppc_update_vpas(vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003080
Paul Mackerras371fefd2011-06-29 00:23:08 +00003081 /*
3082 * Synchronize with other threads in this virtual core
3083 */
3084 vc = vcpu->arch.vcore;
3085 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003086 vcpu->arch.ceded = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003087 vcpu->arch.run_task = current;
3088 vcpu->arch.kvm_run = kvm_run;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003089 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
Paul Mackerras19ccb762011-07-23 17:42:46 +10003090 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003091 vcpu->arch.busy_preempt = TB_NIL;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003092 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003093 ++vc->n_runnable;
3094
Paul Mackerras19ccb762011-07-23 17:42:46 +10003095 /*
3096 * This happens the first time this is called for a vcpu.
3097 * If the vcore is already running, we may be able to start
3098 * this thread straight away and have it join in.
3099 */
Paul Mackerras8455d792012-10-15 01:17:42 +00003100 if (!signal_pending(current)) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003101 if (vc->vcore_state == VCORE_PIGGYBACK) {
Paul Mackerras898b25b2017-06-22 15:08:42 +10003102 if (spin_trylock(&vc->lock)) {
3103 if (vc->vcore_state == VCORE_RUNNING &&
3104 !VCORE_IS_EXITING(vc)) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003105 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003106 kvmppc_start_thread(vcpu, vc);
Paul Mackerrasec257162015-06-24 21:18:03 +10003107 trace_kvm_guest_enter(vcpu);
3108 }
Paul Mackerras898b25b2017-06-22 15:08:42 +10003109 spin_unlock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10003110 }
3111 } else if (vc->vcore_state == VCORE_RUNNING &&
3112 !VCORE_IS_EXITING(vc)) {
Paul Mackerras2f12f032012-10-15 01:17:17 +00003113 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003114 kvmppc_start_thread(vcpu, vc);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003115 trace_kvm_guest_enter(vcpu);
Paul Mackerras8455d792012-10-15 01:17:42 +00003116 } else if (vc->vcore_state == VCORE_SLEEPING) {
Marcelo Tosatti85773702016-02-19 09:46:39 +01003117 swake_up(&vc->wq);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003118 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003119
Paul Mackerras8455d792012-10-15 01:17:42 +00003120 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003121
3122 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
3123 !signal_pending(current)) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003124 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
3125 kvmppc_vcore_end_preempt(vc);
3126
Paul Mackerras8455d792012-10-15 01:17:42 +00003127 if (vc->vcore_state != VCORE_INACTIVE) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003128 kvmppc_wait_for_exec(vc, vcpu, TASK_INTERRUPTIBLE);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003129 continue;
3130 }
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003131 for_each_runnable_thread(i, v, vc) {
Scott Wood7e28e60e2011-11-08 18:23:20 -06003132 kvmppc_core_prepare_to_enter(v);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003133 if (signal_pending(v->arch.run_task)) {
3134 kvmppc_remove_runnable(vc, v);
3135 v->stat.signal_exits++;
3136 v->arch.kvm_run->exit_reason = KVM_EXIT_INTR;
3137 v->arch.ret = -EINTR;
3138 wake_up(&v->arch.cpu_run);
3139 }
3140 }
Paul Mackerras8455d792012-10-15 01:17:42 +00003141 if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
3142 break;
Paul Mackerras8455d792012-10-15 01:17:42 +00003143 n_ceded = 0;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003144 for_each_runnable_thread(i, v, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003145 if (!kvmppc_vcpu_woken(v))
Paul Mackerras8455d792012-10-15 01:17:42 +00003146 n_ceded += v->arch.ceded;
Paul Mackerras4619ac82013-04-17 20:31:41 +00003147 else
3148 v->arch.ceded = 0;
3149 }
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003150 vc->runner = vcpu;
3151 if (n_ceded == vc->n_runnable) {
Paul Mackerras8455d792012-10-15 01:17:42 +00003152 kvmppc_vcore_blocked(vc);
Konstantin Khlebnikovc56dadf2015-07-15 12:52:03 +03003153 } else if (need_resched()) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003154 kvmppc_vcore_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003155 /* Let something else run */
3156 cond_resched_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10003157 if (vc->vcore_state == VCORE_PREEMPT)
3158 kvmppc_vcore_end_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003159 } else {
Paul Mackerras8455d792012-10-15 01:17:42 +00003160 kvmppc_run_core(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003161 }
Paul Mackerras0456ec42012-02-03 00:56:21 +00003162 vc->runner = NULL;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003163 }
3164
Paul Mackerras8455d792012-10-15 01:17:42 +00003165 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
3166 (vc->vcore_state == VCORE_RUNNING ||
Paul Mackerras5fc3e642015-09-18 13:13:44 +10003167 vc->vcore_state == VCORE_EXITING ||
3168 vc->vcore_state == VCORE_PIGGYBACK))
Paul Mackerrasec257162015-06-24 21:18:03 +10003169 kvmppc_wait_for_exec(vc, vcpu, TASK_UNINTERRUPTIBLE);
Paul Mackerras8455d792012-10-15 01:17:42 +00003170
Paul Mackerras5fc3e642015-09-18 13:13:44 +10003171 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
3172 kvmppc_vcore_end_preempt(vc);
3173
Paul Mackerras8455d792012-10-15 01:17:42 +00003174 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
3175 kvmppc_remove_runnable(vc, vcpu);
3176 vcpu->stat.signal_exits++;
3177 kvm_run->exit_reason = KVM_EXIT_INTR;
3178 vcpu->arch.ret = -EINTR;
3179 }
3180
3181 if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) {
3182 /* Wake up some vcpu to run the core */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003183 i = -1;
3184 v = next_runnable_thread(vc, &i);
Paul Mackerras8455d792012-10-15 01:17:42 +00003185 wake_up(&v->arch.cpu_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003186 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003187
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003188 trace_kvmppc_run_vcpu_exit(vcpu, kvm_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003189 spin_unlock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003190 return vcpu->arch.ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00003191}
3192
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303193static int kvmppc_vcpu_run_hv(struct kvm_run *run, struct kvm_vcpu *vcpu)
Paul Mackerrasa8606e22011-06-29 00:22:05 +00003194{
3195 int r;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003196 int srcu_idx;
Paul Mackerrasca8efa12017-06-06 16:47:22 +10003197 unsigned long ebb_regs[3] = {}; /* shut up GCC */
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10003198 unsigned long user_tar = 0;
3199 unsigned int user_vrsave;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00003200
Alexander Grafaf8f38b2011-08-10 13:57:08 +02003201 if (!vcpu->arch.sane) {
3202 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3203 return -EINVAL;
3204 }
3205
Paul Mackerras46a704f2017-06-15 16:10:27 +10003206 /*
3207 * Don't allow entry with a suspended transaction, because
3208 * the guest entry/exit code will lose it.
3209 * If the guest has TM enabled, save away their TM-related SPRs
3210 * (they will get restored by the TM unavailable interrupt).
3211 */
3212#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
3213 if (cpu_has_feature(CPU_FTR_TM) && current->thread.regs &&
3214 (current->thread.regs->msr & MSR_TM)) {
3215 if (MSR_TM_ACTIVE(current->thread.regs->msr)) {
3216 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3217 run->fail_entry.hardware_entry_failure_reason = 0;
3218 return -EINVAL;
3219 }
Paul Mackerrase4705712017-07-21 13:57:14 +10003220 /* Enable TM so we can read the TM SPRs */
3221 mtmsr(mfmsr() | MSR_TM);
Paul Mackerras46a704f2017-06-15 16:10:27 +10003222 current->thread.tm_tfhar = mfspr(SPRN_TFHAR);
3223 current->thread.tm_tfiar = mfspr(SPRN_TFIAR);
3224 current->thread.tm_texasr = mfspr(SPRN_TEXASR);
3225 current->thread.regs->msr &= ~MSR_TM;
3226 }
3227#endif
3228
Scott Wood25051b5a2011-11-08 18:23:23 -06003229 kvmppc_core_prepare_to_enter(vcpu);
3230
Paul Mackerras19ccb762011-07-23 17:42:46 +10003231 /* No need to go into the guest when all we'll do is come back out */
3232 if (signal_pending(current)) {
3233 run->exit_reason = KVM_EXIT_INTR;
3234 return -EINTR;
3235 }
3236
Paul Mackerras32fad282012-05-04 02:32:53 +00003237 atomic_inc(&vcpu->kvm->arch.vcpus_running);
Aneesh Kumar K.V31037ec2015-03-20 20:39:42 +11003238 /* Order vcpus_running vs. hpte_setup_done, see kvmppc_alloc_reset_hpt */
Paul Mackerras32fad282012-05-04 02:32:53 +00003239 smp_mb();
3240
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11003241 /* On the first time here, set up HTAB and VRMA */
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003242 if (!kvm_is_radix(vcpu->kvm) && !vcpu->kvm->arch.hpte_setup_done) {
Paul Mackerras32fad282012-05-04 02:32:53 +00003243 r = kvmppc_hv_setup_htab_rma(vcpu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003244 if (r)
Paul Mackerras32fad282012-05-04 02:32:53 +00003245 goto out;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003246 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003247
Anton Blanchard579e6332015-10-29 11:44:09 +11003248 flush_all_to_thread(current);
3249
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10003250 /* Save userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10003251 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
3252 ebb_regs[0] = mfspr(SPRN_EBBHR);
3253 ebb_regs[1] = mfspr(SPRN_EBBRR);
3254 ebb_regs[2] = mfspr(SPRN_BESCR);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10003255 user_tar = mfspr(SPRN_TAR);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10003256 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10003257 user_vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10003258
Paul Mackerras19ccb762011-07-23 17:42:46 +10003259 vcpu->arch.wqp = &vcpu->arch.vcore->wq;
Paul Mackerras342d3db2011-12-12 12:38:05 +00003260 vcpu->arch.pgdir = current->mm->pgd;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003261 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerras19ccb762011-07-23 17:42:46 +10003262
Paul Mackerrasa8606e22011-06-29 00:22:05 +00003263 do {
3264 r = kvmppc_run_vcpu(run, vcpu);
3265
3266 if (run->exit_reason == KVM_EXIT_PAPR_HCALL &&
3267 !(vcpu->arch.shregs.msr & MSR_PR)) {
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003268 trace_kvm_hcall_enter(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00003269 r = kvmppc_pseries_do_hcall(vcpu);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003270 trace_kvm_hcall_exit(vcpu, r);
Scott Wood7e28e60e2011-11-08 18:23:20 -06003271 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003272 } else if (r == RESUME_PAGE_FAULT) {
3273 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
3274 r = kvmppc_book3s_hv_page_fault(run, vcpu,
3275 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
3276 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10003277 } else if (r == RESUME_PASSTHROUGH) {
3278 if (WARN_ON(xive_enabled()))
3279 r = H_SUCCESS;
3280 else
3281 r = kvmppc_xics_rm_complete(vcpu, 0);
3282 }
Greg Kurze59d24e2014-02-06 17:36:56 +01003283 } while (is_kvmppc_resume_guest(r));
Paul Mackerras32fad282012-05-04 02:32:53 +00003284
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10003285 /* Restore userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10003286 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
3287 mtspr(SPRN_EBBHR, ebb_regs[0]);
3288 mtspr(SPRN_EBBRR, ebb_regs[1]);
3289 mtspr(SPRN_BESCR, ebb_regs[2]);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10003290 mtspr(SPRN_TAR, user_tar);
3291 mtspr(SPRN_FSCR, current->thread.fscr);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10003292 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10003293 mtspr(SPRN_VRSAVE, user_vrsave);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10003294
Paul Mackerras32fad282012-05-04 02:32:53 +00003295 out:
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003296 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras32fad282012-05-04 02:32:53 +00003297 atomic_dec(&vcpu->kvm->arch.vcpus_running);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00003298 return r;
3299}
3300
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00003301static void kvmppc_add_seg_page_size(struct kvm_ppc_one_seg_page_size **sps,
3302 int linux_psize)
3303{
3304 struct mmu_psize_def *def = &mmu_psize_defs[linux_psize];
3305
3306 if (!def->shift)
3307 return;
3308 (*sps)->page_shift = def->shift;
3309 (*sps)->slb_enc = def->sllp;
3310 (*sps)->enc[0].page_shift = def->shift;
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +00003311 (*sps)->enc[0].pte_enc = def->penc[linux_psize];
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05303312 /*
3313 * Add 16MB MPSS support if host supports it
3314 */
3315 if (linux_psize != MMU_PAGE_16M && def->penc[MMU_PAGE_16M] != -1) {
3316 (*sps)->enc[1].page_shift = 24;
3317 (*sps)->enc[1].pte_enc = def->penc[MMU_PAGE_16M];
3318 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00003319 (*sps)++;
3320}
3321
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303322static int kvm_vm_ioctl_get_smmu_info_hv(struct kvm *kvm,
3323 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00003324{
3325 struct kvm_ppc_one_seg_page_size *sps;
3326
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003327 /*
3328 * Since we don't yet support HPT guests on a radix host,
3329 * return an error if the host uses radix.
3330 */
3331 if (radix_enabled())
3332 return -EINVAL;
3333
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00003334 info->flags = KVM_PPC_PAGE_SIZES_REAL;
3335 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
3336 info->flags |= KVM_PPC_1T_SEGMENTS;
3337 info->slb_size = mmu_slb_size;
3338
3339 /* We only support these sizes for now, and no muti-size segments */
3340 sps = &info->sps[0];
3341 kvmppc_add_seg_page_size(&sps, MMU_PAGE_4K);
3342 kvmppc_add_seg_page_size(&sps, MMU_PAGE_64K);
3343 kvmppc_add_seg_page_size(&sps, MMU_PAGE_16M);
3344
3345 return 0;
3346}
3347
Paul Mackerras82ed3612011-12-15 02:03:22 +00003348/*
3349 * Get (and clear) the dirty memory log for a memory slot.
3350 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303351static int kvm_vm_ioctl_get_dirty_log_hv(struct kvm *kvm,
3352 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00003353{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02003354 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00003355 struct kvm_memory_slot *memslot;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11003356 int i, r;
Paul Mackerras82ed3612011-12-15 02:03:22 +00003357 unsigned long n;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11003358 unsigned long *buf;
3359 struct kvm_vcpu *vcpu;
Paul Mackerras82ed3612011-12-15 02:03:22 +00003360
3361 mutex_lock(&kvm->slots_lock);
3362
3363 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07003364 if (log->slot >= KVM_USER_MEM_SLOTS)
Paul Mackerras82ed3612011-12-15 02:03:22 +00003365 goto out;
3366
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02003367 slots = kvm_memslots(kvm);
3368 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00003369 r = -ENOENT;
3370 if (!memslot->dirty_bitmap)
3371 goto out;
3372
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11003373 /*
3374 * Use second half of bitmap area because radix accumulates
3375 * bits in the first half.
3376 */
Paul Mackerras82ed3612011-12-15 02:03:22 +00003377 n = kvm_dirty_bitmap_bytes(memslot);
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11003378 buf = memslot->dirty_bitmap + n / sizeof(long);
3379 memset(buf, 0, n);
Paul Mackerras82ed3612011-12-15 02:03:22 +00003380
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11003381 if (kvm_is_radix(kvm))
3382 r = kvmppc_hv_get_dirty_log_radix(kvm, memslot, buf);
3383 else
3384 r = kvmppc_hv_get_dirty_log_hpt(kvm, memslot, buf);
Paul Mackerras82ed3612011-12-15 02:03:22 +00003385 if (r)
3386 goto out;
3387
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11003388 /* Harvest dirty bits from VPA and DTL updates */
3389 /* Note: we never modify the SLB shadow buffer areas */
3390 kvm_for_each_vcpu(i, vcpu, kvm) {
3391 spin_lock(&vcpu->arch.vpa_update_lock);
3392 kvmppc_harvest_vpa_dirty(&vcpu->arch.vpa, memslot, buf);
3393 kvmppc_harvest_vpa_dirty(&vcpu->arch.dtl, memslot, buf);
3394 spin_unlock(&vcpu->arch.vpa_update_lock);
3395 }
3396
Paul Mackerras82ed3612011-12-15 02:03:22 +00003397 r = -EFAULT;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11003398 if (copy_to_user(log->dirty_bitmap, buf, n))
Paul Mackerras82ed3612011-12-15 02:03:22 +00003399 goto out;
3400
3401 r = 0;
3402out:
3403 mutex_unlock(&kvm->slots_lock);
3404 return r;
3405}
3406
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303407static void kvmppc_core_free_memslot_hv(struct kvm_memory_slot *free,
3408 struct kvm_memory_slot *dont)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00003409{
3410 if (!dont || free->arch.rmap != dont->arch.rmap) {
3411 vfree(free->arch.rmap);
3412 free->arch.rmap = NULL;
3413 }
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00003414}
3415
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303416static int kvmppc_core_create_memslot_hv(struct kvm_memory_slot *slot,
3417 unsigned long npages)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00003418{
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003419 /*
3420 * For now, if radix_enabled() then we only support radix guests,
3421 * and in that case we don't need the rmap array.
3422 */
3423 if (radix_enabled()) {
3424 slot->arch.rmap = NULL;
3425 return 0;
3426 }
3427
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00003428 slot->arch.rmap = vzalloc(npages * sizeof(*slot->arch.rmap));
3429 if (!slot->arch.rmap)
3430 return -ENOMEM;
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00003431
3432 return 0;
3433}
3434
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303435static int kvmppc_core_prepare_memory_region_hv(struct kvm *kvm,
3436 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02003437 const struct kvm_userspace_memory_region *mem)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00003438{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00003439 return 0;
3440}
3441
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303442static void kvmppc_core_commit_memory_region_hv(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02003443 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02003444 const struct kvm_memory_slot *old,
3445 const struct kvm_memory_slot *new)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003446{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00003447 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02003448 struct kvm_memslots *slots;
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00003449 struct kvm_memory_slot *memslot;
3450
Yongji Xiea56ee9f2016-11-04 13:55:12 +08003451 /*
3452 * If we are making a new memslot, it might make
3453 * some address that was previously cached as emulated
3454 * MMIO be no longer emulated MMIO, so invalidate
3455 * all the caches of emulated MMIO translations.
3456 */
3457 if (npages)
3458 atomic64_inc(&kvm->arch.mmio_update);
3459
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11003460 if (npages && old->npages && !kvm_is_radix(kvm)) {
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00003461 /*
3462 * If modifying a memslot, reset all the rmap dirty bits.
3463 * If this is a new memslot, we don't need to do anything
3464 * since the rmap array starts out as all zeroes,
3465 * i.e. no pages are dirty.
3466 */
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02003467 slots = kvm_memslots(kvm);
3468 memslot = id_to_memslot(slots, mem->slot);
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11003469 kvmppc_hv_get_dirty_log_hpt(kvm, memslot, NULL);
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00003470 }
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003471}
3472
Paul Mackerrasa0144e22013-09-20 14:52:38 +10003473/*
3474 * Update LPCR values in kvm->arch and in vcores.
3475 * Caller must hold kvm->lock.
3476 */
3477void kvmppc_update_lpcr(struct kvm *kvm, unsigned long lpcr, unsigned long mask)
3478{
3479 long int i;
3480 u32 cores_done = 0;
3481
3482 if ((kvm->arch.lpcr & mask) == lpcr)
3483 return;
3484
3485 kvm->arch.lpcr = (kvm->arch.lpcr & ~mask) | lpcr;
3486
3487 for (i = 0; i < KVM_MAX_VCORES; ++i) {
3488 struct kvmppc_vcore *vc = kvm->arch.vcores[i];
3489 if (!vc)
3490 continue;
3491 spin_lock(&vc->lock);
3492 vc->lpcr = (vc->lpcr & ~mask) | lpcr;
3493 spin_unlock(&vc->lock);
3494 if (++cores_done >= kvm->arch.online_vcores)
3495 break;
3496 }
3497}
3498
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303499static void kvmppc_mmu_destroy_hv(struct kvm_vcpu *vcpu)
3500{
3501 return;
3502}
3503
Paul Mackerras7a840842016-11-16 22:25:20 +11003504static void kvmppc_setup_partition_table(struct kvm *kvm)
3505{
3506 unsigned long dw0, dw1;
3507
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003508 if (!kvm_is_radix(kvm)) {
3509 /* PS field - page size for VRMA */
3510 dw0 = ((kvm->arch.vrma_slb_v & SLB_VSID_L) >> 1) |
3511 ((kvm->arch.vrma_slb_v & SLB_VSID_LP) << 1);
3512 /* HTABSIZE and HTABORG fields */
3513 dw0 |= kvm->arch.sdr1;
Paul Mackerras7a840842016-11-16 22:25:20 +11003514
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003515 /* Second dword as set by userspace */
3516 dw1 = kvm->arch.process_table;
3517 } else {
3518 dw0 = PATB_HR | radix__get_tree_size() |
3519 __pa(kvm->arch.pgtable) | RADIX_PGD_INDEX_SIZE;
3520 dw1 = PATB_GR | kvm->arch.process_table;
3521 }
Paul Mackerras7a840842016-11-16 22:25:20 +11003522
3523 mmu_partition_table_set_entry(kvm->arch.lpid, dw0, dw1);
3524}
3525
Paul Mackerras32fad282012-05-04 02:32:53 +00003526static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003527{
3528 int err = 0;
3529 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003530 unsigned long hva;
3531 struct kvm_memory_slot *memslot;
3532 struct vm_area_struct *vma;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10003533 unsigned long lpcr = 0, senc;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003534 unsigned long psize, porder;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003535 int srcu_idx;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003536
3537 mutex_lock(&kvm->lock);
Aneesh Kumar K.V31037ec2015-03-20 20:39:42 +11003538 if (kvm->arch.hpte_setup_done)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003539 goto out; /* another vcpu beat us to it */
3540
Paul Mackerras32fad282012-05-04 02:32:53 +00003541 /* Allocate hashed page table (if not done already) and reset it */
David Gibson3f9d4f52016-12-20 16:49:00 +11003542 if (!kvm->arch.hpt.virt) {
David Gibsonaae07772016-12-20 16:49:02 +11003543 int order = KVM_DEFAULT_HPT_ORDER;
3544 struct kvm_hpt_info info;
3545
3546 err = kvmppc_allocate_hpt(&info, order);
3547 /* If we get here, it means userspace didn't specify a
3548 * size explicitly. So, try successively smaller
3549 * sizes if the default failed. */
3550 while ((err == -ENOMEM) && --order >= PPC_MIN_HPT_ORDER)
3551 err = kvmppc_allocate_hpt(&info, order);
3552
3553 if (err < 0) {
Paul Mackerras32fad282012-05-04 02:32:53 +00003554 pr_err("KVM: Couldn't alloc HPT\n");
3555 goto out;
3556 }
David Gibsonaae07772016-12-20 16:49:02 +11003557
3558 kvmppc_set_hpt(kvm, &info);
Paul Mackerras32fad282012-05-04 02:32:53 +00003559 }
3560
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003561 /* Look up the memslot for guest physical address 0 */
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003562 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003563 memslot = gfn_to_memslot(kvm, 0);
3564
3565 /* We must have some memory at 0 by now */
3566 err = -EINVAL;
3567 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003568 goto out_srcu;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003569
3570 /* Look up the VMA for the start of this memory slot */
3571 hva = memslot->userspace_addr;
3572 down_read(&current->mm->mmap_sem);
3573 vma = find_vma(current->mm, hva);
3574 if (!vma || vma->vm_start > hva || (vma->vm_flags & VM_IO))
3575 goto up_out;
3576
3577 psize = vma_kernel_pagesize(vma);
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00003578 porder = __ilog2(psize);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00003579
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003580 up_read(&current->mm->mmap_sem);
3581
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11003582 /* We can handle 4k, 64k or 16M pages in the VRMA */
3583 err = -EINVAL;
3584 if (!(psize == 0x1000 || psize == 0x10000 ||
3585 psize == 0x1000000))
3586 goto out_srcu;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00003587
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11003588 senc = slb_pgsize_encoding(psize);
3589 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
3590 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11003591 /* Create HPTEs in the hash page table for the VRMA */
3592 kvmppc_map_vrma(vcpu, memslot, porder);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00003593
Paul Mackerras7a840842016-11-16 22:25:20 +11003594 /* Update VRMASD field in the LPCR */
3595 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
3596 /* the -4 is to account for senc values starting at 0x10 */
3597 lpcr = senc << (LPCR_VRMASD_SH - 4);
3598 kvmppc_update_lpcr(kvm, lpcr, LPCR_VRMASD);
3599 } else {
3600 kvmppc_setup_partition_table(kvm);
3601 }
Paul Mackerrasa0144e22013-09-20 14:52:38 +10003602
Aneesh Kumar K.V31037ec2015-03-20 20:39:42 +11003603 /* Order updates to kvm->arch.lpcr etc. vs. hpte_setup_done */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003604 smp_wmb();
Aneesh Kumar K.V31037ec2015-03-20 20:39:42 +11003605 kvm->arch.hpte_setup_done = 1;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003606 err = 0;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003607 out_srcu:
3608 srcu_read_unlock(&kvm->srcu, srcu_idx);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003609 out:
3610 mutex_unlock(&kvm->lock);
3611 return err;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00003612
Paul Mackerrasc77162d2011-12-12 12:31:00 +00003613 up_out:
3614 up_read(&current->mm->mmap_sem);
Lai Jiangshan505d6422013-03-16 00:50:49 +08003615 goto out_srcu;
Paul Mackerrasde56a942011-06-29 00:21:34 +00003616}
3617
Suresh Warrier79b6c242015-12-17 14:59:06 -06003618#ifdef CONFIG_KVM_XICS
3619/*
3620 * Allocate a per-core structure for managing state about which cores are
3621 * running in the host versus the guest and for exchanging data between
3622 * real mode KVM and CPU running in the host.
3623 * This is only done for the first VM.
3624 * The allocated structure stays even if all VMs have stopped.
3625 * It is only freed when the kvm-hv module is unloaded.
3626 * It's OK for this routine to fail, we just don't support host
3627 * core operations like redirecting H_IPI wakeups.
3628 */
3629void kvmppc_alloc_host_rm_ops(void)
3630{
3631 struct kvmppc_host_rm_ops *ops;
3632 unsigned long l_ops;
3633 int cpu, core;
3634 int size;
3635
3636 /* Not the first time here ? */
3637 if (kvmppc_host_rm_ops_hv != NULL)
3638 return;
3639
3640 ops = kzalloc(sizeof(struct kvmppc_host_rm_ops), GFP_KERNEL);
3641 if (!ops)
3642 return;
3643
3644 size = cpu_nr_cores() * sizeof(struct kvmppc_host_rm_core);
3645 ops->rm_core = kzalloc(size, GFP_KERNEL);
3646
3647 if (!ops->rm_core) {
3648 kfree(ops);
3649 return;
3650 }
3651
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02003652 cpus_read_lock();
Suresh Warrier6f3bb802015-12-17 14:59:08 -06003653
Suresh Warrier79b6c242015-12-17 14:59:06 -06003654 for (cpu = 0; cpu < nr_cpu_ids; cpu += threads_per_core) {
3655 if (!cpu_online(cpu))
3656 continue;
3657
3658 core = cpu >> threads_shift;
3659 ops->rm_core[core].rm_state.in_host = 1;
3660 }
3661
Suresh Warrier0c2a6602015-12-17 14:59:09 -06003662 ops->vcpu_kick = kvmppc_fast_vcpu_kick_hv;
3663
Suresh Warrier79b6c242015-12-17 14:59:06 -06003664 /*
3665 * Make the contents of the kvmppc_host_rm_ops structure visible
3666 * to other CPUs before we assign it to the global variable.
3667 * Do an atomic assignment (no locks used here), but if someone
3668 * beats us to it, just free our copy and return.
3669 */
3670 smp_wmb();
3671 l_ops = (unsigned long) ops;
3672
3673 if (cmpxchg64((unsigned long *)&kvmppc_host_rm_ops_hv, 0, l_ops)) {
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02003674 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06003675 kfree(ops->rm_core);
3676 kfree(ops);
Suresh Warrier6f3bb802015-12-17 14:59:08 -06003677 return;
Suresh Warrier79b6c242015-12-17 14:59:06 -06003678 }
Suresh Warrier6f3bb802015-12-17 14:59:08 -06003679
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02003680 cpuhp_setup_state_nocalls_cpuslocked(CPUHP_KVM_PPC_BOOK3S_PREPARE,
3681 "ppc/kvm_book3s:prepare",
3682 kvmppc_set_host_core,
3683 kvmppc_clear_host_core);
3684 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06003685}
3686
3687void kvmppc_free_host_rm_ops(void)
3688{
3689 if (kvmppc_host_rm_ops_hv) {
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01003690 cpuhp_remove_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE);
Suresh Warrier79b6c242015-12-17 14:59:06 -06003691 kfree(kvmppc_host_rm_ops_hv->rm_core);
3692 kfree(kvmppc_host_rm_ops_hv);
3693 kvmppc_host_rm_ops_hv = NULL;
3694 }
3695}
3696#endif
3697
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303698static int kvmppc_core_init_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00003699{
Paul Mackerras32fad282012-05-04 02:32:53 +00003700 unsigned long lpcr, lpid;
Paul Mackerrase23a8082015-03-28 14:21:01 +11003701 char buf[32];
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003702 int ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00003703
Paul Mackerras32fad282012-05-04 02:32:53 +00003704 /* Allocate the guest's logical partition ID */
3705
3706 lpid = kvmppc_alloc_lpid();
Chen Gang5d226ae2013-07-22 14:32:35 +08003707 if ((long)lpid < 0)
Paul Mackerras32fad282012-05-04 02:32:53 +00003708 return -ENOMEM;
3709 kvm->arch.lpid = lpid;
Paul Mackerrasde56a942011-06-29 00:21:34 +00003710
Suresh Warrier79b6c242015-12-17 14:59:06 -06003711 kvmppc_alloc_host_rm_ops();
3712
Paul Mackerras1b400ba2012-11-21 23:28:08 +00003713 /*
3714 * Since we don't flush the TLB when tearing down a VM,
3715 * and this lpid might have previously been used,
3716 * make sure we flush on each core before running the new VM.
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11003717 * On POWER9, the tlbie in mmu_partition_table_set_entry()
3718 * does this flush for us.
Paul Mackerras1b400ba2012-11-21 23:28:08 +00003719 */
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11003720 if (!cpu_has_feature(CPU_FTR_ARCH_300))
3721 cpumask_setall(&kvm->arch.need_tlb_flush);
Paul Mackerras1b400ba2012-11-21 23:28:08 +00003722
Paul Mackerras699a0ea2014-06-02 11:02:59 +10003723 /* Start out with the default set of hcalls enabled */
3724 memcpy(kvm->arch.enabled_hcalls, default_enabled_hcalls,
3725 sizeof(kvm->arch.enabled_hcalls));
3726
Paul Mackerras7a840842016-11-16 22:25:20 +11003727 if (!cpu_has_feature(CPU_FTR_ARCH_300))
3728 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00003729
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11003730 /* Init LPCR for virtual RMA mode */
3731 kvm->arch.host_lpid = mfspr(SPRN_LPID);
3732 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
3733 lpcr &= LPCR_PECE | LPCR_LPES;
3734 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
3735 LPCR_VPM0 | LPCR_VPM1;
3736 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
3737 (VRMA_VSID << SLB_VSID_SHIFT_1T);
3738 /* On POWER8 turn on online bit to enable PURR/SPURR */
3739 if (cpu_has_feature(CPU_FTR_ARCH_207S))
3740 lpcr |= LPCR_ONL;
Paul Mackerras84f71392016-11-22 14:30:14 +11003741 /*
3742 * On POWER9, VPM0 bit is reserved (VPM0=1 behaviour is assumed)
3743 * Set HVICE bit to enable hypervisor virtualization interrupts.
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10003744 * Set HEIC to prevent OS interrupts to go to hypervisor (should
3745 * be unnecessary but better safe than sorry in case we re-enable
3746 * EE in HV mode with this LPCR still set)
Paul Mackerras84f71392016-11-22 14:30:14 +11003747 */
3748 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerras7a840842016-11-16 22:25:20 +11003749 lpcr &= ~LPCR_VPM0;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10003750 lpcr |= LPCR_HVICE | LPCR_HEIC;
3751
3752 /*
3753 * If xive is enabled, we route 0x500 interrupts directly
3754 * to the guest.
3755 */
3756 if (xive_enabled())
3757 lpcr |= LPCR_LPES;
Paul Mackerras84f71392016-11-22 14:30:14 +11003758 }
3759
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003760 /*
3761 * For now, if the host uses radix, the guest must be radix.
3762 */
3763 if (radix_enabled()) {
3764 kvm->arch.radix = 1;
3765 lpcr &= ~LPCR_VPM1;
3766 lpcr |= LPCR_UPRT | LPCR_GTSE | LPCR_HR;
3767 ret = kvmppc_init_vm_radix(kvm);
3768 if (ret) {
3769 kvmppc_free_lpid(kvm->arch.lpid);
3770 return ret;
3771 }
3772 kvmppc_setup_partition_table(kvm);
3773 }
3774
Paul Mackerras9e368f22011-06-29 00:40:08 +00003775 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00003776
David Gibson5e985962016-12-20 16:49:05 +11003777 /* Initialization for future HPT resizes */
3778 kvm->arch.resize_hpt = NULL;
3779
Paul Mackerras512691d2012-10-15 01:15:41 +00003780 /*
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11003781 * Work out how many sets the TLB has, for the use of
3782 * the TLB invalidation loop in book3s_hv_rmhandlers.S.
3783 */
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003784 if (kvm_is_radix(kvm))
3785 kvm->arch.tlb_sets = POWER9_TLB_SETS_RADIX; /* 128 */
3786 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11003787 kvm->arch.tlb_sets = POWER9_TLB_SETS_HASH; /* 256 */
3788 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
3789 kvm->arch.tlb_sets = POWER8_TLB_SETS; /* 512 */
3790 else
3791 kvm->arch.tlb_sets = POWER7_TLB_SETS; /* 128 */
3792
3793 /*
Michael Ellerman441c19c2014-05-23 18:15:25 +10003794 * Track that we now have a HV mode VM active. This blocks secondary
3795 * CPU threads from coming online.
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003796 * On POWER9, we only need to do this for HPT guests on a radix
3797 * host, which is not yet supported.
Paul Mackerras512691d2012-10-15 01:15:41 +00003798 */
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003799 if (!cpu_has_feature(CPU_FTR_ARCH_300))
3800 kvm_hv_vm_activated();
Paul Mackerras512691d2012-10-15 01:15:41 +00003801
Paul Mackerrase23a8082015-03-28 14:21:01 +11003802 /*
Paul Mackerras3c313522017-02-06 13:24:41 +11003803 * Initialize smt_mode depending on processor.
3804 * POWER8 and earlier have to use "strict" threading, where
3805 * all vCPUs in a vcore have to run on the same (sub)core,
3806 * whereas on POWER9 the threads can each run a different
3807 * guest.
3808 */
3809 if (!cpu_has_feature(CPU_FTR_ARCH_300))
3810 kvm->arch.smt_mode = threads_per_subcore;
3811 else
3812 kvm->arch.smt_mode = 1;
Paul Mackerras57900692017-05-16 16:41:20 +10003813 kvm->arch.emul_smt_mode = 1;
Paul Mackerras3c313522017-02-06 13:24:41 +11003814
3815 /*
Paul Mackerrase23a8082015-03-28 14:21:01 +11003816 * Create a debugfs directory for the VM
3817 */
3818 snprintf(buf, sizeof(buf), "vm%d", current->pid);
3819 kvm->arch.debugfs_dir = debugfs_create_dir(buf, kvm_debugfs_dir);
3820 if (!IS_ERR_OR_NULL(kvm->arch.debugfs_dir))
3821 kvmppc_mmu_debugfs_init(kvm);
3822
David Gibson54738c02011-06-29 00:22:41 +00003823 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00003824}
3825
Paul Mackerrasf1378b12013-09-27 15:33:43 +05303826static void kvmppc_free_vcores(struct kvm *kvm)
3827{
3828 long int i;
3829
Paul Mackerras23316312015-10-21 16:03:14 +11003830 for (i = 0; i < KVM_MAX_VCORES; ++i)
Paul Mackerrasf1378b12013-09-27 15:33:43 +05303831 kfree(kvm->arch.vcores[i]);
3832 kvm->arch.online_vcores = 0;
3833}
3834
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303835static void kvmppc_core_destroy_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00003836{
Paul Mackerrase23a8082015-03-28 14:21:01 +11003837 debugfs_remove_recursive(kvm->arch.debugfs_dir);
3838
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003839 if (!cpu_has_feature(CPU_FTR_ARCH_300))
3840 kvm_hv_vm_deactivated();
Paul Mackerras512691d2012-10-15 01:15:41 +00003841
Paul Mackerrasf1378b12013-09-27 15:33:43 +05303842 kvmppc_free_vcores(kvm);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00003843
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11003844 kvmppc_free_lpid(kvm->arch.lpid);
3845
Paul Mackerras5a319352017-01-30 21:21:46 +11003846 if (kvm_is_radix(kvm))
3847 kvmppc_free_radix(kvm);
3848 else
David Gibsonaae07772016-12-20 16:49:02 +11003849 kvmppc_free_hpt(&kvm->arch.hpt);
Suresh Warrierc57875f2016-08-19 15:35:50 +10003850
3851 kvmppc_free_pimap(kvm);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003852}
3853
3854/* We don't need to emulate any privileged instructions or dcbz */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303855static int kvmppc_core_emulate_op_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
3856 unsigned int inst, int *advance)
Paul Mackerrasde56a942011-06-29 00:21:34 +00003857{
3858 return EMULATE_FAIL;
3859}
3860
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303861static int kvmppc_core_emulate_mtspr_hv(struct kvm_vcpu *vcpu, int sprn,
3862 ulong spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00003863{
3864 return EMULATE_FAIL;
3865}
3866
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303867static int kvmppc_core_emulate_mfspr_hv(struct kvm_vcpu *vcpu, int sprn,
3868 ulong *spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00003869{
3870 return EMULATE_FAIL;
3871}
3872
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303873static int kvmppc_core_check_processor_compat_hv(void)
3874{
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11003875 if (!cpu_has_feature(CPU_FTR_HVMODE) ||
3876 !cpu_has_feature(CPU_FTR_ARCH_206))
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303877 return -EIO;
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10003878
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05303879 return 0;
3880}
3881
Suresh Warrier8daaafc2016-08-19 15:35:48 +10003882#ifdef CONFIG_KVM_XICS
3883
3884void kvmppc_free_pimap(struct kvm *kvm)
3885{
3886 kfree(kvm->arch.pimap);
3887}
3888
Suresh Warrierc57875f2016-08-19 15:35:50 +10003889static struct kvmppc_passthru_irqmap *kvmppc_alloc_pimap(void)
Suresh Warrier8daaafc2016-08-19 15:35:48 +10003890{
3891 return kzalloc(sizeof(struct kvmppc_passthru_irqmap), GFP_KERNEL);
3892}
Suresh Warrierc57875f2016-08-19 15:35:50 +10003893
3894static int kvmppc_set_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
3895{
3896 struct irq_desc *desc;
3897 struct kvmppc_irq_map *irq_map;
3898 struct kvmppc_passthru_irqmap *pimap;
3899 struct irq_chip *chip;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10003900 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10003901
Suresh Warrier644abbb2016-08-19 15:35:54 +10003902 if (!kvm_irq_bypass)
3903 return 1;
3904
Suresh Warrierc57875f2016-08-19 15:35:50 +10003905 desc = irq_to_desc(host_irq);
3906 if (!desc)
3907 return -EIO;
3908
3909 mutex_lock(&kvm->lock);
3910
3911 pimap = kvm->arch.pimap;
3912 if (pimap == NULL) {
3913 /* First call, allocate structure to hold IRQ map */
3914 pimap = kvmppc_alloc_pimap();
3915 if (pimap == NULL) {
3916 mutex_unlock(&kvm->lock);
3917 return -ENOMEM;
3918 }
3919 kvm->arch.pimap = pimap;
3920 }
3921
3922 /*
3923 * For now, we only support interrupts for which the EOI operation
3924 * is an OPAL call followed by a write to XIRR, since that's
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10003925 * what our real-mode EOI code does, or a XIVE interrupt
Suresh Warrierc57875f2016-08-19 15:35:50 +10003926 */
3927 chip = irq_data_get_irq_chip(&desc->irq_data);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10003928 if (!chip || !(is_pnv_opal_msi(chip) || is_xive_irq(chip))) {
Suresh Warrierc57875f2016-08-19 15:35:50 +10003929 pr_warn("kvmppc_set_passthru_irq_hv: Could not assign IRQ map for (%d,%d)\n",
3930 host_irq, guest_gsi);
3931 mutex_unlock(&kvm->lock);
3932 return -ENOENT;
3933 }
3934
3935 /*
3936 * See if we already have an entry for this guest IRQ number.
3937 * If it's mapped to a hardware IRQ number, that's an error,
3938 * otherwise re-use this entry.
3939 */
3940 for (i = 0; i < pimap->n_mapped; i++) {
3941 if (guest_gsi == pimap->mapped[i].v_hwirq) {
3942 if (pimap->mapped[i].r_hwirq) {
3943 mutex_unlock(&kvm->lock);
3944 return -EINVAL;
3945 }
3946 break;
3947 }
3948 }
3949
3950 if (i == KVMPPC_PIRQ_MAPPED) {
3951 mutex_unlock(&kvm->lock);
3952 return -EAGAIN; /* table is full */
3953 }
3954
3955 irq_map = &pimap->mapped[i];
3956
3957 irq_map->v_hwirq = guest_gsi;
Suresh Warrierc57875f2016-08-19 15:35:50 +10003958 irq_map->desc = desc;
3959
Suresh Warriere3c13e52016-08-19 15:35:51 +10003960 /*
3961 * Order the above two stores before the next to serialize with
3962 * the KVM real mode handler.
3963 */
3964 smp_wmb();
3965 irq_map->r_hwirq = desc->irq_data.hwirq;
3966
Suresh Warrierc57875f2016-08-19 15:35:50 +10003967 if (i == pimap->n_mapped)
3968 pimap->n_mapped++;
3969
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10003970 if (xive_enabled())
3971 rc = kvmppc_xive_set_mapped(kvm, guest_gsi, desc);
3972 else
3973 kvmppc_xics_set_mapped(kvm, guest_gsi, desc->irq_data.hwirq);
3974 if (rc)
3975 irq_map->r_hwirq = 0;
Paul Mackerras5d375192016-08-19 15:35:56 +10003976
Suresh Warrierc57875f2016-08-19 15:35:50 +10003977 mutex_unlock(&kvm->lock);
3978
3979 return 0;
3980}
3981
3982static int kvmppc_clr_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
3983{
3984 struct irq_desc *desc;
3985 struct kvmppc_passthru_irqmap *pimap;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10003986 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10003987
Suresh Warrier644abbb2016-08-19 15:35:54 +10003988 if (!kvm_irq_bypass)
3989 return 0;
3990
Suresh Warrierc57875f2016-08-19 15:35:50 +10003991 desc = irq_to_desc(host_irq);
3992 if (!desc)
3993 return -EIO;
3994
3995 mutex_lock(&kvm->lock);
Markus Elfringa1c52e12017-01-20 11:00:08 +01003996 if (!kvm->arch.pimap)
3997 goto unlock;
Suresh Warrierc57875f2016-08-19 15:35:50 +10003998
Suresh Warrierc57875f2016-08-19 15:35:50 +10003999 pimap = kvm->arch.pimap;
4000
4001 for (i = 0; i < pimap->n_mapped; i++) {
4002 if (guest_gsi == pimap->mapped[i].v_hwirq)
4003 break;
4004 }
4005
4006 if (i == pimap->n_mapped) {
4007 mutex_unlock(&kvm->lock);
4008 return -ENODEV;
4009 }
4010
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004011 if (xive_enabled())
4012 rc = kvmppc_xive_clr_mapped(kvm, guest_gsi, pimap->mapped[i].desc);
4013 else
4014 kvmppc_xics_clr_mapped(kvm, guest_gsi, pimap->mapped[i].r_hwirq);
Paul Mackerras5d375192016-08-19 15:35:56 +10004015
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004016 /* invalidate the entry (what do do on error from the above ?) */
Suresh Warrierc57875f2016-08-19 15:35:50 +10004017 pimap->mapped[i].r_hwirq = 0;
4018
4019 /*
4020 * We don't free this structure even when the count goes to
4021 * zero. The structure is freed when we destroy the VM.
4022 */
Markus Elfringa1c52e12017-01-20 11:00:08 +01004023 unlock:
Suresh Warrierc57875f2016-08-19 15:35:50 +10004024 mutex_unlock(&kvm->lock);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004025 return rc;
Suresh Warrierc57875f2016-08-19 15:35:50 +10004026}
4027
4028static int kvmppc_irq_bypass_add_producer_hv(struct irq_bypass_consumer *cons,
4029 struct irq_bypass_producer *prod)
4030{
4031 int ret = 0;
4032 struct kvm_kernel_irqfd *irqfd =
4033 container_of(cons, struct kvm_kernel_irqfd, consumer);
4034
4035 irqfd->producer = prod;
4036
4037 ret = kvmppc_set_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
4038 if (ret)
4039 pr_info("kvmppc_set_passthru_irq (irq %d, gsi %d) fails: %d\n",
4040 prod->irq, irqfd->gsi, ret);
4041
4042 return ret;
4043}
4044
4045static void kvmppc_irq_bypass_del_producer_hv(struct irq_bypass_consumer *cons,
4046 struct irq_bypass_producer *prod)
4047{
4048 int ret;
4049 struct kvm_kernel_irqfd *irqfd =
4050 container_of(cons, struct kvm_kernel_irqfd, consumer);
4051
4052 irqfd->producer = NULL;
4053
4054 /*
4055 * When producer of consumer is unregistered, we change back to
4056 * default external interrupt handling mode - KVM real mode
4057 * will switch back to host.
4058 */
4059 ret = kvmppc_clr_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
4060 if (ret)
4061 pr_warn("kvmppc_clr_passthru_irq (irq %d, gsi %d) fails: %d\n",
4062 prod->irq, irqfd->gsi, ret);
4063}
Suresh Warrier8daaafc2016-08-19 15:35:48 +10004064#endif
4065
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304066static long kvm_arch_vm_ioctl_hv(struct file *filp,
4067 unsigned int ioctl, unsigned long arg)
4068{
4069 struct kvm *kvm __maybe_unused = filp->private_data;
4070 void __user *argp = (void __user *)arg;
4071 long r;
4072
4073 switch (ioctl) {
4074
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304075 case KVM_PPC_ALLOCATE_HTAB: {
4076 u32 htab_order;
4077
4078 r = -EFAULT;
4079 if (get_user(htab_order, (u32 __user *)argp))
4080 break;
David Gibsonf98a8bf2016-12-20 16:49:03 +11004081 r = kvmppc_alloc_reset_hpt(kvm, htab_order);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304082 if (r)
4083 break;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304084 r = 0;
4085 break;
4086 }
4087
4088 case KVM_PPC_GET_HTAB_FD: {
4089 struct kvm_get_htab_fd ghf;
4090
4091 r = -EFAULT;
4092 if (copy_from_user(&ghf, argp, sizeof(ghf)))
4093 break;
4094 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
4095 break;
4096 }
4097
David Gibson5e985962016-12-20 16:49:05 +11004098 case KVM_PPC_RESIZE_HPT_PREPARE: {
4099 struct kvm_ppc_resize_hpt rhpt;
4100
4101 r = -EFAULT;
4102 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
4103 break;
4104
4105 r = kvm_vm_ioctl_resize_hpt_prepare(kvm, &rhpt);
4106 break;
4107 }
4108
4109 case KVM_PPC_RESIZE_HPT_COMMIT: {
4110 struct kvm_ppc_resize_hpt rhpt;
4111
4112 r = -EFAULT;
4113 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
4114 break;
4115
4116 r = kvm_vm_ioctl_resize_hpt_commit(kvm, &rhpt);
4117 break;
4118 }
4119
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304120 default:
4121 r = -ENOTTY;
4122 }
4123
4124 return r;
4125}
4126
Paul Mackerras699a0ea2014-06-02 11:02:59 +10004127/*
4128 * List of hcall numbers to enable by default.
4129 * For compatibility with old userspace, we enable by default
4130 * all hcalls that were implemented before the hcall-enabling
4131 * facility was added. Note this list should not include H_RTAS.
4132 */
4133static unsigned int default_hcall_list[] = {
4134 H_REMOVE,
4135 H_ENTER,
4136 H_READ,
4137 H_PROTECT,
4138 H_BULK_REMOVE,
4139 H_GET_TCE,
4140 H_PUT_TCE,
4141 H_SET_DABR,
4142 H_SET_XDABR,
4143 H_CEDE,
4144 H_PROD,
4145 H_CONFER,
4146 H_REGISTER_VPA,
4147#ifdef CONFIG_KVM_XICS
4148 H_EOI,
4149 H_CPPR,
4150 H_IPI,
4151 H_IPOLL,
4152 H_XIRR,
4153 H_XIRR_X,
4154#endif
4155 0
4156};
4157
4158static void init_default_hcalls(void)
4159{
4160 int i;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10004161 unsigned int hcall;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10004162
Paul Mackerrasae2113a2014-06-02 11:03:00 +10004163 for (i = 0; default_hcall_list[i]; ++i) {
4164 hcall = default_hcall_list[i];
4165 WARN_ON(!kvmppc_hcall_impl_hv(hcall));
4166 __set_bit(hcall / 4, default_enabled_hcalls);
4167 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10004168}
4169
Paul Mackerrasc9270132017-01-30 21:21:41 +11004170static int kvmhv_configure_mmu(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
4171{
Paul Mackerras468808b2017-01-30 21:21:42 +11004172 unsigned long lpcr;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004173 int radix;
Paul Mackerras468808b2017-01-30 21:21:42 +11004174
4175 /* If not on a POWER9, reject it */
4176 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4177 return -ENODEV;
4178
4179 /* If any unknown flags set, reject it */
4180 if (cfg->flags & ~(KVM_PPC_MMUV3_RADIX | KVM_PPC_MMUV3_GTSE))
4181 return -EINVAL;
4182
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004183 /* We can't change a guest to/from radix yet */
4184 radix = !!(cfg->flags & KVM_PPC_MMUV3_RADIX);
4185 if (radix != kvm_is_radix(kvm))
Paul Mackerras468808b2017-01-30 21:21:42 +11004186 return -EINVAL;
4187
4188 /* GR (guest radix) bit in process_table field must match */
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004189 if (!!(cfg->process_table & PATB_GR) != radix)
Paul Mackerras468808b2017-01-30 21:21:42 +11004190 return -EINVAL;
4191
4192 /* Process table size field must be reasonable, i.e. <= 24 */
4193 if ((cfg->process_table & PRTS_MASK) > 24)
4194 return -EINVAL;
4195
4196 kvm->arch.process_table = cfg->process_table;
4197 kvmppc_setup_partition_table(kvm);
4198
4199 lpcr = (cfg->flags & KVM_PPC_MMUV3_GTSE) ? LPCR_GTSE : 0;
4200 kvmppc_update_lpcr(kvm, lpcr, LPCR_GTSE);
4201
4202 return 0;
Paul Mackerrasc9270132017-01-30 21:21:41 +11004203}
4204
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05304205static struct kvmppc_ops kvm_ops_hv = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304206 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_hv,
4207 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_hv,
4208 .get_one_reg = kvmppc_get_one_reg_hv,
4209 .set_one_reg = kvmppc_set_one_reg_hv,
4210 .vcpu_load = kvmppc_core_vcpu_load_hv,
4211 .vcpu_put = kvmppc_core_vcpu_put_hv,
4212 .set_msr = kvmppc_set_msr_hv,
4213 .vcpu_run = kvmppc_vcpu_run_hv,
4214 .vcpu_create = kvmppc_core_vcpu_create_hv,
4215 .vcpu_free = kvmppc_core_vcpu_free_hv,
4216 .check_requests = kvmppc_core_check_requests_hv,
4217 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_hv,
4218 .flush_memslot = kvmppc_core_flush_memslot_hv,
4219 .prepare_memory_region = kvmppc_core_prepare_memory_region_hv,
4220 .commit_memory_region = kvmppc_core_commit_memory_region_hv,
4221 .unmap_hva = kvm_unmap_hva_hv,
4222 .unmap_hva_range = kvm_unmap_hva_range_hv,
4223 .age_hva = kvm_age_hva_hv,
4224 .test_age_hva = kvm_test_age_hva_hv,
4225 .set_spte_hva = kvm_set_spte_hva_hv,
4226 .mmu_destroy = kvmppc_mmu_destroy_hv,
4227 .free_memslot = kvmppc_core_free_memslot_hv,
4228 .create_memslot = kvmppc_core_create_memslot_hv,
4229 .init_vm = kvmppc_core_init_vm_hv,
4230 .destroy_vm = kvmppc_core_destroy_vm_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304231 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_hv,
4232 .emulate_op = kvmppc_core_emulate_op_hv,
4233 .emulate_mtspr = kvmppc_core_emulate_mtspr_hv,
4234 .emulate_mfspr = kvmppc_core_emulate_mfspr_hv,
4235 .fast_vcpu_kick = kvmppc_fast_vcpu_kick_hv,
4236 .arch_vm_ioctl = kvm_arch_vm_ioctl_hv,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10004237 .hcall_implemented = kvmppc_hcall_impl_hv,
Suresh Warrierc57875f2016-08-19 15:35:50 +10004238#ifdef CONFIG_KVM_XICS
4239 .irq_bypass_add_producer = kvmppc_irq_bypass_add_producer_hv,
4240 .irq_bypass_del_producer = kvmppc_irq_bypass_del_producer_hv,
4241#endif
Paul Mackerrasc9270132017-01-30 21:21:41 +11004242 .configure_mmu = kvmhv_configure_mmu,
4243 .get_rmmu_info = kvmhv_get_rmmu_info,
Paul Mackerras3c313522017-02-06 13:24:41 +11004244 .set_smt_mode = kvmhv_set_smt_mode,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304245};
4246
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05304247static int kvm_init_subcore_bitmap(void)
4248{
4249 int i, j;
4250 int nr_cores = cpu_nr_cores();
4251 struct sibling_subcore_state *sibling_subcore_state;
4252
4253 for (i = 0; i < nr_cores; i++) {
4254 int first_cpu = i * threads_per_core;
4255 int node = cpu_to_node(first_cpu);
4256
4257 /* Ignore if it is already allocated. */
4258 if (paca[first_cpu].sibling_subcore_state)
4259 continue;
4260
4261 sibling_subcore_state =
4262 kmalloc_node(sizeof(struct sibling_subcore_state),
4263 GFP_KERNEL, node);
4264 if (!sibling_subcore_state)
4265 return -ENOMEM;
4266
4267 memset(sibling_subcore_state, 0,
4268 sizeof(struct sibling_subcore_state));
4269
4270 for (j = 0; j < threads_per_core; j++) {
4271 int cpu = first_cpu + j;
4272
4273 paca[cpu].sibling_subcore_state = sibling_subcore_state;
4274 }
4275 }
4276 return 0;
4277}
4278
Paul Mackerras5a319352017-01-30 21:21:46 +11004279static int kvmppc_radix_possible(void)
4280{
4281 return cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled();
4282}
4283
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304284static int kvmppc_book3s_init_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004285{
4286 int r;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05304287 /*
4288 * FIXME!! Do we need to check on all cpus ?
4289 */
4290 r = kvmppc_core_check_processor_compat_hv();
4291 if (r < 0)
Paul Mackerras739e2422014-03-25 10:47:05 +11004292 return -ENODEV;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004293
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05304294 r = kvm_init_subcore_bitmap();
4295 if (r)
4296 return r;
4297
Paul Mackerrasf7257582016-11-18 09:02:08 +11004298 /*
4299 * We need a way of accessing the XICS interrupt controller,
4300 * either directly, via paca[cpu].kvm_hstate.xics_phys, or
4301 * indirectly, via OPAL.
4302 */
4303#ifdef CONFIG_SMP
Paul Mackerrasfb7dcf72017-04-28 08:23:16 +10004304 if (!xive_enabled() && !local_paca->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +11004305 struct device_node *np;
4306
4307 np = of_find_compatible_node(NULL, NULL, "ibm,opal-intc");
4308 if (!np) {
4309 pr_err("KVM-HV: Cannot determine method for accessing XICS\n");
4310 return -ENODEV;
4311 }
4312 }
4313#endif
4314
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05304315 kvm_ops_hv.owner = THIS_MODULE;
4316 kvmppc_hv_ops = &kvm_ops_hv;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004317
Paul Mackerras699a0ea2014-06-02 11:02:59 +10004318 init_default_hcalls();
4319
Paul Mackerrasec257162015-06-24 21:18:03 +10004320 init_vcore_lists();
4321
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05304322 r = kvmppc_mmu_hv_init();
Paul Mackerras5a319352017-01-30 21:21:46 +11004323 if (r)
4324 return r;
4325
4326 if (kvmppc_radix_possible())
4327 r = kvmppc_radix_init();
Paul Mackerrasde56a942011-06-29 00:21:34 +00004328 return r;
4329}
4330
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304331static void kvmppc_book3s_exit_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004332{
Suresh Warrier79b6c242015-12-17 14:59:06 -06004333 kvmppc_free_host_rm_ops();
Paul Mackerras5a319352017-01-30 21:21:46 +11004334 if (kvmppc_radix_possible())
4335 kvmppc_radix_exit();
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05304336 kvmppc_hv_ops = NULL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004337}
4338
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304339module_init(kvmppc_book3s_init_hv);
4340module_exit(kvmppc_book3s_exit_hv);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05304341MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01004342MODULE_ALIAS_MISCDEV(KVM_MINOR);
4343MODULE_ALIAS("devname:kvm");
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004344