blob: 1a75c0b5f4ca8fba049f572e829d46c0cd40329d [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
Christoffer Dallb6d33832012-03-08 16:44:24 -050061int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
62{
63 return 1;
64}
65
Alexander Graf03d25c52012-08-10 12:28:50 +020066/*
67 * Common checks before entering the guest world. Call with interrupts
68 * disabled.
69 *
Alexander Graf7ee78852012-08-13 12:44:41 +020070 * returns:
71 *
72 * == 1 if we're ready to go into guest state
73 * <= 0 if we need to go back to the host with return value
Alexander Graf03d25c52012-08-10 12:28:50 +020074 */
75int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
76{
Scott Wood6c85f522014-01-09 19:18:40 -060077 int r;
Alexander Graf03d25c52012-08-10 12:28:50 +020078
Scott Wood6c85f522014-01-09 19:18:40 -060079 WARN_ON(irqs_disabled());
80 hard_irq_disable();
81
Alexander Graf03d25c52012-08-10 12:28:50 +020082 while (true) {
83 if (need_resched()) {
84 local_irq_enable();
85 cond_resched();
Scott Wood6c85f522014-01-09 19:18:40 -060086 hard_irq_disable();
Alexander Graf03d25c52012-08-10 12:28:50 +020087 continue;
88 }
89
90 if (signal_pending(current)) {
Alexander Graf7ee78852012-08-13 12:44:41 +020091 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
92 vcpu->run->exit_reason = KVM_EXIT_INTR;
93 r = -EINTR;
Alexander Graf03d25c52012-08-10 12:28:50 +020094 break;
95 }
96
Scott Wood5bd1cf12012-08-22 15:03:50 +000097 vcpu->mode = IN_GUEST_MODE;
98
99 /*
100 * Reading vcpu->requests must happen after setting vcpu->mode,
101 * so we don't miss a request because the requester sees
102 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
103 * before next entering the guest (and thus doesn't IPI).
Lan Tianyu489153c2016-03-13 11:10:30 +0800104 * This also orders the write to mode from any reads
105 * to the page tables done while the VCPU is running.
106 * Please see the comment in kvm_flush_remote_tlbs.
Scott Wood5bd1cf12012-08-22 15:03:50 +0000107 */
Alexander Graf03d25c52012-08-10 12:28:50 +0200108 smp_mb();
Scott Wood5bd1cf12012-08-22 15:03:50 +0000109
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +0200110 if (kvm_request_pending(vcpu)) {
Alexander Graf03d25c52012-08-10 12:28:50 +0200111 /* Make sure we process requests preemptable */
112 local_irq_enable();
113 trace_kvm_check_requests(vcpu);
Alexander Graf7c973a22012-08-13 12:50:35 +0200114 r = kvmppc_core_check_requests(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -0600115 hard_irq_disable();
Alexander Graf7c973a22012-08-13 12:50:35 +0200116 if (r > 0)
117 continue;
118 break;
Alexander Graf03d25c52012-08-10 12:28:50 +0200119 }
120
121 if (kvmppc_core_prepare_to_enter(vcpu)) {
122 /* interrupts got enabled in between, so we
123 are back at square 1 */
124 continue;
125 }
126
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200127 guest_enter_irqoff();
Scott Wood6c85f522014-01-09 19:18:40 -0600128 return 1;
Alexander Graf03d25c52012-08-10 12:28:50 +0200129 }
130
Scott Wood6c85f522014-01-09 19:18:40 -0600131 /* return to host */
132 local_irq_enable();
Alexander Graf03d25c52012-08-10 12:28:50 +0200133 return r;
134}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530135EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
Alexander Graf03d25c52012-08-10 12:28:50 +0200136
Alexander Graf5deb8e72014-04-24 13:46:24 +0200137#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
138static void kvmppc_swab_shared(struct kvm_vcpu *vcpu)
139{
140 struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared;
141 int i;
142
143 shared->sprg0 = swab64(shared->sprg0);
144 shared->sprg1 = swab64(shared->sprg1);
145 shared->sprg2 = swab64(shared->sprg2);
146 shared->sprg3 = swab64(shared->sprg3);
147 shared->srr0 = swab64(shared->srr0);
148 shared->srr1 = swab64(shared->srr1);
149 shared->dar = swab64(shared->dar);
150 shared->msr = swab64(shared->msr);
151 shared->dsisr = swab32(shared->dsisr);
152 shared->int_pending = swab32(shared->int_pending);
153 for (i = 0; i < ARRAY_SIZE(shared->sr); i++)
154 shared->sr[i] = swab32(shared->sr[i]);
155}
156#endif
157
Alexander Graf2a342ed2010-07-29 14:47:48 +0200158int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
159{
160 int nr = kvmppc_get_gpr(vcpu, 11);
161 int r;
162 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
163 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
164 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
165 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
166 unsigned long r2 = 0;
167
Alexander Graf5deb8e72014-04-24 13:46:24 +0200168 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
Alexander Graf2a342ed2010-07-29 14:47:48 +0200169 /* 32 bit mode */
170 param1 &= 0xffffffff;
171 param2 &= 0xffffffff;
172 param3 &= 0xffffffff;
173 param4 &= 0xffffffff;
174 }
175
176 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000177 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200178 {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200179#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
180 /* Book3S can be little endian, find it out here */
181 int shared_big_endian = true;
182 if (vcpu->arch.intr_msr & MSR_LE)
183 shared_big_endian = false;
184 if (shared_big_endian != vcpu->arch.shared_big_endian)
185 kvmppc_swab_shared(vcpu);
186 vcpu->arch.shared_big_endian = shared_big_endian;
187#endif
188
Alexander Graff3383cf2014-05-12 01:08:32 +0200189 if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) {
190 /*
191 * Older versions of the Linux magic page code had
192 * a bug where they would map their trampoline code
193 * NX. If that's the case, remove !PR NX capability.
194 */
195 vcpu->arch.disable_kernel_nx = true;
196 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
197 }
198
199 vcpu->arch.magic_page_pa = param1 & ~0xfffULL;
200 vcpu->arch.magic_page_ea = param2 & ~0xfffULL;
Alexander Graf5fc87402010-07-29 14:47:55 +0200201
Alexander Graf89b68c92014-07-13 16:37:12 +0200202#ifdef CONFIG_PPC_64K_PAGES
203 /*
204 * Make sure our 4k magic page is in the same window of a 64k
205 * page within the guest and within the host's page.
206 */
207 if ((vcpu->arch.magic_page_pa & 0xf000) !=
208 ((ulong)vcpu->arch.shared & 0xf000)) {
209 void *old_shared = vcpu->arch.shared;
210 ulong shared = (ulong)vcpu->arch.shared;
211 void *new_shared;
212
213 shared &= PAGE_MASK;
214 shared |= vcpu->arch.magic_page_pa & 0xf000;
215 new_shared = (void*)shared;
216 memcpy(new_shared, old_shared, 0x1000);
217 vcpu->arch.shared = new_shared;
218 }
219#endif
220
Scott Woodb5904972011-11-08 18:23:30 -0600221 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200222
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000223 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200224 break;
225 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000226 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
227 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000228#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Alexander Graf5fc87402010-07-29 14:47:55 +0200229 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
230#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200231
232 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200233 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000234 case EV_HCALL_TOKEN(EV_IDLE):
235 r = EV_SUCCESS;
236 kvm_vcpu_block(vcpu);
Radim Krčmář72875d82017-04-26 22:32:19 +0200237 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Liu Yu-B132019202e072012-07-03 05:48:52 +0000238 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200239 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000240 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200241 break;
242 }
243
Alexander Graf7508e162010-08-03 11:32:56 +0200244 kvmppc_set_gpr(vcpu, 4, r2);
245
Alexander Graf2a342ed2010-07-29 14:47:48 +0200246 return r;
247}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530248EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500249
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200250int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
251{
252 int r = false;
253
254 /* We have to know what CPU to virtualize */
255 if (!vcpu->arch.pvr)
256 goto out;
257
258 /* PAPR only works with book3s_64 */
259 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
260 goto out;
261
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200262 /* HV KVM can only do PAPR mode for now */
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530263 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200264 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200265
Scott Woodd30f6e42011-12-20 15:34:43 +0000266#ifdef CONFIG_KVM_BOOKE_HV
267 if (!cpu_has_feature(CPU_FTR_EMB_HV))
268 goto out;
269#endif
270
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200271 r = true;
272
273out:
274 vcpu->arch.sane = r;
275 return r ? 0 : -EINVAL;
276}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530277EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200278
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500279int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
280{
281 enum emulation_result er;
282 int r;
283
Alexander Grafd69614a2014-06-18 14:53:49 +0200284 er = kvmppc_emulate_loadstore(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500285 switch (er) {
286 case EMULATE_DONE:
287 /* Future optimization: only reload non-volatiles if they were
288 * actually modified. */
289 r = RESUME_GUEST_NV;
290 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300291 case EMULATE_AGAIN:
292 r = RESUME_GUEST;
293 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500294 case EMULATE_DO_MMIO:
295 run->exit_reason = KVM_EXIT_MMIO;
296 /* We must reload nonvolatiles because "update" load/store
297 * instructions modify register state. */
298 /* Future optimization: only reload non-volatiles if they were
299 * actually modified. */
300 r = RESUME_HOST_NV;
301 break;
302 case EMULATE_FAIL:
Mihai Caraman51f04722014-07-23 19:06:21 +0300303 {
304 u32 last_inst;
305
Alexander Graf8d0eff62014-09-10 14:37:29 +0200306 kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500307 /* XXX Deliver Program interrupt to guest. */
Mihai Caraman51f04722014-07-23 19:06:21 +0300308 pr_emerg("%s: emulation failed (%08x)\n", __func__, last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500309 r = RESUME_HOST;
310 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300311 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500312 default:
Alexander Graf5a331692012-12-14 23:46:03 +0100313 WARN_ON(1);
314 r = RESUME_GUEST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500315 }
316
317 return r;
318}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530319EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500320
Alexander Graf35c4a732014-06-20 13:58:16 +0200321int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
322 bool data)
323{
Alexander Grafc12fb432014-06-20 14:43:36 +0200324 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
Alexander Graf35c4a732014-06-20 13:58:16 +0200325 struct kvmppc_pte pte;
326 int r;
327
328 vcpu->stat.st++;
329
330 r = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
331 XLATE_WRITE, &pte);
332 if (r < 0)
333 return r;
334
335 *eaddr = pte.raddr;
336
337 if (!pte.may_write)
338 return -EPERM;
339
Alexander Grafc12fb432014-06-20 14:43:36 +0200340 /* Magic page override */
341 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
342 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
343 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
344 void *magic = vcpu->arch.shared;
345 magic += pte.eaddr & 0xfff;
346 memcpy(magic, ptr, size);
347 return EMULATE_DONE;
348 }
349
Alexander Graf35c4a732014-06-20 13:58:16 +0200350 if (kvm_write_guest(vcpu->kvm, pte.raddr, ptr, size))
351 return EMULATE_DO_MMIO;
352
353 return EMULATE_DONE;
354}
355EXPORT_SYMBOL_GPL(kvmppc_st);
356
357int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
358 bool data)
359{
Alexander Grafc12fb432014-06-20 14:43:36 +0200360 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
Alexander Graf35c4a732014-06-20 13:58:16 +0200361 struct kvmppc_pte pte;
Alexander Graf35c4a732014-06-20 13:58:16 +0200362 int rc;
363
364 vcpu->stat.ld++;
365
366 rc = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
367 XLATE_READ, &pte);
368 if (rc)
369 return rc;
370
371 *eaddr = pte.raddr;
372
373 if (!pte.may_read)
374 return -EPERM;
375
376 if (!data && !pte.may_execute)
377 return -ENOEXEC;
378
Alexander Grafc12fb432014-06-20 14:43:36 +0200379 /* Magic page override */
380 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
381 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
382 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
383 void *magic = vcpu->arch.shared;
384 magic += pte.eaddr & 0xfff;
385 memcpy(ptr, magic, size);
386 return EMULATE_DONE;
387 }
388
Alexander Grafc45c5512014-06-20 14:17:30 +0200389 if (kvm_read_guest(vcpu->kvm, pte.raddr, ptr, size))
390 return EMULATE_DO_MMIO;
Alexander Graf35c4a732014-06-20 13:58:16 +0200391
392 return EMULATE_DONE;
Alexander Graf35c4a732014-06-20 13:58:16 +0200393}
394EXPORT_SYMBOL_GPL(kvmppc_ld);
395
Radim Krčmář13a34e02014-08-28 15:13:03 +0200396int kvm_arch_hardware_enable(void)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500397{
Alexander Graf10474ae2009-09-15 11:37:46 +0200398 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500399}
400
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500401int kvm_arch_hardware_setup(void)
402{
403 return 0;
404}
405
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500406void kvm_arch_check_processor_compat(void *rtn)
407{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600408 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500409}
410
Carsten Ottee08b9632012-01-04 10:25:20 +0100411int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500412{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530413 struct kvmppc_ops *kvm_ops = NULL;
414 /*
415 * if we have both HV and PR enabled, default is HV
416 */
417 if (type == 0) {
418 if (kvmppc_hv_ops)
419 kvm_ops = kvmppc_hv_ops;
420 else
421 kvm_ops = kvmppc_pr_ops;
422 if (!kvm_ops)
423 goto err_out;
424 } else if (type == KVM_VM_PPC_HV) {
425 if (!kvmppc_hv_ops)
426 goto err_out;
427 kvm_ops = kvmppc_hv_ops;
428 } else if (type == KVM_VM_PPC_PR) {
429 if (!kvmppc_pr_ops)
430 goto err_out;
431 kvm_ops = kvmppc_pr_ops;
432 } else
433 goto err_out;
Carsten Ottee08b9632012-01-04 10:25:20 +0100434
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530435 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
436 return -ENOENT;
437
438 kvm->arch.kvm_ops = kvm_ops;
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000439 return kvmppc_core_init_vm(kvm);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530440err_out:
441 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500442}
443
Luiz Capitulino235539b2016-09-07 14:47:23 -0400444bool kvm_arch_has_vcpu_debugfs(void)
445{
446 return false;
447}
448
449int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
450{
451 return 0;
452}
453
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100454void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500455{
456 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300457 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500458
Suresh E. Warriere17769e2015-12-21 16:22:51 -0600459#ifdef CONFIG_KVM_XICS
460 /*
461 * We call kick_all_cpus_sync() to ensure that all
462 * CPUs have executed any pending IPIs before we
463 * continue and free VCPUs structures below.
464 */
465 if (is_kvmppc_hv_enabled(kvm))
466 kick_all_cpus_sync();
467#endif
468
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300469 kvm_for_each_vcpu(i, vcpu, kvm)
470 kvm_arch_vcpu_free(vcpu);
471
472 mutex_lock(&kvm->lock);
473 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
474 kvm->vcpus[i] = NULL;
475
476 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000477
478 kvmppc_core_destroy_vm(kvm);
479
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300480 mutex_unlock(&kvm->lock);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530481
482 /* drop the module reference */
483 module_put(kvm->arch.kvm_ops->owner);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500484}
485
Alexander Graf784aa3d2014-07-14 18:27:35 +0200486int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500487{
488 int r;
Alexander Graf7a587772014-07-14 18:55:19 +0200489 /* Assume we're using HV mode when the HV module is loaded */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530490 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500491
Alexander Graf7a587772014-07-14 18:55:19 +0200492 if (kvm) {
493 /*
494 * Hooray - we know which VM type we're running on. Depend on
495 * that rather than the guess above.
496 */
497 hv_enabled = is_kvmppc_hv_enabled(kvm);
498 }
499
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500500 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500501#ifdef CONFIG_BOOKE
502 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000503 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Alexander Graf1c810632013-01-04 18:12:48 +0100504 case KVM_CAP_PPC_EPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500505#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000506 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200507 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200508 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500509#endif
Alexander Graf18978762010-03-24 21:48:18 +0100510 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200511 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100512 case KVM_CAP_ENABLE_CAP:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000513 case KVM_CAP_ENABLE_CAP_VM:
Alexander Grafe24ed812011-09-14 10:02:41 +0200514 case KVM_CAP_ONE_REG:
Alexander Graf0e673fb2012-10-09 00:06:20 +0200515 case KVM_CAP_IOEVENTFD:
Scott Wood5df554ad2013-04-12 14:08:46 +0000516 case KVM_CAP_DEVICE_CTRL:
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100517 case KVM_CAP_IMMEDIATE_EXIT:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000518 r = 1;
519 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000520 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100521 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200522 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000523#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500524 case KVM_CAP_SW_TLB:
525#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530526 /* We support this only for PR */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530527 r = !hv_enabled;
Alexander Grafe15a1132009-11-30 03:02:02 +0000528 break;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530529#ifdef CONFIG_KVM_MPIC
530 case KVM_CAP_IRQ_MPIC:
531 r = 1;
532 break;
533#endif
534
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000535#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000536 case KVM_CAP_SPAPR_TCE:
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +1100537 case KVM_CAP_SPAPR_TCE_64:
Alexey Kardashevskiy121f80b2017-03-22 15:21:56 +1100538 /* fallthrough */
539 case KVM_CAP_SPAPR_TCE_VFIO:
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000540 case KVM_CAP_PPC_RTAS:
Alexander Graff2e91042014-05-22 17:40:15 +0200541 case KVM_CAP_PPC_FIXUP_HCALL:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000542 case KVM_CAP_PPC_ENABLE_HCALL:
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000543#ifdef CONFIG_KVM_XICS
544 case KVM_CAP_IRQ_XICS:
545#endif
David Gibson54738c02011-06-29 00:22:41 +0000546 r = 1;
547 break;
David Gibsona8acaec2016-11-23 16:14:07 +1100548
549 case KVM_CAP_PPC_ALLOC_HTAB:
550 r = hv_enabled;
551 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000552#endif /* CONFIG_PPC_BOOK3S_64 */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530553#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras371fefd2011-06-29 00:23:08 +0000554 case KVM_CAP_PPC_SMT:
Paul Mackerras45c940b2016-11-18 17:43:30 +1100555 r = 0;
Paul Mackerras57900692017-05-16 16:41:20 +1000556 if (kvm) {
557 if (kvm->arch.emul_smt_mode > 1)
558 r = kvm->arch.emul_smt_mode;
559 else
560 r = kvm->arch.smt_mode;
561 } else if (hv_enabled) {
Paul Mackerras45c940b2016-11-18 17:43:30 +1100562 if (cpu_has_feature(CPU_FTR_ARCH_300))
563 r = 1;
564 else
565 r = threads_per_subcore;
566 }
Paul Mackerras371fefd2011-06-29 00:23:08 +0000567 break;
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +1000568 case KVM_CAP_PPC_SMT_POSSIBLE:
569 r = 1;
570 if (hv_enabled) {
571 if (!cpu_has_feature(CPU_FTR_ARCH_300))
572 r = ((threads_per_subcore << 1) - 1);
573 else
574 /* P9 can emulate dbells, so allow any mode */
575 r = 8 | 4 | 2 | 1;
576 }
577 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000578 case KVM_CAP_PPC_RMA:
Paul Mackerrasc17b98c2014-12-03 13:30:38 +1100579 r = 0;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000580 break;
Michael Ellermane928e9c2015-03-20 20:39:41 +1100581 case KVM_CAP_PPC_HWRNG:
582 r = kvmppc_hwrng_present();
583 break;
Paul Mackerrasc9270132017-01-30 21:21:41 +1100584 case KVM_CAP_PPC_MMU_RADIX:
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +1100585 r = !!(hv_enabled && radix_enabled());
Paul Mackerrasc9270132017-01-30 21:21:41 +1100586 break;
587 case KVM_CAP_PPC_MMU_HASH_V3:
Paul Mackerras468808b2017-01-30 21:21:42 +1100588 r = !!(hv_enabled && !radix_enabled() &&
Paul Mackerrasc9270132017-01-30 21:21:41 +1100589 cpu_has_feature(CPU_FTR_ARCH_300));
590 break;
David Gibson54738c02011-06-29 00:22:41 +0000591#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200592 case KVM_CAP_SYNC_MMU:
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530593#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasc17b98c2014-12-03 13:30:38 +1100594 r = hv_enabled;
Alexander Graff4800b12012-08-07 10:24:14 +0200595#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
596 r = 1;
597#else
598 r = 0;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000599#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530600 break;
601#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasa2932922012-11-19 22:57:20 +0000602 case KVM_CAP_PPC_HTAB_FD:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530603 r = hv_enabled;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000604 break;
Alexander Graff4800b12012-08-07 10:24:14 +0200605#endif
Matt Evansb5434032011-12-07 16:55:57 +0000606 case KVM_CAP_NR_VCPUS:
607 /*
608 * Recommending a number of CPUs is somewhat arbitrary; we
609 * return the number of present CPUs for -HV (since a host
610 * will have secondary threads "offline"), and for other KVM
611 * implementations just count online CPUs.
612 */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530613 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530614 r = num_present_cpus();
615 else
616 r = num_online_cpus();
Matt Evansb5434032011-12-07 16:55:57 +0000617 break;
Nikunj A Dadhaniabfec5c2c2015-10-16 10:27:53 +0530618 case KVM_CAP_NR_MEMSLOTS:
619 r = KVM_USER_MEM_SLOTS;
620 break;
Matt Evansb5434032011-12-07 16:55:57 +0000621 case KVM_CAP_MAX_VCPUS:
622 r = KVM_MAX_VCPUS;
623 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000624#ifdef CONFIG_PPC_BOOK3S_64
625 case KVM_CAP_PPC_GET_SMMU_INFO:
626 r = 1;
627 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +1100628 case KVM_CAP_SPAPR_MULTITCE:
629 r = 1;
630 break;
David Gibson050f2332016-12-20 16:49:07 +1100631 case KVM_CAP_SPAPR_RESIZE_HPT:
Paul Mackerrasbcd3bb62017-02-18 08:30:44 +1100632 /* Disable this on POWER9 until code handles new HPTE format */
633 r = !!hv_enabled && !cpu_has_feature(CPU_FTR_ARCH_300);
David Gibson050f2332016-12-20 16:49:07 +1100634 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000635#endif
Aravinda Prasad134764e2017-05-11 16:32:48 +0530636#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
637 case KVM_CAP_PPC_FWNMI:
638 r = hv_enabled;
639 break;
640#endif
Sam Bobroff23528bb2016-07-20 13:41:36 +1000641 case KVM_CAP_PPC_HTM:
642 r = cpu_has_feature(CPU_FTR_TM_COMP) &&
643 is_kvmppc_hv_enabled(kvm);
644 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500645 default:
646 r = 0;
647 break;
648 }
649 return r;
650
651}
652
653long kvm_arch_dev_ioctl(struct file *filp,
654 unsigned int ioctl, unsigned long arg)
655{
656 return -EINVAL;
657}
658
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530659void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900660 struct kvm_memory_slot *dont)
661{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530662 kvmppc_core_free_memslot(kvm, free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900663}
664
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530665int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
666 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900667{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530668 return kvmppc_core_create_memslot(kvm, slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900669}
670
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200671int kvm_arch_prepare_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900672 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200673 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900674 enum kvm_mr_change change)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500675{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000676 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500677}
678
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200679void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200680 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900681 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200682 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900683 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200684{
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200685 kvmppc_core_commit_memory_region(kvm, mem, old, new);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200686}
687
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300688void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
689 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300690{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000691 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300692}
693
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500694struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
695{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600696 struct kvm_vcpu *vcpu;
697 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000698 if (!IS_ERR(vcpu)) {
699 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800700 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000701 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600702 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500703}
704
Dominik Dingel31928aa2014-12-04 15:47:07 +0100705void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200706{
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200707}
708
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500709void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
710{
Alexander Grafa5954052010-02-22 16:52:14 +0100711 /* Make sure we're not using the vcpu anymore */
712 hrtimer_cancel(&vcpu->arch.dec_timer);
Alexander Grafa5954052010-02-22 16:52:14 +0100713
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600714 kvmppc_remove_vcpu_debugfs(vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000715
716 switch (vcpu->arch.irq_type) {
717 case KVMPPC_IRQ_MPIC:
718 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
719 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000720 case KVMPPC_IRQ_XICS:
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000721 if (xive_enabled())
722 kvmppc_xive_cleanup_vcpu(vcpu);
723 else
724 kvmppc_xics_free_icp(vcpu);
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000725 break;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000726 }
727
Hollis Blancharddb93f572008-11-05 09:36:18 -0600728 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500729}
730
731void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
732{
733 kvm_arch_vcpu_free(vcpu);
734}
735
736int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
737{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600738 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500739}
740
Thomas Huth5358a962015-05-22 09:25:02 +0200741static enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
Alexander Graf544c6762009-11-02 12:02:31 +0000742{
743 struct kvm_vcpu *vcpu;
744
745 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
Mihai Caramand02d4d12014-09-01 17:19:56 +0300746 kvmppc_decrementer_func(vcpu);
Alexander Graf544c6762009-11-02 12:02:31 +0000747
748 return HRTIMER_NORESTART;
749}
750
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500751int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
752{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000753 int ret;
754
Alexander Graf544c6762009-11-02 12:02:31 +0000755 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
Alexander Graf544c6762009-11-02 12:02:31 +0000756 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000757 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500758
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530759#ifdef CONFIG_KVM_EXIT_TIMING
760 mutex_init(&vcpu->arch.exit_timing_lock);
761#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000762 ret = kvmppc_subarch_vcpu_init(vcpu);
763 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500764}
765
766void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
767{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600768 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000769 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500770}
771
772void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
773{
Scott Woodeab17672011-04-27 17:24:10 -0500774#ifdef CONFIG_BOOKE
775 /*
776 * vrsave (formerly usprg0) isn't used by Linux, but may
777 * be used by the guest.
778 *
779 * On non-booke this is associated with Altivec and
780 * is handled by code in book3s.c.
781 */
782 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
783#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600784 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500785}
786
787void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
788{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600789 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500790#ifdef CONFIG_BOOKE
791 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
792#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500793}
794
Suresh Warrier95767302016-08-19 15:35:47 +1000795/*
796 * irq_bypass_add_producer and irq_bypass_del_producer are only
797 * useful if the architecture supports PCI passthrough.
798 * irq_bypass_stop and irq_bypass_start are not needed and so
799 * kvm_ops are not defined for them.
800 */
801bool kvm_arch_has_irq_bypass(void)
802{
803 return ((kvmppc_hv_ops && kvmppc_hv_ops->irq_bypass_add_producer) ||
804 (kvmppc_pr_ops && kvmppc_pr_ops->irq_bypass_add_producer));
805}
806
807int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
808 struct irq_bypass_producer *prod)
809{
810 struct kvm_kernel_irqfd *irqfd =
811 container_of(cons, struct kvm_kernel_irqfd, consumer);
812 struct kvm *kvm = irqfd->kvm;
813
814 if (kvm->arch.kvm_ops->irq_bypass_add_producer)
815 return kvm->arch.kvm_ops->irq_bypass_add_producer(cons, prod);
816
817 return 0;
818}
819
820void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
821 struct irq_bypass_producer *prod)
822{
823 struct kvm_kernel_irqfd *irqfd =
824 container_of(cons, struct kvm_kernel_irqfd, consumer);
825 struct kvm *kvm = irqfd->kvm;
826
827 if (kvm->arch.kvm_ops->irq_bypass_del_producer)
828 kvm->arch.kvm_ops->irq_bypass_del_producer(cons, prod);
829}
830
Bin Lu6f63e812017-02-21 21:12:36 +0800831#ifdef CONFIG_VSX
832static inline int kvmppc_get_vsr_dword_offset(int index)
833{
834 int offset;
835
836 if ((index != 0) && (index != 1))
837 return -1;
838
839#ifdef __BIG_ENDIAN
840 offset = index;
841#else
842 offset = 1 - index;
843#endif
844
845 return offset;
846}
847
848static inline int kvmppc_get_vsr_word_offset(int index)
849{
850 int offset;
851
852 if ((index > 3) || (index < 0))
853 return -1;
854
855#ifdef __BIG_ENDIAN
856 offset = index;
857#else
858 offset = 3 - index;
859#endif
860 return offset;
861}
862
863static inline void kvmppc_set_vsr_dword(struct kvm_vcpu *vcpu,
864 u64 gpr)
865{
866 union kvmppc_one_reg val;
867 int offset = kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
868 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
869
870 if (offset == -1)
871 return;
872
873 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
874 val.vval = VCPU_VSX_VR(vcpu, index);
875 val.vsxval[offset] = gpr;
876 VCPU_VSX_VR(vcpu, index) = val.vval;
877 } else {
878 VCPU_VSX_FPR(vcpu, index, offset) = gpr;
879 }
880}
881
882static inline void kvmppc_set_vsr_dword_dump(struct kvm_vcpu *vcpu,
883 u64 gpr)
884{
885 union kvmppc_one_reg val;
886 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
887
888 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
889 val.vval = VCPU_VSX_VR(vcpu, index);
890 val.vsxval[0] = gpr;
891 val.vsxval[1] = gpr;
892 VCPU_VSX_VR(vcpu, index) = val.vval;
893 } else {
894 VCPU_VSX_FPR(vcpu, index, 0) = gpr;
895 VCPU_VSX_FPR(vcpu, index, 1) = gpr;
896 }
897}
898
899static inline void kvmppc_set_vsr_word(struct kvm_vcpu *vcpu,
900 u32 gpr32)
901{
902 union kvmppc_one_reg val;
903 int offset = kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
904 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
905 int dword_offset, word_offset;
906
907 if (offset == -1)
908 return;
909
910 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
911 val.vval = VCPU_VSX_VR(vcpu, index);
912 val.vsx32val[offset] = gpr32;
913 VCPU_VSX_VR(vcpu, index) = val.vval;
914 } else {
915 dword_offset = offset / 2;
916 word_offset = offset % 2;
917 val.vsxval[0] = VCPU_VSX_FPR(vcpu, index, dword_offset);
918 val.vsx32val[word_offset] = gpr32;
919 VCPU_VSX_FPR(vcpu, index, dword_offset) = val.vsxval[0];
920 }
921}
922#endif /* CONFIG_VSX */
923
924#ifdef CONFIG_PPC_FPU
925static inline u64 sp_to_dp(u32 fprs)
926{
927 u64 fprd;
928
929 preempt_disable();
930 enable_kernel_fp();
931 asm ("lfs%U1%X1 0,%1; stfd%U0%X0 0,%0" : "=m" (fprd) : "m" (fprs)
932 : "fr0");
933 preempt_enable();
934 return fprd;
935}
936
937static inline u32 dp_to_sp(u64 fprd)
938{
939 u32 fprs;
940
941 preempt_disable();
942 enable_kernel_fp();
943 asm ("lfd%U1%X1 0,%1; stfs%U0%X0 0,%0" : "=m" (fprs) : "m" (fprd)
944 : "fr0");
945 preempt_enable();
946 return fprs;
947}
948
949#else
950#define sp_to_dp(x) (x)
951#define dp_to_sp(x) (x)
952#endif /* CONFIG_PPC_FPU */
953
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500954static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
955 struct kvm_run *run)
956{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000957 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500958
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100959 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500960 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
961 return;
962 }
963
David Gibsond078eed2015-02-03 16:36:24 +1100964 if (!vcpu->arch.mmio_host_swabbed) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500965 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100966 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100967 case 4: gpr = *(u32 *)run->mmio.data; break;
968 case 2: gpr = *(u16 *)run->mmio.data; break;
969 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500970 }
971 } else {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500972 switch (run->mmio.len) {
David Gibsond078eed2015-02-03 16:36:24 +1100973 case 8: gpr = swab64(*(u64 *)run->mmio.data); break;
974 case 4: gpr = swab32(*(u32 *)run->mmio.data); break;
975 case 2: gpr = swab16(*(u16 *)run->mmio.data); break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100976 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500977 }
978 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100979
Bin Lu6f63e812017-02-21 21:12:36 +0800980 /* conversion between single and double precision */
981 if ((vcpu->arch.mmio_sp64_extend) && (run->mmio.len == 4))
982 gpr = sp_to_dp(gpr);
983
Alexander Graf3587d532010-02-19 11:00:30 +0100984 if (vcpu->arch.mmio_sign_extend) {
985 switch (run->mmio.len) {
986#ifdef CONFIG_PPC64
987 case 4:
988 gpr = (s64)(s32)gpr;
989 break;
990#endif
991 case 2:
992 gpr = (s64)(s16)gpr;
993 break;
994 case 1:
995 gpr = (s64)(s8)gpr;
996 break;
997 }
998 }
999
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001000 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
1001 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +01001002 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
1003 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001004 case KVM_MMIO_REG_FPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +11001005 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +01001006 break;
Alexander Graf287d5612010-04-01 15:33:21 +02001007#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001008 case KVM_MMIO_REG_QPR:
1009 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +01001010 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001011 case KVM_MMIO_REG_FQPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +11001012 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001013 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +01001014 break;
Alexander Graf287d5612010-04-01 15:33:21 +02001015#endif
Bin Lu6f63e812017-02-21 21:12:36 +08001016#ifdef CONFIG_VSX
1017 case KVM_MMIO_REG_VSX:
1018 if (vcpu->arch.mmio_vsx_copy_type == KVMPPC_VSX_COPY_DWORD)
1019 kvmppc_set_vsr_dword(vcpu, gpr);
1020 else if (vcpu->arch.mmio_vsx_copy_type == KVMPPC_VSX_COPY_WORD)
1021 kvmppc_set_vsr_word(vcpu, gpr);
1022 else if (vcpu->arch.mmio_vsx_copy_type ==
1023 KVMPPC_VSX_COPY_DWORD_LOAD_DUMP)
1024 kvmppc_set_vsr_dword_dump(vcpu, gpr);
1025 break;
1026#endif
Alexander Grafb104d062010-02-19 11:00:29 +01001027 default:
1028 BUG();
1029 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001030}
1031
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001032static int __kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1033 unsigned int rt, unsigned int bytes,
1034 int is_default_endian, int sign_extend)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001035{
Scott Wooded840ee2013-04-26 14:53:39 +00001036 int idx, ret;
David Gibsond078eed2015-02-03 16:36:24 +11001037 bool host_swabbed;
Cédric Le Goater73601772014-01-09 11:51:16 +01001038
David Gibsond078eed2015-02-03 16:36:24 +11001039 /* Pity C doesn't have a logical XOR operator */
Cédric Le Goater73601772014-01-09 11:51:16 +01001040 if (kvmppc_need_byteswap(vcpu)) {
David Gibsond078eed2015-02-03 16:36:24 +11001041 host_swabbed = is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001042 } else {
David Gibsond078eed2015-02-03 16:36:24 +11001043 host_swabbed = !is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001044 }
Scott Wooded840ee2013-04-26 14:53:39 +00001045
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001046 if (bytes > sizeof(run->mmio.data)) {
1047 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
1048 run->mmio.len);
1049 }
1050
1051 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1052 run->mmio.len = bytes;
1053 run->mmio.is_write = 0;
1054
1055 vcpu->arch.io_gpr = rt;
David Gibsond078eed2015-02-03 16:36:24 +11001056 vcpu->arch.mmio_host_swabbed = host_swabbed;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001057 vcpu->mmio_needed = 1;
1058 vcpu->mmio_is_write = 0;
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001059 vcpu->arch.mmio_sign_extend = sign_extend;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001060
Scott Wooded840ee2013-04-26 14:53:39 +00001061 idx = srcu_read_lock(&vcpu->kvm->srcu);
1062
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001063 ret = kvm_io_bus_read(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
Scott Wooded840ee2013-04-26 14:53:39 +00001064 bytes, &run->mmio.data);
1065
1066 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1067
1068 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +02001069 kvmppc_complete_mmio_load(vcpu, run);
1070 vcpu->mmio_needed = 0;
1071 return EMULATE_DONE;
1072 }
1073
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001074 return EMULATE_DO_MMIO;
1075}
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001076
1077int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1078 unsigned int rt, unsigned int bytes,
1079 int is_default_endian)
1080{
1081 return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 0);
1082}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301083EXPORT_SYMBOL_GPL(kvmppc_handle_load);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001084
Alexander Graf3587d532010-02-19 11:00:30 +01001085/* Same as above, but sign extends */
1086int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +01001087 unsigned int rt, unsigned int bytes,
1088 int is_default_endian)
Alexander Graf3587d532010-02-19 11:00:30 +01001089{
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001090 return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 1);
Alexander Graf3587d532010-02-19 11:00:30 +01001091}
1092
Bin Lu6f63e812017-02-21 21:12:36 +08001093#ifdef CONFIG_VSX
1094int kvmppc_handle_vsx_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1095 unsigned int rt, unsigned int bytes,
1096 int is_default_endian, int mmio_sign_extend)
1097{
1098 enum emulation_result emulated = EMULATE_DONE;
1099
1100 /* Currently, mmio_vsx_copy_nums only allowed to be less than 4 */
1101 if ( (vcpu->arch.mmio_vsx_copy_nums > 4) ||
1102 (vcpu->arch.mmio_vsx_copy_nums < 0) ) {
1103 return EMULATE_FAIL;
1104 }
1105
1106 while (vcpu->arch.mmio_vsx_copy_nums) {
1107 emulated = __kvmppc_handle_load(run, vcpu, rt, bytes,
1108 is_default_endian, mmio_sign_extend);
1109
1110 if (emulated != EMULATE_DONE)
1111 break;
1112
1113 vcpu->arch.paddr_accessed += run->mmio.len;
1114
1115 vcpu->arch.mmio_vsx_copy_nums--;
1116 vcpu->arch.mmio_vsx_offset++;
1117 }
1118 return emulated;
1119}
1120#endif /* CONFIG_VSX */
1121
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001122int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +01001123 u64 val, unsigned int bytes, int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001124{
1125 void *data = run->mmio.data;
Scott Wooded840ee2013-04-26 14:53:39 +00001126 int idx, ret;
David Gibsond078eed2015-02-03 16:36:24 +11001127 bool host_swabbed;
Cédric Le Goater73601772014-01-09 11:51:16 +01001128
David Gibsond078eed2015-02-03 16:36:24 +11001129 /* Pity C doesn't have a logical XOR operator */
Cédric Le Goater73601772014-01-09 11:51:16 +01001130 if (kvmppc_need_byteswap(vcpu)) {
David Gibsond078eed2015-02-03 16:36:24 +11001131 host_swabbed = is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001132 } else {
David Gibsond078eed2015-02-03 16:36:24 +11001133 host_swabbed = !is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001134 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001135
1136 if (bytes > sizeof(run->mmio.data)) {
1137 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
1138 run->mmio.len);
1139 }
1140
1141 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1142 run->mmio.len = bytes;
1143 run->mmio.is_write = 1;
1144 vcpu->mmio_needed = 1;
1145 vcpu->mmio_is_write = 1;
1146
Bin Lu6f63e812017-02-21 21:12:36 +08001147 if ((vcpu->arch.mmio_sp64_extend) && (bytes == 4))
1148 val = dp_to_sp(val);
1149
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001150 /* Store the value at the lowest bytes in 'data'. */
David Gibsond078eed2015-02-03 16:36:24 +11001151 if (!host_swabbed) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001152 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +01001153 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001154 case 4: *(u32 *)data = val; break;
1155 case 2: *(u16 *)data = val; break;
1156 case 1: *(u8 *)data = val; break;
1157 }
1158 } else {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001159 switch (bytes) {
David Gibsond078eed2015-02-03 16:36:24 +11001160 case 8: *(u64 *)data = swab64(val); break;
1161 case 4: *(u32 *)data = swab32(val); break;
1162 case 2: *(u16 *)data = swab16(val); break;
1163 case 1: *(u8 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001164 }
1165 }
1166
Scott Wooded840ee2013-04-26 14:53:39 +00001167 idx = srcu_read_lock(&vcpu->kvm->srcu);
1168
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001169 ret = kvm_io_bus_write(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
Scott Wooded840ee2013-04-26 14:53:39 +00001170 bytes, &run->mmio.data);
1171
1172 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1173
1174 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +02001175 vcpu->mmio_needed = 0;
1176 return EMULATE_DONE;
1177 }
1178
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001179 return EMULATE_DO_MMIO;
1180}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301181EXPORT_SYMBOL_GPL(kvmppc_handle_store);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001182
Bin Lu6f63e812017-02-21 21:12:36 +08001183#ifdef CONFIG_VSX
1184static inline int kvmppc_get_vsr_data(struct kvm_vcpu *vcpu, int rs, u64 *val)
1185{
1186 u32 dword_offset, word_offset;
1187 union kvmppc_one_reg reg;
1188 int vsx_offset = 0;
1189 int copy_type = vcpu->arch.mmio_vsx_copy_type;
1190 int result = 0;
1191
1192 switch (copy_type) {
1193 case KVMPPC_VSX_COPY_DWORD:
1194 vsx_offset =
1195 kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
1196
1197 if (vsx_offset == -1) {
1198 result = -1;
1199 break;
1200 }
1201
1202 if (!vcpu->arch.mmio_vsx_tx_sx_enabled) {
1203 *val = VCPU_VSX_FPR(vcpu, rs, vsx_offset);
1204 } else {
1205 reg.vval = VCPU_VSX_VR(vcpu, rs);
1206 *val = reg.vsxval[vsx_offset];
1207 }
1208 break;
1209
1210 case KVMPPC_VSX_COPY_WORD:
1211 vsx_offset =
1212 kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
1213
1214 if (vsx_offset == -1) {
1215 result = -1;
1216 break;
1217 }
1218
1219 if (!vcpu->arch.mmio_vsx_tx_sx_enabled) {
1220 dword_offset = vsx_offset / 2;
1221 word_offset = vsx_offset % 2;
1222 reg.vsxval[0] = VCPU_VSX_FPR(vcpu, rs, dword_offset);
1223 *val = reg.vsx32val[word_offset];
1224 } else {
1225 reg.vval = VCPU_VSX_VR(vcpu, rs);
1226 *val = reg.vsx32val[vsx_offset];
1227 }
1228 break;
1229
1230 default:
1231 result = -1;
1232 break;
1233 }
1234
1235 return result;
1236}
1237
1238int kvmppc_handle_vsx_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
1239 int rs, unsigned int bytes, int is_default_endian)
1240{
1241 u64 val;
1242 enum emulation_result emulated = EMULATE_DONE;
1243
1244 vcpu->arch.io_gpr = rs;
1245
1246 /* Currently, mmio_vsx_copy_nums only allowed to be less than 4 */
1247 if ( (vcpu->arch.mmio_vsx_copy_nums > 4) ||
1248 (vcpu->arch.mmio_vsx_copy_nums < 0) ) {
1249 return EMULATE_FAIL;
1250 }
1251
1252 while (vcpu->arch.mmio_vsx_copy_nums) {
1253 if (kvmppc_get_vsr_data(vcpu, rs, &val) == -1)
1254 return EMULATE_FAIL;
1255
1256 emulated = kvmppc_handle_store(run, vcpu,
1257 val, bytes, is_default_endian);
1258
1259 if (emulated != EMULATE_DONE)
1260 break;
1261
1262 vcpu->arch.paddr_accessed += run->mmio.len;
1263
1264 vcpu->arch.mmio_vsx_copy_nums--;
1265 vcpu->arch.mmio_vsx_offset++;
1266 }
1267
1268 return emulated;
1269}
1270
1271static int kvmppc_emulate_mmio_vsx_loadstore(struct kvm_vcpu *vcpu,
1272 struct kvm_run *run)
1273{
1274 enum emulation_result emulated = EMULATE_FAIL;
1275 int r;
1276
1277 vcpu->arch.paddr_accessed += run->mmio.len;
1278
1279 if (!vcpu->mmio_is_write) {
1280 emulated = kvmppc_handle_vsx_load(run, vcpu, vcpu->arch.io_gpr,
1281 run->mmio.len, 1, vcpu->arch.mmio_sign_extend);
1282 } else {
1283 emulated = kvmppc_handle_vsx_store(run, vcpu,
1284 vcpu->arch.io_gpr, run->mmio.len, 1);
1285 }
1286
1287 switch (emulated) {
1288 case EMULATE_DO_MMIO:
1289 run->exit_reason = KVM_EXIT_MMIO;
1290 r = RESUME_HOST;
1291 break;
1292 case EMULATE_FAIL:
1293 pr_info("KVM: MMIO emulation failed (VSX repeat)\n");
1294 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1295 run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
1296 r = RESUME_HOST;
1297 break;
1298 default:
1299 r = RESUME_GUEST;
1300 break;
1301 }
1302 return r;
1303}
1304#endif /* CONFIG_VSX */
1305
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001306int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1307{
1308 int r = 0;
1309 union kvmppc_one_reg val;
1310 int size;
1311
1312 size = one_reg_size(reg->id);
1313 if (size > sizeof(val))
1314 return -EINVAL;
1315
1316 r = kvmppc_get_one_reg(vcpu, reg->id, &val);
1317 if (r == -EINVAL) {
1318 r = 0;
1319 switch (reg->id) {
Mihai Caraman3840edc2014-08-20 16:36:25 +03001320#ifdef CONFIG_ALTIVEC
1321 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1322 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1323 r = -ENXIO;
1324 break;
1325 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001326 val.vval = vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0];
Mihai Caraman3840edc2014-08-20 16:36:25 +03001327 break;
1328 case KVM_REG_PPC_VSCR:
1329 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1330 r = -ENXIO;
1331 break;
1332 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001333 val = get_reg_val(reg->id, vcpu->arch.vr.vscr.u[3]);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001334 break;
1335 case KVM_REG_PPC_VRSAVE:
Greg Kurzb4d7f162016-01-13 18:28:17 +01001336 val = get_reg_val(reg->id, vcpu->arch.vrsave);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001337 break;
1338#endif /* CONFIG_ALTIVEC */
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001339 default:
1340 r = -EINVAL;
1341 break;
1342 }
1343 }
1344
1345 if (r)
1346 return r;
1347
1348 if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size))
1349 r = -EFAULT;
1350
1351 return r;
1352}
1353
1354int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1355{
1356 int r;
1357 union kvmppc_one_reg val;
1358 int size;
1359
1360 size = one_reg_size(reg->id);
1361 if (size > sizeof(val))
1362 return -EINVAL;
1363
1364 if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size))
1365 return -EFAULT;
1366
1367 r = kvmppc_set_one_reg(vcpu, reg->id, &val);
1368 if (r == -EINVAL) {
1369 r = 0;
1370 switch (reg->id) {
Mihai Caraman3840edc2014-08-20 16:36:25 +03001371#ifdef CONFIG_ALTIVEC
1372 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1373 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1374 r = -ENXIO;
1375 break;
1376 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001377 vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0] = val.vval;
Mihai Caraman3840edc2014-08-20 16:36:25 +03001378 break;
1379 case KVM_REG_PPC_VSCR:
1380 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1381 r = -ENXIO;
1382 break;
1383 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001384 vcpu->arch.vr.vscr.u[3] = set_reg_val(reg->id, val);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001385 break;
1386 case KVM_REG_PPC_VRSAVE:
Greg Kurzb4d7f162016-01-13 18:28:17 +01001387 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1388 r = -ENXIO;
1389 break;
1390 }
1391 vcpu->arch.vrsave = set_reg_val(reg->id, val);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001392 break;
1393#endif /* CONFIG_ALTIVEC */
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001394 default:
1395 r = -EINVAL;
1396 break;
1397 }
1398 }
1399
1400 return r;
1401}
1402
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001403int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
1404{
1405 int r;
1406 sigset_t sigsaved;
1407
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001408 if (vcpu->mmio_needed) {
Bin Lu6f63e812017-02-21 21:12:36 +08001409 vcpu->mmio_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001410 if (!vcpu->mmio_is_write)
1411 kvmppc_complete_mmio_load(vcpu, run);
Bin Lu6f63e812017-02-21 21:12:36 +08001412#ifdef CONFIG_VSX
1413 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1414 vcpu->arch.mmio_vsx_copy_nums--;
1415 vcpu->arch.mmio_vsx_offset++;
1416 }
1417
1418 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1419 r = kvmppc_emulate_mmio_vsx_loadstore(vcpu, run);
1420 if (r == RESUME_HOST) {
1421 vcpu->mmio_needed = 1;
1422 return r;
1423 }
1424 }
1425#endif
Alexander Grafad0a0482010-03-24 21:48:30 +01001426 } else if (vcpu->arch.osi_needed) {
1427 u64 *gprs = run->osi.gprs;
1428 int i;
1429
1430 for (i = 0; i < 32; i++)
1431 kvmppc_set_gpr(vcpu, i, gprs[i]);
1432 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001433 } else if (vcpu->arch.hcall_needed) {
1434 int i;
1435
1436 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
1437 for (i = 0; i < 9; ++i)
1438 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
1439 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +01001440#ifdef CONFIG_BOOKE
1441 } else if (vcpu->arch.epr_needed) {
1442 kvmppc_set_epr(vcpu, run->epr.epr);
1443 vcpu->arch.epr_needed = 0;
1444#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001445 }
1446
Bin Lu6f63e812017-02-21 21:12:36 +08001447 if (vcpu->sigset_active)
1448 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
1449
Paolo Bonzini460df4c2017-02-08 11:50:15 +01001450 if (run->immediate_exit)
1451 r = -EINTR;
1452 else
1453 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001454
1455 if (vcpu->sigset_active)
1456 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1457
1458 return r;
1459}
1460
1461int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
1462{
Paul Mackerras19ccb762011-07-23 17:42:46 +10001463 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +00001464 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001465 return 0;
1466 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -05001467
Paul Mackerras19ccb762011-07-23 17:42:46 +10001468 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -05001469
Scott Wooddfd4d472011-11-17 12:39:59 +00001470 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -05001471
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001472 return 0;
1473}
1474
Alexander Graf71fbfd52010-03-24 21:48:29 +01001475static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
1476 struct kvm_enable_cap *cap)
1477{
1478 int r;
1479
1480 if (cap->flags)
1481 return -EINVAL;
1482
1483 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +01001484 case KVM_CAP_PPC_OSI:
1485 r = 0;
1486 vcpu->arch.osi_enabled = true;
1487 break;
Alexander Graf930b4122011-08-08 17:29:42 +02001488 case KVM_CAP_PPC_PAPR:
1489 r = 0;
1490 vcpu->arch.papr_enabled = true;
1491 break;
Alexander Graf1c810632013-01-04 18:12:48 +01001492 case KVM_CAP_PPC_EPR:
1493 r = 0;
Scott Wood5df554ad2013-04-12 14:08:46 +00001494 if (cap->args[0])
1495 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
1496 else
1497 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +01001498 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +00001499#ifdef CONFIG_BOOKE
1500 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1501 r = 0;
1502 vcpu->arch.watchdog_enabled = true;
1503 break;
1504#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001505#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001506 case KVM_CAP_SW_TLB: {
1507 struct kvm_config_tlb cfg;
1508 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
1509
1510 r = -EFAULT;
1511 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
1512 break;
1513
1514 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
1515 break;
1516 }
1517#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +00001518#ifdef CONFIG_KVM_MPIC
1519 case KVM_CAP_IRQ_MPIC: {
Al Viro70abade2013-08-30 15:04:22 -04001520 struct fd f;
Scott Woodeb1e4f42013-04-12 14:08:47 +00001521 struct kvm_device *dev;
1522
1523 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -04001524 f = fdget(cap->args[0]);
1525 if (!f.file)
Scott Woodeb1e4f42013-04-12 14:08:47 +00001526 break;
1527
1528 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -04001529 dev = kvm_device_from_filp(f.file);
Scott Woodeb1e4f42013-04-12 14:08:47 +00001530 if (dev)
1531 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
1532
Al Viro70abade2013-08-30 15:04:22 -04001533 fdput(f);
Scott Woodeb1e4f42013-04-12 14:08:47 +00001534 break;
1535 }
1536#endif
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001537#ifdef CONFIG_KVM_XICS
1538 case KVM_CAP_IRQ_XICS: {
Al Viro70abade2013-08-30 15:04:22 -04001539 struct fd f;
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001540 struct kvm_device *dev;
1541
1542 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -04001543 f = fdget(cap->args[0]);
1544 if (!f.file)
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001545 break;
1546
1547 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -04001548 dev = kvm_device_from_filp(f.file);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001549 if (dev) {
1550 if (xive_enabled())
1551 r = kvmppc_xive_connect_vcpu(dev, vcpu, cap->args[1]);
1552 else
1553 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
1554 }
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001555
Al Viro70abade2013-08-30 15:04:22 -04001556 fdput(f);
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001557 break;
1558 }
1559#endif /* CONFIG_KVM_XICS */
Aravinda Prasad134764e2017-05-11 16:32:48 +05301560#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
1561 case KVM_CAP_PPC_FWNMI:
1562 r = -EINVAL;
1563 if (!is_kvmppc_hv_enabled(vcpu->kvm))
1564 break;
1565 r = 0;
1566 vcpu->kvm->arch.fwnmi_enabled = true;
1567 break;
1568#endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */
Alexander Graf71fbfd52010-03-24 21:48:29 +01001569 default:
1570 r = -EINVAL;
1571 break;
1572 }
1573
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001574 if (!r)
1575 r = kvmppc_sanity_check(vcpu);
1576
Alexander Graf71fbfd52010-03-24 21:48:29 +01001577 return r;
1578}
1579
Paul Mackerras34a75b02016-08-10 11:27:27 +10001580bool kvm_arch_intc_initialized(struct kvm *kvm)
1581{
1582#ifdef CONFIG_KVM_MPIC
1583 if (kvm->arch.mpic)
1584 return true;
1585#endif
1586#ifdef CONFIG_KVM_XICS
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001587 if (kvm->arch.xics || kvm->arch.xive)
Paul Mackerras34a75b02016-08-10 11:27:27 +10001588 return true;
1589#endif
1590 return false;
1591}
1592
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001593int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
1594 struct kvm_mp_state *mp_state)
1595{
1596 return -EINVAL;
1597}
1598
1599int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
1600 struct kvm_mp_state *mp_state)
1601{
1602 return -EINVAL;
1603}
1604
1605long kvm_arch_vcpu_ioctl(struct file *filp,
1606 unsigned int ioctl, unsigned long arg)
1607{
1608 struct kvm_vcpu *vcpu = filp->private_data;
1609 void __user *argp = (void __user *)arg;
1610 long r;
1611
Avi Kivity937366242010-05-13 12:35:17 +03001612 switch (ioctl) {
1613 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001614 struct kvm_interrupt irq;
1615 r = -EFAULT;
1616 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity937366242010-05-13 12:35:17 +03001617 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001618 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity937366242010-05-13 12:35:17 +03001619 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001620 }
Avi Kivity19483d12010-05-13 12:30:43 +03001621
Alexander Graf71fbfd52010-03-24 21:48:29 +01001622 case KVM_ENABLE_CAP:
1623 {
1624 struct kvm_enable_cap cap;
1625 r = -EFAULT;
1626 if (copy_from_user(&cap, argp, sizeof(cap)))
1627 goto out;
1628 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1629 break;
1630 }
Scott Wooddc83b8b2011-08-18 15:25:21 -05001631
Alexander Grafe24ed812011-09-14 10:02:41 +02001632 case KVM_SET_ONE_REG:
1633 case KVM_GET_ONE_REG:
1634 {
1635 struct kvm_one_reg reg;
1636 r = -EFAULT;
1637 if (copy_from_user(&reg, argp, sizeof(reg)))
1638 goto out;
1639 if (ioctl == KVM_SET_ONE_REG)
1640 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
1641 else
1642 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
1643 break;
1644 }
1645
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001646#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001647 case KVM_DIRTY_TLB: {
1648 struct kvm_dirty_tlb dirty;
1649 r = -EFAULT;
1650 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1651 goto out;
1652 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1653 break;
1654 }
1655#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001656 default:
1657 r = -EINVAL;
1658 }
1659
1660out:
1661 return r;
1662}
1663
Carsten Otte5b1c1492012-01-04 10:25:23 +01001664int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1665{
1666 return VM_FAULT_SIGBUS;
1667}
1668
Alexander Graf15711e92010-07-29 14:48:08 +02001669static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1670{
Stuart Yoder784bafa2012-07-03 05:48:51 +00001671 u32 inst_nop = 0x60000000;
1672#ifdef CONFIG_KVM_BOOKE_HV
1673 u32 inst_sc1 = 0x44000022;
Alexander Graf27431032014-04-24 13:39:16 +02001674 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
1675 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
1676 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
1677 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001678#else
Alexander Graf15711e92010-07-29 14:48:08 +02001679 u32 inst_lis = 0x3c000000;
1680 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +02001681 u32 inst_sc = 0x44000002;
1682 u32 inst_imm_mask = 0xffff;
1683
1684 /*
1685 * The hypercall to get into KVM from within guest context is as
1686 * follows:
1687 *
1688 * lis r0, r0, KVM_SC_MAGIC_R0@h
1689 * ori r0, KVM_SC_MAGIC_R0@l
1690 * sc
1691 * nop
1692 */
Alexander Graf27431032014-04-24 13:39:16 +02001693 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
1694 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
1695 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
1696 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001697#endif
Alexander Graf15711e92010-07-29 14:48:08 +02001698
Liu Yu-B132019202e072012-07-03 05:48:52 +00001699 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1700
Alexander Graf15711e92010-07-29 14:48:08 +02001701 return 0;
1702}
1703
Alexander Graf5efdb4b2013-04-17 00:37:57 +02001704int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1705 bool line_status)
1706{
1707 if (!irqchip_in_kernel(kvm))
1708 return -ENXIO;
1709
1710 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1711 irq_event->irq, irq_event->level,
1712 line_status);
1713 return 0;
1714}
1715
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001716
1717static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1718 struct kvm_enable_cap *cap)
1719{
1720 int r;
1721
1722 if (cap->flags)
1723 return -EINVAL;
1724
1725 switch (cap->cap) {
1726#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1727 case KVM_CAP_PPC_ENABLE_HCALL: {
1728 unsigned long hcall = cap->args[0];
1729
1730 r = -EINVAL;
1731 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
1732 cap->args[1] > 1)
1733 break;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001734 if (!kvmppc_book3s_hcall_implemented(kvm, hcall))
1735 break;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001736 if (cap->args[1])
1737 set_bit(hcall / 4, kvm->arch.enabled_hcalls);
1738 else
1739 clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
1740 r = 0;
1741 break;
1742 }
Paul Mackerras3c313522017-02-06 13:24:41 +11001743 case KVM_CAP_PPC_SMT: {
1744 unsigned long mode = cap->args[0];
1745 unsigned long flags = cap->args[1];
1746
1747 r = -EINVAL;
1748 if (kvm->arch.kvm_ops->set_smt_mode)
1749 r = kvm->arch.kvm_ops->set_smt_mode(kvm, mode, flags);
1750 break;
1751 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001752#endif
1753 default:
1754 r = -EINVAL;
1755 break;
1756 }
1757
1758 return r;
1759}
1760
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001761long kvm_arch_vm_ioctl(struct file *filp,
1762 unsigned int ioctl, unsigned long arg)
1763{
Scott Wood5df554ad2013-04-12 14:08:46 +00001764 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +02001765 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001766 long r;
1767
1768 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +02001769 case KVM_PPC_GET_PVINFO: {
1770 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +04001771 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +02001772 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1773 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1774 r = -EFAULT;
1775 goto out;
1776 }
1777
1778 break;
1779 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001780 case KVM_ENABLE_CAP:
1781 {
1782 struct kvm_enable_cap cap;
1783 r = -EFAULT;
1784 if (copy_from_user(&cap, argp, sizeof(cap)))
1785 goto out;
1786 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1787 break;
1788 }
Paul Mackerras76d837a2017-05-11 14:31:59 +10001789#ifdef CONFIG_SPAPR_TCE_IOMMU
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11001790 case KVM_CREATE_SPAPR_TCE_64: {
1791 struct kvm_create_spapr_tce_64 create_tce_64;
1792
1793 r = -EFAULT;
1794 if (copy_from_user(&create_tce_64, argp, sizeof(create_tce_64)))
1795 goto out;
1796 if (create_tce_64.flags) {
1797 r = -EINVAL;
1798 goto out;
1799 }
1800 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
1801 goto out;
1802 }
David Gibson54738c02011-06-29 00:22:41 +00001803 case KVM_CREATE_SPAPR_TCE: {
1804 struct kvm_create_spapr_tce create_tce;
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11001805 struct kvm_create_spapr_tce_64 create_tce_64;
David Gibson54738c02011-06-29 00:22:41 +00001806
1807 r = -EFAULT;
1808 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1809 goto out;
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11001810
1811 create_tce_64.liobn = create_tce.liobn;
1812 create_tce_64.page_shift = IOMMU_PAGE_SHIFT_4K;
1813 create_tce_64.offset = 0;
1814 create_tce_64.size = create_tce.window_size >>
1815 IOMMU_PAGE_SHIFT_4K;
1816 create_tce_64.flags = 0;
1817 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
David Gibson54738c02011-06-29 00:22:41 +00001818 goto out;
1819 }
Paul Mackerras76d837a2017-05-11 14:31:59 +10001820#endif
1821#ifdef CONFIG_PPC_BOOK3S_64
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001822 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001823 struct kvm_ppc_smmu_info info;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301824 struct kvm *kvm = filp->private_data;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001825
1826 memset(&info, 0, sizeof(info));
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301827 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001828 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1829 r = -EFAULT;
1830 break;
1831 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001832 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1833 struct kvm *kvm = filp->private_data;
1834
1835 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1836 break;
1837 }
Paul Mackerrasc9270132017-01-30 21:21:41 +11001838 case KVM_PPC_CONFIGURE_V3_MMU: {
1839 struct kvm *kvm = filp->private_data;
1840 struct kvm_ppc_mmuv3_cfg cfg;
1841
1842 r = -EINVAL;
1843 if (!kvm->arch.kvm_ops->configure_mmu)
1844 goto out;
1845 r = -EFAULT;
1846 if (copy_from_user(&cfg, argp, sizeof(cfg)))
1847 goto out;
1848 r = kvm->arch.kvm_ops->configure_mmu(kvm, &cfg);
1849 break;
1850 }
1851 case KVM_PPC_GET_RMMU_INFO: {
1852 struct kvm *kvm = filp->private_data;
1853 struct kvm_ppc_rmmu_info info;
1854
1855 r = -EINVAL;
1856 if (!kvm->arch.kvm_ops->get_rmmu_info)
1857 goto out;
1858 r = kvm->arch.kvm_ops->get_rmmu_info(kvm, &info);
1859 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1860 r = -EFAULT;
1861 break;
1862 }
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301863 default: {
1864 struct kvm *kvm = filp->private_data;
1865 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1866 }
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301867#else /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001868 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001869 r = -ENOTTY;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301870#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001871 }
Alexander Graf15711e92010-07-29 14:48:08 +02001872out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001873 return r;
1874}
1875
Scott Wood043cc4d2011-12-20 15:34:20 +00001876static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1877static unsigned long nr_lpids;
1878
1879long kvmppc_alloc_lpid(void)
1880{
1881 long lpid;
1882
1883 do {
1884 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1885 if (lpid >= nr_lpids) {
1886 pr_err("%s: No LPIDs free\n", __func__);
1887 return -ENOMEM;
1888 }
1889 } while (test_and_set_bit(lpid, lpid_inuse));
1890
1891 return lpid;
1892}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301893EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001894
1895void kvmppc_claim_lpid(long lpid)
1896{
1897 set_bit(lpid, lpid_inuse);
1898}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301899EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001900
1901void kvmppc_free_lpid(long lpid)
1902{
1903 clear_bit(lpid, lpid_inuse);
1904}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301905EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001906
1907void kvmppc_init_lpid(unsigned long nr_lpids_param)
1908{
1909 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1910 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1911}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301912EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001913
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001914int kvm_arch_init(void *opaque)
1915{
1916 return 0;
1917}
1918
Paolo Bonzini478d66862014-08-05 11:29:07 +02001919EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ppc_instr);