blob: ba8134a989c1bb0e2e7270b0071d08b0c3082721 [file] [log] [blame]
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
14 *
15 * Copyright IBM Corp. 2007
16 *
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
19 */
20
21#include <linux/errno.h>
22#include <linux/err.h>
23#include <linux/kvm_host.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050024#include <linux/vmalloc.h>
Alexander Graf544c6762009-11-02 12:02:31 +000025#include <linux/hrtimer.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010026#include <linux/sched/signal.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050027#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Scott Woodeb1e4f42013-04-12 14:08:47 +000029#include <linux/file.h>
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +053030#include <linux/module.h>
Suresh Warrier95767302016-08-19 15:35:47 +100031#include <linux/irqbypass.h>
32#include <linux/kvm_irqfd.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050033#include <asm/cputable.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080034#include <linux/uaccess.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050035#include <asm/kvm_ppc.h>
Hollis Blanchard83aae4a2008-07-25 13:54:52 -050036#include <asm/tlbflush.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000037#include <asm/cputhreads.h>
Alexander Grafbd2be682012-08-13 01:04:19 +020038#include <asm/irqflags.h>
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +110039#include <asm/iommu.h>
Bin Lu6f63e812017-02-21 21:12:36 +080040#include <asm/switch_to.h>
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +100041#include <asm/xive.h>
42
Hollis Blanchard73e75b42008-12-02 15:51:57 -060043#include "timing.h"
Alexander Graf5efdb4b2013-04-17 00:37:57 +020044#include "irq.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110045#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050046
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030047#define CREATE_TRACE_POINTS
48#include "trace.h"
49
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +053050struct kvmppc_ops *kvmppc_hv_ops;
51EXPORT_SYMBOL_GPL(kvmppc_hv_ops);
52struct kvmppc_ops *kvmppc_pr_ops;
53EXPORT_SYMBOL_GPL(kvmppc_pr_ops);
54
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053055
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050056int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
57{
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +020058 return !!(v->arch.pending_exceptions) || kvm_request_pending(v);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050059}
60
Longpeng(Mike)199b5762017-08-08 12:05:32 +080061bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
62{
63 return false;
64}
65
Christoffer Dallb6d33832012-03-08 16:44:24 -050066int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
67{
68 return 1;
69}
70
Alexander Graf03d25c52012-08-10 12:28:50 +020071/*
72 * Common checks before entering the guest world. Call with interrupts
73 * disabled.
74 *
Alexander Graf7ee78852012-08-13 12:44:41 +020075 * returns:
76 *
77 * == 1 if we're ready to go into guest state
78 * <= 0 if we need to go back to the host with return value
Alexander Graf03d25c52012-08-10 12:28:50 +020079 */
80int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
81{
Scott Wood6c85f522014-01-09 19:18:40 -060082 int r;
Alexander Graf03d25c52012-08-10 12:28:50 +020083
Scott Wood6c85f522014-01-09 19:18:40 -060084 WARN_ON(irqs_disabled());
85 hard_irq_disable();
86
Alexander Graf03d25c52012-08-10 12:28:50 +020087 while (true) {
88 if (need_resched()) {
89 local_irq_enable();
90 cond_resched();
Scott Wood6c85f522014-01-09 19:18:40 -060091 hard_irq_disable();
Alexander Graf03d25c52012-08-10 12:28:50 +020092 continue;
93 }
94
95 if (signal_pending(current)) {
Alexander Graf7ee78852012-08-13 12:44:41 +020096 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
97 vcpu->run->exit_reason = KVM_EXIT_INTR;
98 r = -EINTR;
Alexander Graf03d25c52012-08-10 12:28:50 +020099 break;
100 }
101
Scott Wood5bd1cf12012-08-22 15:03:50 +0000102 vcpu->mode = IN_GUEST_MODE;
103
104 /*
105 * Reading vcpu->requests must happen after setting vcpu->mode,
106 * so we don't miss a request because the requester sees
107 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
108 * before next entering the guest (and thus doesn't IPI).
Lan Tianyu489153c2016-03-13 11:10:30 +0800109 * This also orders the write to mode from any reads
110 * to the page tables done while the VCPU is running.
111 * Please see the comment in kvm_flush_remote_tlbs.
Scott Wood5bd1cf12012-08-22 15:03:50 +0000112 */
Alexander Graf03d25c52012-08-10 12:28:50 +0200113 smp_mb();
Scott Wood5bd1cf12012-08-22 15:03:50 +0000114
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +0200115 if (kvm_request_pending(vcpu)) {
Alexander Graf03d25c52012-08-10 12:28:50 +0200116 /* Make sure we process requests preemptable */
117 local_irq_enable();
118 trace_kvm_check_requests(vcpu);
Alexander Graf7c973a22012-08-13 12:50:35 +0200119 r = kvmppc_core_check_requests(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -0600120 hard_irq_disable();
Alexander Graf7c973a22012-08-13 12:50:35 +0200121 if (r > 0)
122 continue;
123 break;
Alexander Graf03d25c52012-08-10 12:28:50 +0200124 }
125
126 if (kvmppc_core_prepare_to_enter(vcpu)) {
127 /* interrupts got enabled in between, so we
128 are back at square 1 */
129 continue;
130 }
131
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200132 guest_enter_irqoff();
Scott Wood6c85f522014-01-09 19:18:40 -0600133 return 1;
Alexander Graf03d25c52012-08-10 12:28:50 +0200134 }
135
Scott Wood6c85f522014-01-09 19:18:40 -0600136 /* return to host */
137 local_irq_enable();
Alexander Graf03d25c52012-08-10 12:28:50 +0200138 return r;
139}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530140EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
Alexander Graf03d25c52012-08-10 12:28:50 +0200141
Alexander Graf5deb8e72014-04-24 13:46:24 +0200142#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
143static void kvmppc_swab_shared(struct kvm_vcpu *vcpu)
144{
145 struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared;
146 int i;
147
148 shared->sprg0 = swab64(shared->sprg0);
149 shared->sprg1 = swab64(shared->sprg1);
150 shared->sprg2 = swab64(shared->sprg2);
151 shared->sprg3 = swab64(shared->sprg3);
152 shared->srr0 = swab64(shared->srr0);
153 shared->srr1 = swab64(shared->srr1);
154 shared->dar = swab64(shared->dar);
155 shared->msr = swab64(shared->msr);
156 shared->dsisr = swab32(shared->dsisr);
157 shared->int_pending = swab32(shared->int_pending);
158 for (i = 0; i < ARRAY_SIZE(shared->sr); i++)
159 shared->sr[i] = swab32(shared->sr[i]);
160}
161#endif
162
Alexander Graf2a342ed2010-07-29 14:47:48 +0200163int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
164{
165 int nr = kvmppc_get_gpr(vcpu, 11);
166 int r;
167 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
168 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
169 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
170 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
171 unsigned long r2 = 0;
172
Alexander Graf5deb8e72014-04-24 13:46:24 +0200173 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
Alexander Graf2a342ed2010-07-29 14:47:48 +0200174 /* 32 bit mode */
175 param1 &= 0xffffffff;
176 param2 &= 0xffffffff;
177 param3 &= 0xffffffff;
178 param4 &= 0xffffffff;
179 }
180
181 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000182 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200183 {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200184#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
185 /* Book3S can be little endian, find it out here */
186 int shared_big_endian = true;
187 if (vcpu->arch.intr_msr & MSR_LE)
188 shared_big_endian = false;
189 if (shared_big_endian != vcpu->arch.shared_big_endian)
190 kvmppc_swab_shared(vcpu);
191 vcpu->arch.shared_big_endian = shared_big_endian;
192#endif
193
Alexander Graff3383cf2014-05-12 01:08:32 +0200194 if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) {
195 /*
196 * Older versions of the Linux magic page code had
197 * a bug where they would map their trampoline code
198 * NX. If that's the case, remove !PR NX capability.
199 */
200 vcpu->arch.disable_kernel_nx = true;
201 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
202 }
203
204 vcpu->arch.magic_page_pa = param1 & ~0xfffULL;
205 vcpu->arch.magic_page_ea = param2 & ~0xfffULL;
Alexander Graf5fc87402010-07-29 14:47:55 +0200206
Alexander Graf89b68c92014-07-13 16:37:12 +0200207#ifdef CONFIG_PPC_64K_PAGES
208 /*
209 * Make sure our 4k magic page is in the same window of a 64k
210 * page within the guest and within the host's page.
211 */
212 if ((vcpu->arch.magic_page_pa & 0xf000) !=
213 ((ulong)vcpu->arch.shared & 0xf000)) {
214 void *old_shared = vcpu->arch.shared;
215 ulong shared = (ulong)vcpu->arch.shared;
216 void *new_shared;
217
218 shared &= PAGE_MASK;
219 shared |= vcpu->arch.magic_page_pa & 0xf000;
220 new_shared = (void*)shared;
221 memcpy(new_shared, old_shared, 0x1000);
222 vcpu->arch.shared = new_shared;
223 }
224#endif
225
Scott Woodb5904972011-11-08 18:23:30 -0600226 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200227
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000228 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200229 break;
230 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000231 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
232 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000233#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Alexander Graf5fc87402010-07-29 14:47:55 +0200234 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
235#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200236
237 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200238 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000239 case EV_HCALL_TOKEN(EV_IDLE):
240 r = EV_SUCCESS;
241 kvm_vcpu_block(vcpu);
Radim Krčmář72875d82017-04-26 22:32:19 +0200242 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Liu Yu-B132019202e072012-07-03 05:48:52 +0000243 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200244 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000245 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200246 break;
247 }
248
Alexander Graf7508e162010-08-03 11:32:56 +0200249 kvmppc_set_gpr(vcpu, 4, r2);
250
Alexander Graf2a342ed2010-07-29 14:47:48 +0200251 return r;
252}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530253EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500254
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200255int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
256{
257 int r = false;
258
259 /* We have to know what CPU to virtualize */
260 if (!vcpu->arch.pvr)
261 goto out;
262
263 /* PAPR only works with book3s_64 */
264 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
265 goto out;
266
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200267 /* HV KVM can only do PAPR mode for now */
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530268 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200269 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200270
Scott Woodd30f6e42011-12-20 15:34:43 +0000271#ifdef CONFIG_KVM_BOOKE_HV
272 if (!cpu_has_feature(CPU_FTR_EMB_HV))
273 goto out;
274#endif
275
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200276 r = true;
277
278out:
279 vcpu->arch.sane = r;
280 return r ? 0 : -EINVAL;
281}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530282EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200283
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500284int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
285{
286 enum emulation_result er;
287 int r;
288
Alexander Grafd69614a2014-06-18 14:53:49 +0200289 er = kvmppc_emulate_loadstore(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500290 switch (er) {
291 case EMULATE_DONE:
292 /* Future optimization: only reload non-volatiles if they were
293 * actually modified. */
294 r = RESUME_GUEST_NV;
295 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300296 case EMULATE_AGAIN:
297 r = RESUME_GUEST;
298 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500299 case EMULATE_DO_MMIO:
300 run->exit_reason = KVM_EXIT_MMIO;
301 /* We must reload nonvolatiles because "update" load/store
302 * instructions modify register state. */
303 /* Future optimization: only reload non-volatiles if they were
304 * actually modified. */
305 r = RESUME_HOST_NV;
306 break;
307 case EMULATE_FAIL:
Mihai Caraman51f04722014-07-23 19:06:21 +0300308 {
309 u32 last_inst;
310
Alexander Graf8d0eff62014-09-10 14:37:29 +0200311 kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500312 /* XXX Deliver Program interrupt to guest. */
Mihai Caraman51f04722014-07-23 19:06:21 +0300313 pr_emerg("%s: emulation failed (%08x)\n", __func__, last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500314 r = RESUME_HOST;
315 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300316 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500317 default:
Alexander Graf5a331692012-12-14 23:46:03 +0100318 WARN_ON(1);
319 r = RESUME_GUEST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500320 }
321
322 return r;
323}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530324EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500325
Alexander Graf35c4a732014-06-20 13:58:16 +0200326int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
327 bool data)
328{
Alexander Grafc12fb432014-06-20 14:43:36 +0200329 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
Alexander Graf35c4a732014-06-20 13:58:16 +0200330 struct kvmppc_pte pte;
331 int r;
332
333 vcpu->stat.st++;
334
335 r = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
336 XLATE_WRITE, &pte);
337 if (r < 0)
338 return r;
339
340 *eaddr = pte.raddr;
341
342 if (!pte.may_write)
343 return -EPERM;
344
Alexander Grafc12fb432014-06-20 14:43:36 +0200345 /* Magic page override */
346 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
347 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
348 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
349 void *magic = vcpu->arch.shared;
350 magic += pte.eaddr & 0xfff;
351 memcpy(magic, ptr, size);
352 return EMULATE_DONE;
353 }
354
Alexander Graf35c4a732014-06-20 13:58:16 +0200355 if (kvm_write_guest(vcpu->kvm, pte.raddr, ptr, size))
356 return EMULATE_DO_MMIO;
357
358 return EMULATE_DONE;
359}
360EXPORT_SYMBOL_GPL(kvmppc_st);
361
362int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
363 bool data)
364{
Alexander Grafc12fb432014-06-20 14:43:36 +0200365 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
Alexander Graf35c4a732014-06-20 13:58:16 +0200366 struct kvmppc_pte pte;
Alexander Graf35c4a732014-06-20 13:58:16 +0200367 int rc;
368
369 vcpu->stat.ld++;
370
371 rc = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
372 XLATE_READ, &pte);
373 if (rc)
374 return rc;
375
376 *eaddr = pte.raddr;
377
378 if (!pte.may_read)
379 return -EPERM;
380
381 if (!data && !pte.may_execute)
382 return -ENOEXEC;
383
Alexander Grafc12fb432014-06-20 14:43:36 +0200384 /* Magic page override */
385 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
386 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
387 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
388 void *magic = vcpu->arch.shared;
389 magic += pte.eaddr & 0xfff;
390 memcpy(ptr, magic, size);
391 return EMULATE_DONE;
392 }
393
Alexander Grafc45c5512014-06-20 14:17:30 +0200394 if (kvm_read_guest(vcpu->kvm, pte.raddr, ptr, size))
395 return EMULATE_DO_MMIO;
Alexander Graf35c4a732014-06-20 13:58:16 +0200396
397 return EMULATE_DONE;
Alexander Graf35c4a732014-06-20 13:58:16 +0200398}
399EXPORT_SYMBOL_GPL(kvmppc_ld);
400
Radim Krčmář13a34e02014-08-28 15:13:03 +0200401int kvm_arch_hardware_enable(void)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500402{
Alexander Graf10474ae2009-09-15 11:37:46 +0200403 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500404}
405
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500406int kvm_arch_hardware_setup(void)
407{
408 return 0;
409}
410
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500411void kvm_arch_check_processor_compat(void *rtn)
412{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600413 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500414}
415
Carsten Ottee08b9632012-01-04 10:25:20 +0100416int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500417{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530418 struct kvmppc_ops *kvm_ops = NULL;
419 /*
420 * if we have both HV and PR enabled, default is HV
421 */
422 if (type == 0) {
423 if (kvmppc_hv_ops)
424 kvm_ops = kvmppc_hv_ops;
425 else
426 kvm_ops = kvmppc_pr_ops;
427 if (!kvm_ops)
428 goto err_out;
429 } else if (type == KVM_VM_PPC_HV) {
430 if (!kvmppc_hv_ops)
431 goto err_out;
432 kvm_ops = kvmppc_hv_ops;
433 } else if (type == KVM_VM_PPC_PR) {
434 if (!kvmppc_pr_ops)
435 goto err_out;
436 kvm_ops = kvmppc_pr_ops;
437 } else
438 goto err_out;
Carsten Ottee08b9632012-01-04 10:25:20 +0100439
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530440 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
441 return -ENOENT;
442
443 kvm->arch.kvm_ops = kvm_ops;
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000444 return kvmppc_core_init_vm(kvm);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530445err_out:
446 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500447}
448
Luiz Capitulino235539b2016-09-07 14:47:23 -0400449bool kvm_arch_has_vcpu_debugfs(void)
450{
451 return false;
452}
453
454int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
455{
456 return 0;
457}
458
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100459void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500460{
461 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300462 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500463
Suresh E. Warriere17769e2015-12-21 16:22:51 -0600464#ifdef CONFIG_KVM_XICS
465 /*
466 * We call kick_all_cpus_sync() to ensure that all
467 * CPUs have executed any pending IPIs before we
468 * continue and free VCPUs structures below.
469 */
470 if (is_kvmppc_hv_enabled(kvm))
471 kick_all_cpus_sync();
472#endif
473
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300474 kvm_for_each_vcpu(i, vcpu, kvm)
475 kvm_arch_vcpu_free(vcpu);
476
477 mutex_lock(&kvm->lock);
478 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
479 kvm->vcpus[i] = NULL;
480
481 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000482
483 kvmppc_core_destroy_vm(kvm);
484
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300485 mutex_unlock(&kvm->lock);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530486
487 /* drop the module reference */
488 module_put(kvm->arch.kvm_ops->owner);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500489}
490
Alexander Graf784aa3d2014-07-14 18:27:35 +0200491int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500492{
493 int r;
Alexander Graf7a587772014-07-14 18:55:19 +0200494 /* Assume we're using HV mode when the HV module is loaded */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530495 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500496
Alexander Graf7a587772014-07-14 18:55:19 +0200497 if (kvm) {
498 /*
499 * Hooray - we know which VM type we're running on. Depend on
500 * that rather than the guess above.
501 */
502 hv_enabled = is_kvmppc_hv_enabled(kvm);
503 }
504
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500505 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500506#ifdef CONFIG_BOOKE
507 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000508 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Alexander Graf1c810632013-01-04 18:12:48 +0100509 case KVM_CAP_PPC_EPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500510#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000511 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200512 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200513 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500514#endif
Alexander Graf18978762010-03-24 21:48:18 +0100515 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200516 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100517 case KVM_CAP_ENABLE_CAP:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000518 case KVM_CAP_ENABLE_CAP_VM:
Alexander Grafe24ed812011-09-14 10:02:41 +0200519 case KVM_CAP_ONE_REG:
Alexander Graf0e673fb2012-10-09 00:06:20 +0200520 case KVM_CAP_IOEVENTFD:
Scott Wood5df554ad2013-04-12 14:08:46 +0000521 case KVM_CAP_DEVICE_CTRL:
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100522 case KVM_CAP_IMMEDIATE_EXIT:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000523 r = 1;
524 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000525 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100526 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200527 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000528#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500529 case KVM_CAP_SW_TLB:
530#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530531 /* We support this only for PR */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530532 r = !hv_enabled;
Alexander Grafe15a1132009-11-30 03:02:02 +0000533 break;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530534#ifdef CONFIG_KVM_MPIC
535 case KVM_CAP_IRQ_MPIC:
536 r = 1;
537 break;
538#endif
539
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000540#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000541 case KVM_CAP_SPAPR_TCE:
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +1100542 case KVM_CAP_SPAPR_TCE_64:
Alexey Kardashevskiy121f80b2017-03-22 15:21:56 +1100543 /* fallthrough */
544 case KVM_CAP_SPAPR_TCE_VFIO:
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000545 case KVM_CAP_PPC_RTAS:
Alexander Graff2e91042014-05-22 17:40:15 +0200546 case KVM_CAP_PPC_FIXUP_HCALL:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000547 case KVM_CAP_PPC_ENABLE_HCALL:
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000548#ifdef CONFIG_KVM_XICS
549 case KVM_CAP_IRQ_XICS:
550#endif
David Gibson54738c02011-06-29 00:22:41 +0000551 r = 1;
552 break;
David Gibsona8acaec2016-11-23 16:14:07 +1100553
554 case KVM_CAP_PPC_ALLOC_HTAB:
555 r = hv_enabled;
556 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000557#endif /* CONFIG_PPC_BOOK3S_64 */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530558#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras371fefd2011-06-29 00:23:08 +0000559 case KVM_CAP_PPC_SMT:
Paul Mackerras45c940b2016-11-18 17:43:30 +1100560 r = 0;
Paul Mackerras57900692017-05-16 16:41:20 +1000561 if (kvm) {
562 if (kvm->arch.emul_smt_mode > 1)
563 r = kvm->arch.emul_smt_mode;
564 else
565 r = kvm->arch.smt_mode;
566 } else if (hv_enabled) {
Paul Mackerras45c940b2016-11-18 17:43:30 +1100567 if (cpu_has_feature(CPU_FTR_ARCH_300))
568 r = 1;
569 else
570 r = threads_per_subcore;
571 }
Paul Mackerras371fefd2011-06-29 00:23:08 +0000572 break;
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +1000573 case KVM_CAP_PPC_SMT_POSSIBLE:
574 r = 1;
575 if (hv_enabled) {
576 if (!cpu_has_feature(CPU_FTR_ARCH_300))
577 r = ((threads_per_subcore << 1) - 1);
578 else
579 /* P9 can emulate dbells, so allow any mode */
580 r = 8 | 4 | 2 | 1;
581 }
582 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000583 case KVM_CAP_PPC_RMA:
Paul Mackerrasc17b98c2014-12-03 13:30:38 +1100584 r = 0;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000585 break;
Michael Ellermane928e9c2015-03-20 20:39:41 +1100586 case KVM_CAP_PPC_HWRNG:
587 r = kvmppc_hwrng_present();
588 break;
Paul Mackerrasc9270132017-01-30 21:21:41 +1100589 case KVM_CAP_PPC_MMU_RADIX:
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +1100590 r = !!(hv_enabled && radix_enabled());
Paul Mackerrasc9270132017-01-30 21:21:41 +1100591 break;
592 case KVM_CAP_PPC_MMU_HASH_V3:
Paul Mackerras18c36402017-09-13 16:00:10 +1000593 r = !!(hv_enabled && cpu_has_feature(CPU_FTR_ARCH_300));
Paul Mackerrasc9270132017-01-30 21:21:41 +1100594 break;
David Gibson54738c02011-06-29 00:22:41 +0000595#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200596 case KVM_CAP_SYNC_MMU:
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530597#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasc17b98c2014-12-03 13:30:38 +1100598 r = hv_enabled;
Alexander Graff4800b12012-08-07 10:24:14 +0200599#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
600 r = 1;
601#else
602 r = 0;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000603#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530604 break;
605#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasa2932922012-11-19 22:57:20 +0000606 case KVM_CAP_PPC_HTAB_FD:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530607 r = hv_enabled;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000608 break;
Alexander Graff4800b12012-08-07 10:24:14 +0200609#endif
Matt Evansb5434032011-12-07 16:55:57 +0000610 case KVM_CAP_NR_VCPUS:
611 /*
612 * Recommending a number of CPUs is somewhat arbitrary; we
613 * return the number of present CPUs for -HV (since a host
614 * will have secondary threads "offline"), and for other KVM
615 * implementations just count online CPUs.
616 */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530617 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530618 r = num_present_cpus();
619 else
620 r = num_online_cpus();
Matt Evansb5434032011-12-07 16:55:57 +0000621 break;
Nikunj A Dadhaniabfec5c2c2015-10-16 10:27:53 +0530622 case KVM_CAP_NR_MEMSLOTS:
623 r = KVM_USER_MEM_SLOTS;
624 break;
Matt Evansb5434032011-12-07 16:55:57 +0000625 case KVM_CAP_MAX_VCPUS:
626 r = KVM_MAX_VCPUS;
627 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000628#ifdef CONFIG_PPC_BOOK3S_64
629 case KVM_CAP_PPC_GET_SMMU_INFO:
630 r = 1;
631 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +1100632 case KVM_CAP_SPAPR_MULTITCE:
633 r = 1;
634 break;
David Gibson050f2332016-12-20 16:49:07 +1100635 case KVM_CAP_SPAPR_RESIZE_HPT:
Paul Mackerrasbcd3bb62017-02-18 08:30:44 +1100636 /* Disable this on POWER9 until code handles new HPTE format */
637 r = !!hv_enabled && !cpu_has_feature(CPU_FTR_ARCH_300);
David Gibson050f2332016-12-20 16:49:07 +1100638 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000639#endif
Aravinda Prasad134764e2017-05-11 16:32:48 +0530640#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
641 case KVM_CAP_PPC_FWNMI:
642 r = hv_enabled;
643 break;
644#endif
Sam Bobroff23528bb2016-07-20 13:41:36 +1000645 case KVM_CAP_PPC_HTM:
Paul Mackerras072df812017-11-09 14:30:24 +1100646 r = hv_enabled &&
Michael Ellerman2a3d6552017-10-12 22:58:54 +1100647 (cur_cpu_spec->cpu_user_features2 & PPC_FEATURE2_HTM_COMP);
Sam Bobroff23528bb2016-07-20 13:41:36 +1000648 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500649 default:
650 r = 0;
651 break;
652 }
653 return r;
654
655}
656
657long kvm_arch_dev_ioctl(struct file *filp,
658 unsigned int ioctl, unsigned long arg)
659{
660 return -EINVAL;
661}
662
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530663void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900664 struct kvm_memory_slot *dont)
665{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530666 kvmppc_core_free_memslot(kvm, free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900667}
668
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530669int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
670 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900671{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530672 return kvmppc_core_create_memslot(kvm, slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900673}
674
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200675int kvm_arch_prepare_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900676 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200677 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900678 enum kvm_mr_change change)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500679{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000680 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500681}
682
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200683void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200684 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900685 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200686 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900687 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200688{
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200689 kvmppc_core_commit_memory_region(kvm, mem, old, new);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200690}
691
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300692void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
693 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300694{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000695 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300696}
697
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500698struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
699{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600700 struct kvm_vcpu *vcpu;
701 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000702 if (!IS_ERR(vcpu)) {
703 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800704 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000705 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600706 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500707}
708
Dominik Dingel31928aa2014-12-04 15:47:07 +0100709void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200710{
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200711}
712
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500713void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
714{
Alexander Grafa5954052010-02-22 16:52:14 +0100715 /* Make sure we're not using the vcpu anymore */
716 hrtimer_cancel(&vcpu->arch.dec_timer);
Alexander Grafa5954052010-02-22 16:52:14 +0100717
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600718 kvmppc_remove_vcpu_debugfs(vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000719
720 switch (vcpu->arch.irq_type) {
721 case KVMPPC_IRQ_MPIC:
722 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
723 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000724 case KVMPPC_IRQ_XICS:
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000725 if (xive_enabled())
726 kvmppc_xive_cleanup_vcpu(vcpu);
727 else
728 kvmppc_xics_free_icp(vcpu);
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000729 break;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000730 }
731
Hollis Blancharddb93f572008-11-05 09:36:18 -0600732 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500733}
734
735void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
736{
737 kvm_arch_vcpu_free(vcpu);
738}
739
740int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
741{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600742 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500743}
744
Thomas Huth5358a962015-05-22 09:25:02 +0200745static enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
Alexander Graf544c6762009-11-02 12:02:31 +0000746{
747 struct kvm_vcpu *vcpu;
748
749 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
Mihai Caramand02d4d12014-09-01 17:19:56 +0300750 kvmppc_decrementer_func(vcpu);
Alexander Graf544c6762009-11-02 12:02:31 +0000751
752 return HRTIMER_NORESTART;
753}
754
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500755int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
756{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000757 int ret;
758
Alexander Graf544c6762009-11-02 12:02:31 +0000759 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
Alexander Graf544c6762009-11-02 12:02:31 +0000760 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000761 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500762
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530763#ifdef CONFIG_KVM_EXIT_TIMING
764 mutex_init(&vcpu->arch.exit_timing_lock);
765#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000766 ret = kvmppc_subarch_vcpu_init(vcpu);
767 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500768}
769
770void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
771{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600772 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000773 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500774}
775
776void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
777{
Scott Woodeab17672011-04-27 17:24:10 -0500778#ifdef CONFIG_BOOKE
779 /*
780 * vrsave (formerly usprg0) isn't used by Linux, but may
781 * be used by the guest.
782 *
783 * On non-booke this is associated with Altivec and
784 * is handled by code in book3s.c.
785 */
786 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
787#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600788 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500789}
790
791void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
792{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600793 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500794#ifdef CONFIG_BOOKE
795 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
796#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500797}
798
Suresh Warrier95767302016-08-19 15:35:47 +1000799/*
800 * irq_bypass_add_producer and irq_bypass_del_producer are only
801 * useful if the architecture supports PCI passthrough.
802 * irq_bypass_stop and irq_bypass_start are not needed and so
803 * kvm_ops are not defined for them.
804 */
805bool kvm_arch_has_irq_bypass(void)
806{
807 return ((kvmppc_hv_ops && kvmppc_hv_ops->irq_bypass_add_producer) ||
808 (kvmppc_pr_ops && kvmppc_pr_ops->irq_bypass_add_producer));
809}
810
811int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
812 struct irq_bypass_producer *prod)
813{
814 struct kvm_kernel_irqfd *irqfd =
815 container_of(cons, struct kvm_kernel_irqfd, consumer);
816 struct kvm *kvm = irqfd->kvm;
817
818 if (kvm->arch.kvm_ops->irq_bypass_add_producer)
819 return kvm->arch.kvm_ops->irq_bypass_add_producer(cons, prod);
820
821 return 0;
822}
823
824void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
825 struct irq_bypass_producer *prod)
826{
827 struct kvm_kernel_irqfd *irqfd =
828 container_of(cons, struct kvm_kernel_irqfd, consumer);
829 struct kvm *kvm = irqfd->kvm;
830
831 if (kvm->arch.kvm_ops->irq_bypass_del_producer)
832 kvm->arch.kvm_ops->irq_bypass_del_producer(cons, prod);
833}
834
Bin Lu6f63e812017-02-21 21:12:36 +0800835#ifdef CONFIG_VSX
836static inline int kvmppc_get_vsr_dword_offset(int index)
837{
838 int offset;
839
840 if ((index != 0) && (index != 1))
841 return -1;
842
843#ifdef __BIG_ENDIAN
844 offset = index;
845#else
846 offset = 1 - index;
847#endif
848
849 return offset;
850}
851
852static inline int kvmppc_get_vsr_word_offset(int index)
853{
854 int offset;
855
856 if ((index > 3) || (index < 0))
857 return -1;
858
859#ifdef __BIG_ENDIAN
860 offset = index;
861#else
862 offset = 3 - index;
863#endif
864 return offset;
865}
866
867static inline void kvmppc_set_vsr_dword(struct kvm_vcpu *vcpu,
868 u64 gpr)
869{
870 union kvmppc_one_reg val;
871 int offset = kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
872 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
873
874 if (offset == -1)
875 return;
876
877 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
878 val.vval = VCPU_VSX_VR(vcpu, index);
879 val.vsxval[offset] = gpr;
880 VCPU_VSX_VR(vcpu, index) = val.vval;
881 } else {
882 VCPU_VSX_FPR(vcpu, index, offset) = gpr;
883 }
884}
885
886static inline void kvmppc_set_vsr_dword_dump(struct kvm_vcpu *vcpu,
887 u64 gpr)
888{
889 union kvmppc_one_reg val;
890 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
891
892 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
893 val.vval = VCPU_VSX_VR(vcpu, index);
894 val.vsxval[0] = gpr;
895 val.vsxval[1] = gpr;
896 VCPU_VSX_VR(vcpu, index) = val.vval;
897 } else {
898 VCPU_VSX_FPR(vcpu, index, 0) = gpr;
899 VCPU_VSX_FPR(vcpu, index, 1) = gpr;
900 }
901}
902
903static inline void kvmppc_set_vsr_word(struct kvm_vcpu *vcpu,
904 u32 gpr32)
905{
906 union kvmppc_one_reg val;
907 int offset = kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
908 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
909 int dword_offset, word_offset;
910
911 if (offset == -1)
912 return;
913
914 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
915 val.vval = VCPU_VSX_VR(vcpu, index);
916 val.vsx32val[offset] = gpr32;
917 VCPU_VSX_VR(vcpu, index) = val.vval;
918 } else {
919 dword_offset = offset / 2;
920 word_offset = offset % 2;
921 val.vsxval[0] = VCPU_VSX_FPR(vcpu, index, dword_offset);
922 val.vsx32val[word_offset] = gpr32;
923 VCPU_VSX_FPR(vcpu, index, dword_offset) = val.vsxval[0];
924 }
925}
926#endif /* CONFIG_VSX */
927
928#ifdef CONFIG_PPC_FPU
929static inline u64 sp_to_dp(u32 fprs)
930{
931 u64 fprd;
932
933 preempt_disable();
934 enable_kernel_fp();
935 asm ("lfs%U1%X1 0,%1; stfd%U0%X0 0,%0" : "=m" (fprd) : "m" (fprs)
936 : "fr0");
937 preempt_enable();
938 return fprd;
939}
940
941static inline u32 dp_to_sp(u64 fprd)
942{
943 u32 fprs;
944
945 preempt_disable();
946 enable_kernel_fp();
947 asm ("lfd%U1%X1 0,%1; stfs%U0%X0 0,%0" : "=m" (fprs) : "m" (fprd)
948 : "fr0");
949 preempt_enable();
950 return fprs;
951}
952
953#else
954#define sp_to_dp(x) (x)
955#define dp_to_sp(x) (x)
956#endif /* CONFIG_PPC_FPU */
957
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500958static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
959 struct kvm_run *run)
960{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000961 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500962
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100963 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500964 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
965 return;
966 }
967
David Gibsond078eed2015-02-03 16:36:24 +1100968 if (!vcpu->arch.mmio_host_swabbed) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500969 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100970 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100971 case 4: gpr = *(u32 *)run->mmio.data; break;
972 case 2: gpr = *(u16 *)run->mmio.data; break;
973 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500974 }
975 } else {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500976 switch (run->mmio.len) {
David Gibsond078eed2015-02-03 16:36:24 +1100977 case 8: gpr = swab64(*(u64 *)run->mmio.data); break;
978 case 4: gpr = swab32(*(u32 *)run->mmio.data); break;
979 case 2: gpr = swab16(*(u16 *)run->mmio.data); break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100980 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500981 }
982 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100983
Bin Lu6f63e812017-02-21 21:12:36 +0800984 /* conversion between single and double precision */
985 if ((vcpu->arch.mmio_sp64_extend) && (run->mmio.len == 4))
986 gpr = sp_to_dp(gpr);
987
Alexander Graf3587d532010-02-19 11:00:30 +0100988 if (vcpu->arch.mmio_sign_extend) {
989 switch (run->mmio.len) {
990#ifdef CONFIG_PPC64
991 case 4:
992 gpr = (s64)(s32)gpr;
993 break;
994#endif
995 case 2:
996 gpr = (s64)(s16)gpr;
997 break;
998 case 1:
999 gpr = (s64)(s8)gpr;
1000 break;
1001 }
1002 }
1003
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001004 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
1005 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +01001006 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
1007 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001008 case KVM_MMIO_REG_FPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +11001009 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +01001010 break;
Alexander Graf287d5612010-04-01 15:33:21 +02001011#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001012 case KVM_MMIO_REG_QPR:
1013 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +01001014 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001015 case KVM_MMIO_REG_FQPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +11001016 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001017 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +01001018 break;
Alexander Graf287d5612010-04-01 15:33:21 +02001019#endif
Bin Lu6f63e812017-02-21 21:12:36 +08001020#ifdef CONFIG_VSX
1021 case KVM_MMIO_REG_VSX:
1022 if (vcpu->arch.mmio_vsx_copy_type == KVMPPC_VSX_COPY_DWORD)
1023 kvmppc_set_vsr_dword(vcpu, gpr);
1024 else if (vcpu->arch.mmio_vsx_copy_type == KVMPPC_VSX_COPY_WORD)
1025 kvmppc_set_vsr_word(vcpu, gpr);
1026 else if (vcpu->arch.mmio_vsx_copy_type ==
1027 KVMPPC_VSX_COPY_DWORD_LOAD_DUMP)
1028 kvmppc_set_vsr_dword_dump(vcpu, gpr);
1029 break;
1030#endif
Alexander Grafb104d062010-02-19 11:00:29 +01001031 default:
1032 BUG();
1033 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001034}
1035
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001036static int __kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1037 unsigned int rt, unsigned int bytes,
1038 int is_default_endian, int sign_extend)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001039{
Scott Wooded840ee2013-04-26 14:53:39 +00001040 int idx, ret;
David Gibsond078eed2015-02-03 16:36:24 +11001041 bool host_swabbed;
Cédric Le Goater73601772014-01-09 11:51:16 +01001042
David Gibsond078eed2015-02-03 16:36:24 +11001043 /* Pity C doesn't have a logical XOR operator */
Cédric Le Goater73601772014-01-09 11:51:16 +01001044 if (kvmppc_need_byteswap(vcpu)) {
David Gibsond078eed2015-02-03 16:36:24 +11001045 host_swabbed = is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001046 } else {
David Gibsond078eed2015-02-03 16:36:24 +11001047 host_swabbed = !is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001048 }
Scott Wooded840ee2013-04-26 14:53:39 +00001049
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001050 if (bytes > sizeof(run->mmio.data)) {
1051 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
1052 run->mmio.len);
1053 }
1054
1055 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1056 run->mmio.len = bytes;
1057 run->mmio.is_write = 0;
1058
1059 vcpu->arch.io_gpr = rt;
David Gibsond078eed2015-02-03 16:36:24 +11001060 vcpu->arch.mmio_host_swabbed = host_swabbed;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001061 vcpu->mmio_needed = 1;
1062 vcpu->mmio_is_write = 0;
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001063 vcpu->arch.mmio_sign_extend = sign_extend;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001064
Scott Wooded840ee2013-04-26 14:53:39 +00001065 idx = srcu_read_lock(&vcpu->kvm->srcu);
1066
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001067 ret = kvm_io_bus_read(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
Scott Wooded840ee2013-04-26 14:53:39 +00001068 bytes, &run->mmio.data);
1069
1070 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1071
1072 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +02001073 kvmppc_complete_mmio_load(vcpu, run);
1074 vcpu->mmio_needed = 0;
1075 return EMULATE_DONE;
1076 }
1077
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001078 return EMULATE_DO_MMIO;
1079}
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001080
1081int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1082 unsigned int rt, unsigned int bytes,
1083 int is_default_endian)
1084{
1085 return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 0);
1086}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301087EXPORT_SYMBOL_GPL(kvmppc_handle_load);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001088
Alexander Graf3587d532010-02-19 11:00:30 +01001089/* Same as above, but sign extends */
1090int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +01001091 unsigned int rt, unsigned int bytes,
1092 int is_default_endian)
Alexander Graf3587d532010-02-19 11:00:30 +01001093{
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001094 return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 1);
Alexander Graf3587d532010-02-19 11:00:30 +01001095}
1096
Bin Lu6f63e812017-02-21 21:12:36 +08001097#ifdef CONFIG_VSX
1098int kvmppc_handle_vsx_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1099 unsigned int rt, unsigned int bytes,
1100 int is_default_endian, int mmio_sign_extend)
1101{
1102 enum emulation_result emulated = EMULATE_DONE;
1103
1104 /* Currently, mmio_vsx_copy_nums only allowed to be less than 4 */
1105 if ( (vcpu->arch.mmio_vsx_copy_nums > 4) ||
1106 (vcpu->arch.mmio_vsx_copy_nums < 0) ) {
1107 return EMULATE_FAIL;
1108 }
1109
1110 while (vcpu->arch.mmio_vsx_copy_nums) {
1111 emulated = __kvmppc_handle_load(run, vcpu, rt, bytes,
1112 is_default_endian, mmio_sign_extend);
1113
1114 if (emulated != EMULATE_DONE)
1115 break;
1116
1117 vcpu->arch.paddr_accessed += run->mmio.len;
1118
1119 vcpu->arch.mmio_vsx_copy_nums--;
1120 vcpu->arch.mmio_vsx_offset++;
1121 }
1122 return emulated;
1123}
1124#endif /* CONFIG_VSX */
1125
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001126int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +01001127 u64 val, unsigned int bytes, int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001128{
1129 void *data = run->mmio.data;
Scott Wooded840ee2013-04-26 14:53:39 +00001130 int idx, ret;
David Gibsond078eed2015-02-03 16:36:24 +11001131 bool host_swabbed;
Cédric Le Goater73601772014-01-09 11:51:16 +01001132
David Gibsond078eed2015-02-03 16:36:24 +11001133 /* Pity C doesn't have a logical XOR operator */
Cédric Le Goater73601772014-01-09 11:51:16 +01001134 if (kvmppc_need_byteswap(vcpu)) {
David Gibsond078eed2015-02-03 16:36:24 +11001135 host_swabbed = is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001136 } else {
David Gibsond078eed2015-02-03 16:36:24 +11001137 host_swabbed = !is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001138 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001139
1140 if (bytes > sizeof(run->mmio.data)) {
1141 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
1142 run->mmio.len);
1143 }
1144
1145 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1146 run->mmio.len = bytes;
1147 run->mmio.is_write = 1;
1148 vcpu->mmio_needed = 1;
1149 vcpu->mmio_is_write = 1;
1150
Bin Lu6f63e812017-02-21 21:12:36 +08001151 if ((vcpu->arch.mmio_sp64_extend) && (bytes == 4))
1152 val = dp_to_sp(val);
1153
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001154 /* Store the value at the lowest bytes in 'data'. */
David Gibsond078eed2015-02-03 16:36:24 +11001155 if (!host_swabbed) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001156 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +01001157 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001158 case 4: *(u32 *)data = val; break;
1159 case 2: *(u16 *)data = val; break;
1160 case 1: *(u8 *)data = val; break;
1161 }
1162 } else {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001163 switch (bytes) {
David Gibsond078eed2015-02-03 16:36:24 +11001164 case 8: *(u64 *)data = swab64(val); break;
1165 case 4: *(u32 *)data = swab32(val); break;
1166 case 2: *(u16 *)data = swab16(val); break;
1167 case 1: *(u8 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001168 }
1169 }
1170
Scott Wooded840ee2013-04-26 14:53:39 +00001171 idx = srcu_read_lock(&vcpu->kvm->srcu);
1172
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001173 ret = kvm_io_bus_write(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
Scott Wooded840ee2013-04-26 14:53:39 +00001174 bytes, &run->mmio.data);
1175
1176 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1177
1178 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +02001179 vcpu->mmio_needed = 0;
1180 return EMULATE_DONE;
1181 }
1182
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001183 return EMULATE_DO_MMIO;
1184}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301185EXPORT_SYMBOL_GPL(kvmppc_handle_store);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001186
Bin Lu6f63e812017-02-21 21:12:36 +08001187#ifdef CONFIG_VSX
1188static inline int kvmppc_get_vsr_data(struct kvm_vcpu *vcpu, int rs, u64 *val)
1189{
1190 u32 dword_offset, word_offset;
1191 union kvmppc_one_reg reg;
1192 int vsx_offset = 0;
1193 int copy_type = vcpu->arch.mmio_vsx_copy_type;
1194 int result = 0;
1195
1196 switch (copy_type) {
1197 case KVMPPC_VSX_COPY_DWORD:
1198 vsx_offset =
1199 kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
1200
1201 if (vsx_offset == -1) {
1202 result = -1;
1203 break;
1204 }
1205
1206 if (!vcpu->arch.mmio_vsx_tx_sx_enabled) {
1207 *val = VCPU_VSX_FPR(vcpu, rs, vsx_offset);
1208 } else {
1209 reg.vval = VCPU_VSX_VR(vcpu, rs);
1210 *val = reg.vsxval[vsx_offset];
1211 }
1212 break;
1213
1214 case KVMPPC_VSX_COPY_WORD:
1215 vsx_offset =
1216 kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
1217
1218 if (vsx_offset == -1) {
1219 result = -1;
1220 break;
1221 }
1222
1223 if (!vcpu->arch.mmio_vsx_tx_sx_enabled) {
1224 dword_offset = vsx_offset / 2;
1225 word_offset = vsx_offset % 2;
1226 reg.vsxval[0] = VCPU_VSX_FPR(vcpu, rs, dword_offset);
1227 *val = reg.vsx32val[word_offset];
1228 } else {
1229 reg.vval = VCPU_VSX_VR(vcpu, rs);
1230 *val = reg.vsx32val[vsx_offset];
1231 }
1232 break;
1233
1234 default:
1235 result = -1;
1236 break;
1237 }
1238
1239 return result;
1240}
1241
1242int kvmppc_handle_vsx_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
1243 int rs, unsigned int bytes, int is_default_endian)
1244{
1245 u64 val;
1246 enum emulation_result emulated = EMULATE_DONE;
1247
1248 vcpu->arch.io_gpr = rs;
1249
1250 /* Currently, mmio_vsx_copy_nums only allowed to be less than 4 */
1251 if ( (vcpu->arch.mmio_vsx_copy_nums > 4) ||
1252 (vcpu->arch.mmio_vsx_copy_nums < 0) ) {
1253 return EMULATE_FAIL;
1254 }
1255
1256 while (vcpu->arch.mmio_vsx_copy_nums) {
1257 if (kvmppc_get_vsr_data(vcpu, rs, &val) == -1)
1258 return EMULATE_FAIL;
1259
1260 emulated = kvmppc_handle_store(run, vcpu,
1261 val, bytes, is_default_endian);
1262
1263 if (emulated != EMULATE_DONE)
1264 break;
1265
1266 vcpu->arch.paddr_accessed += run->mmio.len;
1267
1268 vcpu->arch.mmio_vsx_copy_nums--;
1269 vcpu->arch.mmio_vsx_offset++;
1270 }
1271
1272 return emulated;
1273}
1274
1275static int kvmppc_emulate_mmio_vsx_loadstore(struct kvm_vcpu *vcpu,
1276 struct kvm_run *run)
1277{
1278 enum emulation_result emulated = EMULATE_FAIL;
1279 int r;
1280
1281 vcpu->arch.paddr_accessed += run->mmio.len;
1282
1283 if (!vcpu->mmio_is_write) {
1284 emulated = kvmppc_handle_vsx_load(run, vcpu, vcpu->arch.io_gpr,
1285 run->mmio.len, 1, vcpu->arch.mmio_sign_extend);
1286 } else {
1287 emulated = kvmppc_handle_vsx_store(run, vcpu,
1288 vcpu->arch.io_gpr, run->mmio.len, 1);
1289 }
1290
1291 switch (emulated) {
1292 case EMULATE_DO_MMIO:
1293 run->exit_reason = KVM_EXIT_MMIO;
1294 r = RESUME_HOST;
1295 break;
1296 case EMULATE_FAIL:
1297 pr_info("KVM: MMIO emulation failed (VSX repeat)\n");
1298 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1299 run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
1300 r = RESUME_HOST;
1301 break;
1302 default:
1303 r = RESUME_GUEST;
1304 break;
1305 }
1306 return r;
1307}
1308#endif /* CONFIG_VSX */
1309
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001310int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1311{
1312 int r = 0;
1313 union kvmppc_one_reg val;
1314 int size;
1315
1316 size = one_reg_size(reg->id);
1317 if (size > sizeof(val))
1318 return -EINVAL;
1319
1320 r = kvmppc_get_one_reg(vcpu, reg->id, &val);
1321 if (r == -EINVAL) {
1322 r = 0;
1323 switch (reg->id) {
Mihai Caraman3840edc2014-08-20 16:36:25 +03001324#ifdef CONFIG_ALTIVEC
1325 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1326 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1327 r = -ENXIO;
1328 break;
1329 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001330 val.vval = vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0];
Mihai Caraman3840edc2014-08-20 16:36:25 +03001331 break;
1332 case KVM_REG_PPC_VSCR:
1333 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1334 r = -ENXIO;
1335 break;
1336 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001337 val = get_reg_val(reg->id, vcpu->arch.vr.vscr.u[3]);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001338 break;
1339 case KVM_REG_PPC_VRSAVE:
Greg Kurzb4d7f162016-01-13 18:28:17 +01001340 val = get_reg_val(reg->id, vcpu->arch.vrsave);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001341 break;
1342#endif /* CONFIG_ALTIVEC */
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001343 default:
1344 r = -EINVAL;
1345 break;
1346 }
1347 }
1348
1349 if (r)
1350 return r;
1351
1352 if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size))
1353 r = -EFAULT;
1354
1355 return r;
1356}
1357
1358int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1359{
1360 int r;
1361 union kvmppc_one_reg val;
1362 int size;
1363
1364 size = one_reg_size(reg->id);
1365 if (size > sizeof(val))
1366 return -EINVAL;
1367
1368 if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size))
1369 return -EFAULT;
1370
1371 r = kvmppc_set_one_reg(vcpu, reg->id, &val);
1372 if (r == -EINVAL) {
1373 r = 0;
1374 switch (reg->id) {
Mihai Caraman3840edc2014-08-20 16:36:25 +03001375#ifdef CONFIG_ALTIVEC
1376 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1377 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1378 r = -ENXIO;
1379 break;
1380 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001381 vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0] = val.vval;
Mihai Caraman3840edc2014-08-20 16:36:25 +03001382 break;
1383 case KVM_REG_PPC_VSCR:
1384 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1385 r = -ENXIO;
1386 break;
1387 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001388 vcpu->arch.vr.vscr.u[3] = set_reg_val(reg->id, val);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001389 break;
1390 case KVM_REG_PPC_VRSAVE:
Greg Kurzb4d7f162016-01-13 18:28:17 +01001391 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1392 r = -ENXIO;
1393 break;
1394 }
1395 vcpu->arch.vrsave = set_reg_val(reg->id, val);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001396 break;
1397#endif /* CONFIG_ALTIVEC */
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001398 default:
1399 r = -EINVAL;
1400 break;
1401 }
1402 }
1403
1404 return r;
1405}
1406
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001407int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
1408{
1409 int r;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001410
Christoffer Dallaccb7572017-12-04 21:35:25 +01001411 vcpu_load(vcpu);
1412
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001413 if (vcpu->mmio_needed) {
Bin Lu6f63e812017-02-21 21:12:36 +08001414 vcpu->mmio_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001415 if (!vcpu->mmio_is_write)
1416 kvmppc_complete_mmio_load(vcpu, run);
Bin Lu6f63e812017-02-21 21:12:36 +08001417#ifdef CONFIG_VSX
1418 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1419 vcpu->arch.mmio_vsx_copy_nums--;
1420 vcpu->arch.mmio_vsx_offset++;
1421 }
1422
1423 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1424 r = kvmppc_emulate_mmio_vsx_loadstore(vcpu, run);
1425 if (r == RESUME_HOST) {
1426 vcpu->mmio_needed = 1;
Christoffer Dallaccb7572017-12-04 21:35:25 +01001427 goto out;
Bin Lu6f63e812017-02-21 21:12:36 +08001428 }
1429 }
1430#endif
Alexander Grafad0a0482010-03-24 21:48:30 +01001431 } else if (vcpu->arch.osi_needed) {
1432 u64 *gprs = run->osi.gprs;
1433 int i;
1434
1435 for (i = 0; i < 32; i++)
1436 kvmppc_set_gpr(vcpu, i, gprs[i]);
1437 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001438 } else if (vcpu->arch.hcall_needed) {
1439 int i;
1440
1441 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
1442 for (i = 0; i < 9; ++i)
1443 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
1444 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +01001445#ifdef CONFIG_BOOKE
1446 } else if (vcpu->arch.epr_needed) {
1447 kvmppc_set_epr(vcpu, run->epr.epr);
1448 vcpu->arch.epr_needed = 0;
1449#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001450 }
1451
Jan H. Schönherr20b70352017-11-24 22:39:01 +01001452 kvm_sigset_activate(vcpu);
Bin Lu6f63e812017-02-21 21:12:36 +08001453
Paolo Bonzini460df4c2017-02-08 11:50:15 +01001454 if (run->immediate_exit)
1455 r = -EINTR;
1456 else
1457 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001458
Jan H. Schönherr20b70352017-11-24 22:39:01 +01001459 kvm_sigset_deactivate(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001460
Christoffer Dallaccb7572017-12-04 21:35:25 +01001461out:
1462 vcpu_put(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001463 return r;
1464}
1465
1466int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
1467{
Paul Mackerras19ccb762011-07-23 17:42:46 +10001468 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +00001469 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001470 return 0;
1471 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -05001472
Paul Mackerras19ccb762011-07-23 17:42:46 +10001473 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -05001474
Scott Wooddfd4d472011-11-17 12:39:59 +00001475 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -05001476
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001477 return 0;
1478}
1479
Alexander Graf71fbfd52010-03-24 21:48:29 +01001480static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
1481 struct kvm_enable_cap *cap)
1482{
1483 int r;
1484
1485 if (cap->flags)
1486 return -EINVAL;
1487
1488 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +01001489 case KVM_CAP_PPC_OSI:
1490 r = 0;
1491 vcpu->arch.osi_enabled = true;
1492 break;
Alexander Graf930b4122011-08-08 17:29:42 +02001493 case KVM_CAP_PPC_PAPR:
1494 r = 0;
1495 vcpu->arch.papr_enabled = true;
1496 break;
Alexander Graf1c810632013-01-04 18:12:48 +01001497 case KVM_CAP_PPC_EPR:
1498 r = 0;
Scott Wood5df554ad2013-04-12 14:08:46 +00001499 if (cap->args[0])
1500 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
1501 else
1502 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +01001503 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +00001504#ifdef CONFIG_BOOKE
1505 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1506 r = 0;
1507 vcpu->arch.watchdog_enabled = true;
1508 break;
1509#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001510#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001511 case KVM_CAP_SW_TLB: {
1512 struct kvm_config_tlb cfg;
1513 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
1514
1515 r = -EFAULT;
1516 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
1517 break;
1518
1519 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
1520 break;
1521 }
1522#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +00001523#ifdef CONFIG_KVM_MPIC
1524 case KVM_CAP_IRQ_MPIC: {
Al Viro70abade2013-08-30 15:04:22 -04001525 struct fd f;
Scott Woodeb1e4f42013-04-12 14:08:47 +00001526 struct kvm_device *dev;
1527
1528 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -04001529 f = fdget(cap->args[0]);
1530 if (!f.file)
Scott Woodeb1e4f42013-04-12 14:08:47 +00001531 break;
1532
1533 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -04001534 dev = kvm_device_from_filp(f.file);
Scott Woodeb1e4f42013-04-12 14:08:47 +00001535 if (dev)
1536 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
1537
Al Viro70abade2013-08-30 15:04:22 -04001538 fdput(f);
Scott Woodeb1e4f42013-04-12 14:08:47 +00001539 break;
1540 }
1541#endif
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001542#ifdef CONFIG_KVM_XICS
1543 case KVM_CAP_IRQ_XICS: {
Al Viro70abade2013-08-30 15:04:22 -04001544 struct fd f;
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001545 struct kvm_device *dev;
1546
1547 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -04001548 f = fdget(cap->args[0]);
1549 if (!f.file)
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001550 break;
1551
1552 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -04001553 dev = kvm_device_from_filp(f.file);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001554 if (dev) {
1555 if (xive_enabled())
1556 r = kvmppc_xive_connect_vcpu(dev, vcpu, cap->args[1]);
1557 else
1558 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
1559 }
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001560
Al Viro70abade2013-08-30 15:04:22 -04001561 fdput(f);
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001562 break;
1563 }
1564#endif /* CONFIG_KVM_XICS */
Aravinda Prasad134764e2017-05-11 16:32:48 +05301565#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
1566 case KVM_CAP_PPC_FWNMI:
1567 r = -EINVAL;
1568 if (!is_kvmppc_hv_enabled(vcpu->kvm))
1569 break;
1570 r = 0;
1571 vcpu->kvm->arch.fwnmi_enabled = true;
1572 break;
1573#endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */
Alexander Graf71fbfd52010-03-24 21:48:29 +01001574 default:
1575 r = -EINVAL;
1576 break;
1577 }
1578
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001579 if (!r)
1580 r = kvmppc_sanity_check(vcpu);
1581
Alexander Graf71fbfd52010-03-24 21:48:29 +01001582 return r;
1583}
1584
Paul Mackerras34a75b02016-08-10 11:27:27 +10001585bool kvm_arch_intc_initialized(struct kvm *kvm)
1586{
1587#ifdef CONFIG_KVM_MPIC
1588 if (kvm->arch.mpic)
1589 return true;
1590#endif
1591#ifdef CONFIG_KVM_XICS
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001592 if (kvm->arch.xics || kvm->arch.xive)
Paul Mackerras34a75b02016-08-10 11:27:27 +10001593 return true;
1594#endif
1595 return false;
1596}
1597
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001598int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
1599 struct kvm_mp_state *mp_state)
1600{
1601 return -EINVAL;
1602}
1603
1604int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
1605 struct kvm_mp_state *mp_state)
1606{
1607 return -EINVAL;
1608}
1609
1610long kvm_arch_vcpu_ioctl(struct file *filp,
1611 unsigned int ioctl, unsigned long arg)
1612{
1613 struct kvm_vcpu *vcpu = filp->private_data;
1614 void __user *argp = (void __user *)arg;
1615 long r;
1616
Christoffer Dall9b0624712017-12-04 21:35:36 +01001617 if (ioctl == KVM_INTERRUPT) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001618 struct kvm_interrupt irq;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001619 if (copy_from_user(&irq, argp, sizeof(irq)))
Christoffer Dall9b0624712017-12-04 21:35:36 +01001620 return -EFAULT;
1621 return kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001622 }
Avi Kivity19483d12010-05-13 12:30:43 +03001623
Christoffer Dall9b0624712017-12-04 21:35:36 +01001624 vcpu_load(vcpu);
1625
1626 switch (ioctl) {
Alexander Graf71fbfd52010-03-24 21:48:29 +01001627 case KVM_ENABLE_CAP:
1628 {
1629 struct kvm_enable_cap cap;
1630 r = -EFAULT;
1631 if (copy_from_user(&cap, argp, sizeof(cap)))
1632 goto out;
1633 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1634 break;
1635 }
Scott Wooddc83b8b2011-08-18 15:25:21 -05001636
Alexander Grafe24ed812011-09-14 10:02:41 +02001637 case KVM_SET_ONE_REG:
1638 case KVM_GET_ONE_REG:
1639 {
1640 struct kvm_one_reg reg;
1641 r = -EFAULT;
1642 if (copy_from_user(&reg, argp, sizeof(reg)))
1643 goto out;
1644 if (ioctl == KVM_SET_ONE_REG)
1645 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
1646 else
1647 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
1648 break;
1649 }
1650
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001651#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001652 case KVM_DIRTY_TLB: {
1653 struct kvm_dirty_tlb dirty;
1654 r = -EFAULT;
1655 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1656 goto out;
1657 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1658 break;
1659 }
1660#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001661 default:
1662 r = -EINVAL;
1663 }
1664
1665out:
Christoffer Dall9b0624712017-12-04 21:35:36 +01001666 vcpu_put(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001667 return r;
1668}
1669
Carsten Otte5b1c1492012-01-04 10:25:23 +01001670int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1671{
1672 return VM_FAULT_SIGBUS;
1673}
1674
Alexander Graf15711e92010-07-29 14:48:08 +02001675static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1676{
Stuart Yoder784bafa2012-07-03 05:48:51 +00001677 u32 inst_nop = 0x60000000;
1678#ifdef CONFIG_KVM_BOOKE_HV
1679 u32 inst_sc1 = 0x44000022;
Alexander Graf27431032014-04-24 13:39:16 +02001680 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
1681 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
1682 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
1683 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001684#else
Alexander Graf15711e92010-07-29 14:48:08 +02001685 u32 inst_lis = 0x3c000000;
1686 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +02001687 u32 inst_sc = 0x44000002;
1688 u32 inst_imm_mask = 0xffff;
1689
1690 /*
1691 * The hypercall to get into KVM from within guest context is as
1692 * follows:
1693 *
1694 * lis r0, r0, KVM_SC_MAGIC_R0@h
1695 * ori r0, KVM_SC_MAGIC_R0@l
1696 * sc
1697 * nop
1698 */
Alexander Graf27431032014-04-24 13:39:16 +02001699 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
1700 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
1701 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
1702 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001703#endif
Alexander Graf15711e92010-07-29 14:48:08 +02001704
Liu Yu-B132019202e072012-07-03 05:48:52 +00001705 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1706
Alexander Graf15711e92010-07-29 14:48:08 +02001707 return 0;
1708}
1709
Alexander Graf5efdb4b2013-04-17 00:37:57 +02001710int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1711 bool line_status)
1712{
1713 if (!irqchip_in_kernel(kvm))
1714 return -ENXIO;
1715
1716 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1717 irq_event->irq, irq_event->level,
1718 line_status);
1719 return 0;
1720}
1721
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001722
1723static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1724 struct kvm_enable_cap *cap)
1725{
1726 int r;
1727
1728 if (cap->flags)
1729 return -EINVAL;
1730
1731 switch (cap->cap) {
1732#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1733 case KVM_CAP_PPC_ENABLE_HCALL: {
1734 unsigned long hcall = cap->args[0];
1735
1736 r = -EINVAL;
1737 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
1738 cap->args[1] > 1)
1739 break;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001740 if (!kvmppc_book3s_hcall_implemented(kvm, hcall))
1741 break;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001742 if (cap->args[1])
1743 set_bit(hcall / 4, kvm->arch.enabled_hcalls);
1744 else
1745 clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
1746 r = 0;
1747 break;
1748 }
Paul Mackerras3c313522017-02-06 13:24:41 +11001749 case KVM_CAP_PPC_SMT: {
1750 unsigned long mode = cap->args[0];
1751 unsigned long flags = cap->args[1];
1752
1753 r = -EINVAL;
1754 if (kvm->arch.kvm_ops->set_smt_mode)
1755 r = kvm->arch.kvm_ops->set_smt_mode(kvm, mode, flags);
1756 break;
1757 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001758#endif
1759 default:
1760 r = -EINVAL;
1761 break;
1762 }
1763
1764 return r;
1765}
1766
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001767long kvm_arch_vm_ioctl(struct file *filp,
1768 unsigned int ioctl, unsigned long arg)
1769{
Scott Wood5df554ad2013-04-12 14:08:46 +00001770 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +02001771 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001772 long r;
1773
1774 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +02001775 case KVM_PPC_GET_PVINFO: {
1776 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +04001777 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +02001778 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1779 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1780 r = -EFAULT;
1781 goto out;
1782 }
1783
1784 break;
1785 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001786 case KVM_ENABLE_CAP:
1787 {
1788 struct kvm_enable_cap cap;
1789 r = -EFAULT;
1790 if (copy_from_user(&cap, argp, sizeof(cap)))
1791 goto out;
1792 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1793 break;
1794 }
Paul Mackerras76d837a2017-05-11 14:31:59 +10001795#ifdef CONFIG_SPAPR_TCE_IOMMU
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11001796 case KVM_CREATE_SPAPR_TCE_64: {
1797 struct kvm_create_spapr_tce_64 create_tce_64;
1798
1799 r = -EFAULT;
1800 if (copy_from_user(&create_tce_64, argp, sizeof(create_tce_64)))
1801 goto out;
1802 if (create_tce_64.flags) {
1803 r = -EINVAL;
1804 goto out;
1805 }
1806 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
1807 goto out;
1808 }
David Gibson54738c02011-06-29 00:22:41 +00001809 case KVM_CREATE_SPAPR_TCE: {
1810 struct kvm_create_spapr_tce create_tce;
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11001811 struct kvm_create_spapr_tce_64 create_tce_64;
David Gibson54738c02011-06-29 00:22:41 +00001812
1813 r = -EFAULT;
1814 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1815 goto out;
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11001816
1817 create_tce_64.liobn = create_tce.liobn;
1818 create_tce_64.page_shift = IOMMU_PAGE_SHIFT_4K;
1819 create_tce_64.offset = 0;
1820 create_tce_64.size = create_tce.window_size >>
1821 IOMMU_PAGE_SHIFT_4K;
1822 create_tce_64.flags = 0;
1823 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
David Gibson54738c02011-06-29 00:22:41 +00001824 goto out;
1825 }
Paul Mackerras76d837a2017-05-11 14:31:59 +10001826#endif
1827#ifdef CONFIG_PPC_BOOK3S_64
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001828 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001829 struct kvm_ppc_smmu_info info;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301830 struct kvm *kvm = filp->private_data;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001831
1832 memset(&info, 0, sizeof(info));
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301833 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001834 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1835 r = -EFAULT;
1836 break;
1837 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001838 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1839 struct kvm *kvm = filp->private_data;
1840
1841 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1842 break;
1843 }
Paul Mackerrasc9270132017-01-30 21:21:41 +11001844 case KVM_PPC_CONFIGURE_V3_MMU: {
1845 struct kvm *kvm = filp->private_data;
1846 struct kvm_ppc_mmuv3_cfg cfg;
1847
1848 r = -EINVAL;
1849 if (!kvm->arch.kvm_ops->configure_mmu)
1850 goto out;
1851 r = -EFAULT;
1852 if (copy_from_user(&cfg, argp, sizeof(cfg)))
1853 goto out;
1854 r = kvm->arch.kvm_ops->configure_mmu(kvm, &cfg);
1855 break;
1856 }
1857 case KVM_PPC_GET_RMMU_INFO: {
1858 struct kvm *kvm = filp->private_data;
1859 struct kvm_ppc_rmmu_info info;
1860
1861 r = -EINVAL;
1862 if (!kvm->arch.kvm_ops->get_rmmu_info)
1863 goto out;
1864 r = kvm->arch.kvm_ops->get_rmmu_info(kvm, &info);
1865 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1866 r = -EFAULT;
1867 break;
1868 }
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301869 default: {
1870 struct kvm *kvm = filp->private_data;
1871 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1872 }
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301873#else /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001874 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001875 r = -ENOTTY;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301876#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001877 }
Alexander Graf15711e92010-07-29 14:48:08 +02001878out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001879 return r;
1880}
1881
Scott Wood043cc4d2011-12-20 15:34:20 +00001882static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1883static unsigned long nr_lpids;
1884
1885long kvmppc_alloc_lpid(void)
1886{
1887 long lpid;
1888
1889 do {
1890 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1891 if (lpid >= nr_lpids) {
1892 pr_err("%s: No LPIDs free\n", __func__);
1893 return -ENOMEM;
1894 }
1895 } while (test_and_set_bit(lpid, lpid_inuse));
1896
1897 return lpid;
1898}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301899EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001900
1901void kvmppc_claim_lpid(long lpid)
1902{
1903 set_bit(lpid, lpid_inuse);
1904}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301905EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001906
1907void kvmppc_free_lpid(long lpid)
1908{
1909 clear_bit(lpid, lpid_inuse);
1910}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301911EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001912
1913void kvmppc_init_lpid(unsigned long nr_lpids_param)
1914{
1915 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1916 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1917}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301918EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001919
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001920int kvm_arch_init(void *opaque)
1921{
1922 return 0;
1923}
1924
Paolo Bonzini478d66862014-08-05 11:29:07 +02001925EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ppc_instr);