blob: ccaa7a407c15c42d8dffe7c32ad4603079647062 [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{
Liu Yu-B132019202e072012-07-03 05:48:52 +000058 return !!(v->arch.pending_exceptions) ||
Scott Wooddfd4d472011-11-17 12:39:59 +000059 v->requests;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050060}
61
Christoffer Dallb6d33832012-03-08 16:44:24 -050062int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
63{
64 return 1;
65}
66
Alexander Graf03d25c52012-08-10 12:28:50 +020067/*
68 * Common checks before entering the guest world. Call with interrupts
69 * disabled.
70 *
Alexander Graf7ee78852012-08-13 12:44:41 +020071 * returns:
72 *
73 * == 1 if we're ready to go into guest state
74 * <= 0 if we need to go back to the host with return value
Alexander Graf03d25c52012-08-10 12:28:50 +020075 */
76int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
77{
Scott Wood6c85f522014-01-09 19:18:40 -060078 int r;
Alexander Graf03d25c52012-08-10 12:28:50 +020079
Scott Wood6c85f522014-01-09 19:18:40 -060080 WARN_ON(irqs_disabled());
81 hard_irq_disable();
82
Alexander Graf03d25c52012-08-10 12:28:50 +020083 while (true) {
84 if (need_resched()) {
85 local_irq_enable();
86 cond_resched();
Scott Wood6c85f522014-01-09 19:18:40 -060087 hard_irq_disable();
Alexander Graf03d25c52012-08-10 12:28:50 +020088 continue;
89 }
90
91 if (signal_pending(current)) {
Alexander Graf7ee78852012-08-13 12:44:41 +020092 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
93 vcpu->run->exit_reason = KVM_EXIT_INTR;
94 r = -EINTR;
Alexander Graf03d25c52012-08-10 12:28:50 +020095 break;
96 }
97
Scott Wood5bd1cf12012-08-22 15:03:50 +000098 vcpu->mode = IN_GUEST_MODE;
99
100 /*
101 * Reading vcpu->requests must happen after setting vcpu->mode,
102 * so we don't miss a request because the requester sees
103 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
104 * before next entering the guest (and thus doesn't IPI).
Lan Tianyu489153c2016-03-13 11:10:30 +0800105 * This also orders the write to mode from any reads
106 * to the page tables done while the VCPU is running.
107 * Please see the comment in kvm_flush_remote_tlbs.
Scott Wood5bd1cf12012-08-22 15:03:50 +0000108 */
Alexander Graf03d25c52012-08-10 12:28:50 +0200109 smp_mb();
Scott Wood5bd1cf12012-08-22 15:03:50 +0000110
Alexander Graf03d25c52012-08-10 12:28:50 +0200111 if (vcpu->requests) {
112 /* Make sure we process requests preemptable */
113 local_irq_enable();
114 trace_kvm_check_requests(vcpu);
Alexander Graf7c973a22012-08-13 12:50:35 +0200115 r = kvmppc_core_check_requests(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -0600116 hard_irq_disable();
Alexander Graf7c973a22012-08-13 12:50:35 +0200117 if (r > 0)
118 continue;
119 break;
Alexander Graf03d25c52012-08-10 12:28:50 +0200120 }
121
122 if (kvmppc_core_prepare_to_enter(vcpu)) {
123 /* interrupts got enabled in between, so we
124 are back at square 1 */
125 continue;
126 }
127
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200128 guest_enter_irqoff();
Scott Wood6c85f522014-01-09 19:18:40 -0600129 return 1;
Alexander Graf03d25c52012-08-10 12:28:50 +0200130 }
131
Scott Wood6c85f522014-01-09 19:18:40 -0600132 /* return to host */
133 local_irq_enable();
Alexander Graf03d25c52012-08-10 12:28:50 +0200134 return r;
135}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530136EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
Alexander Graf03d25c52012-08-10 12:28:50 +0200137
Alexander Graf5deb8e72014-04-24 13:46:24 +0200138#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
139static void kvmppc_swab_shared(struct kvm_vcpu *vcpu)
140{
141 struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared;
142 int i;
143
144 shared->sprg0 = swab64(shared->sprg0);
145 shared->sprg1 = swab64(shared->sprg1);
146 shared->sprg2 = swab64(shared->sprg2);
147 shared->sprg3 = swab64(shared->sprg3);
148 shared->srr0 = swab64(shared->srr0);
149 shared->srr1 = swab64(shared->srr1);
150 shared->dar = swab64(shared->dar);
151 shared->msr = swab64(shared->msr);
152 shared->dsisr = swab32(shared->dsisr);
153 shared->int_pending = swab32(shared->int_pending);
154 for (i = 0; i < ARRAY_SIZE(shared->sr); i++)
155 shared->sr[i] = swab32(shared->sr[i]);
156}
157#endif
158
Alexander Graf2a342ed2010-07-29 14:47:48 +0200159int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
160{
161 int nr = kvmppc_get_gpr(vcpu, 11);
162 int r;
163 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
164 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
165 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
166 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
167 unsigned long r2 = 0;
168
Alexander Graf5deb8e72014-04-24 13:46:24 +0200169 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
Alexander Graf2a342ed2010-07-29 14:47:48 +0200170 /* 32 bit mode */
171 param1 &= 0xffffffff;
172 param2 &= 0xffffffff;
173 param3 &= 0xffffffff;
174 param4 &= 0xffffffff;
175 }
176
177 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000178 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200179 {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200180#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
181 /* Book3S can be little endian, find it out here */
182 int shared_big_endian = true;
183 if (vcpu->arch.intr_msr & MSR_LE)
184 shared_big_endian = false;
185 if (shared_big_endian != vcpu->arch.shared_big_endian)
186 kvmppc_swab_shared(vcpu);
187 vcpu->arch.shared_big_endian = shared_big_endian;
188#endif
189
Alexander Graff3383cf2014-05-12 01:08:32 +0200190 if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) {
191 /*
192 * Older versions of the Linux magic page code had
193 * a bug where they would map their trampoline code
194 * NX. If that's the case, remove !PR NX capability.
195 */
196 vcpu->arch.disable_kernel_nx = true;
197 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
198 }
199
200 vcpu->arch.magic_page_pa = param1 & ~0xfffULL;
201 vcpu->arch.magic_page_ea = param2 & ~0xfffULL;
Alexander Graf5fc87402010-07-29 14:47:55 +0200202
Alexander Graf89b68c92014-07-13 16:37:12 +0200203#ifdef CONFIG_PPC_64K_PAGES
204 /*
205 * Make sure our 4k magic page is in the same window of a 64k
206 * page within the guest and within the host's page.
207 */
208 if ((vcpu->arch.magic_page_pa & 0xf000) !=
209 ((ulong)vcpu->arch.shared & 0xf000)) {
210 void *old_shared = vcpu->arch.shared;
211 ulong shared = (ulong)vcpu->arch.shared;
212 void *new_shared;
213
214 shared &= PAGE_MASK;
215 shared |= vcpu->arch.magic_page_pa & 0xf000;
216 new_shared = (void*)shared;
217 memcpy(new_shared, old_shared, 0x1000);
218 vcpu->arch.shared = new_shared;
219 }
220#endif
221
Scott Woodb5904972011-11-08 18:23:30 -0600222 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200223
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000224 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200225 break;
226 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000227 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
228 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000229#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Alexander Graf5fc87402010-07-29 14:47:55 +0200230 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
231#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200232
233 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200234 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000235 case EV_HCALL_TOKEN(EV_IDLE):
236 r = EV_SUCCESS;
237 kvm_vcpu_block(vcpu);
Radim Krčmář72875d82017-04-26 22:32:19 +0200238 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Liu Yu-B132019202e072012-07-03 05:48:52 +0000239 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200240 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000241 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200242 break;
243 }
244
Alexander Graf7508e162010-08-03 11:32:56 +0200245 kvmppc_set_gpr(vcpu, 4, r2);
246
Alexander Graf2a342ed2010-07-29 14:47:48 +0200247 return r;
248}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530249EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500250
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200251int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
252{
253 int r = false;
254
255 /* We have to know what CPU to virtualize */
256 if (!vcpu->arch.pvr)
257 goto out;
258
259 /* PAPR only works with book3s_64 */
260 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
261 goto out;
262
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200263 /* HV KVM can only do PAPR mode for now */
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530264 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200265 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200266
Scott Woodd30f6e42011-12-20 15:34:43 +0000267#ifdef CONFIG_KVM_BOOKE_HV
268 if (!cpu_has_feature(CPU_FTR_EMB_HV))
269 goto out;
270#endif
271
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200272 r = true;
273
274out:
275 vcpu->arch.sane = r;
276 return r ? 0 : -EINVAL;
277}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530278EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200279
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500280int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
281{
282 enum emulation_result er;
283 int r;
284
Alexander Grafd69614a2014-06-18 14:53:49 +0200285 er = kvmppc_emulate_loadstore(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500286 switch (er) {
287 case EMULATE_DONE:
288 /* Future optimization: only reload non-volatiles if they were
289 * actually modified. */
290 r = RESUME_GUEST_NV;
291 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300292 case EMULATE_AGAIN:
293 r = RESUME_GUEST;
294 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500295 case EMULATE_DO_MMIO:
296 run->exit_reason = KVM_EXIT_MMIO;
297 /* We must reload nonvolatiles because "update" load/store
298 * instructions modify register state. */
299 /* Future optimization: only reload non-volatiles if they were
300 * actually modified. */
301 r = RESUME_HOST_NV;
302 break;
303 case EMULATE_FAIL:
Mihai Caraman51f04722014-07-23 19:06:21 +0300304 {
305 u32 last_inst;
306
Alexander Graf8d0eff62014-09-10 14:37:29 +0200307 kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500308 /* XXX Deliver Program interrupt to guest. */
Mihai Caraman51f04722014-07-23 19:06:21 +0300309 pr_emerg("%s: emulation failed (%08x)\n", __func__, last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500310 r = RESUME_HOST;
311 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300312 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500313 default:
Alexander Graf5a331692012-12-14 23:46:03 +0100314 WARN_ON(1);
315 r = RESUME_GUEST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500316 }
317
318 return r;
319}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530320EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500321
Alexander Graf35c4a732014-06-20 13:58:16 +0200322int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
323 bool data)
324{
Alexander Grafc12fb432014-06-20 14:43:36 +0200325 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
Alexander Graf35c4a732014-06-20 13:58:16 +0200326 struct kvmppc_pte pte;
327 int r;
328
329 vcpu->stat.st++;
330
331 r = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
332 XLATE_WRITE, &pte);
333 if (r < 0)
334 return r;
335
336 *eaddr = pte.raddr;
337
338 if (!pte.may_write)
339 return -EPERM;
340
Alexander Grafc12fb432014-06-20 14:43:36 +0200341 /* Magic page override */
342 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
343 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
344 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
345 void *magic = vcpu->arch.shared;
346 magic += pte.eaddr & 0xfff;
347 memcpy(magic, ptr, size);
348 return EMULATE_DONE;
349 }
350
Alexander Graf35c4a732014-06-20 13:58:16 +0200351 if (kvm_write_guest(vcpu->kvm, pte.raddr, ptr, size))
352 return EMULATE_DO_MMIO;
353
354 return EMULATE_DONE;
355}
356EXPORT_SYMBOL_GPL(kvmppc_st);
357
358int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
359 bool data)
360{
Alexander Grafc12fb432014-06-20 14:43:36 +0200361 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
Alexander Graf35c4a732014-06-20 13:58:16 +0200362 struct kvmppc_pte pte;
Alexander Graf35c4a732014-06-20 13:58:16 +0200363 int rc;
364
365 vcpu->stat.ld++;
366
367 rc = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
368 XLATE_READ, &pte);
369 if (rc)
370 return rc;
371
372 *eaddr = pte.raddr;
373
374 if (!pte.may_read)
375 return -EPERM;
376
377 if (!data && !pte.may_execute)
378 return -ENOEXEC;
379
Alexander Grafc12fb432014-06-20 14:43:36 +0200380 /* Magic page override */
381 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
382 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
383 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
384 void *magic = vcpu->arch.shared;
385 magic += pte.eaddr & 0xfff;
386 memcpy(ptr, magic, size);
387 return EMULATE_DONE;
388 }
389
Alexander Grafc45c5512014-06-20 14:17:30 +0200390 if (kvm_read_guest(vcpu->kvm, pte.raddr, ptr, size))
391 return EMULATE_DO_MMIO;
Alexander Graf35c4a732014-06-20 13:58:16 +0200392
393 return EMULATE_DONE;
Alexander Graf35c4a732014-06-20 13:58:16 +0200394}
395EXPORT_SYMBOL_GPL(kvmppc_ld);
396
Radim Krčmář13a34e02014-08-28 15:13:03 +0200397int kvm_arch_hardware_enable(void)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500398{
Alexander Graf10474ae2009-09-15 11:37:46 +0200399 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500400}
401
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500402int kvm_arch_hardware_setup(void)
403{
404 return 0;
405}
406
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500407void kvm_arch_check_processor_compat(void *rtn)
408{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600409 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500410}
411
Carsten Ottee08b9632012-01-04 10:25:20 +0100412int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500413{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530414 struct kvmppc_ops *kvm_ops = NULL;
415 /*
416 * if we have both HV and PR enabled, default is HV
417 */
418 if (type == 0) {
419 if (kvmppc_hv_ops)
420 kvm_ops = kvmppc_hv_ops;
421 else
422 kvm_ops = kvmppc_pr_ops;
423 if (!kvm_ops)
424 goto err_out;
425 } else if (type == KVM_VM_PPC_HV) {
426 if (!kvmppc_hv_ops)
427 goto err_out;
428 kvm_ops = kvmppc_hv_ops;
429 } else if (type == KVM_VM_PPC_PR) {
430 if (!kvmppc_pr_ops)
431 goto err_out;
432 kvm_ops = kvmppc_pr_ops;
433 } else
434 goto err_out;
Carsten Ottee08b9632012-01-04 10:25:20 +0100435
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530436 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
437 return -ENOENT;
438
439 kvm->arch.kvm_ops = kvm_ops;
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000440 return kvmppc_core_init_vm(kvm);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530441err_out:
442 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500443}
444
Luiz Capitulino235539b2016-09-07 14:47:23 -0400445bool kvm_arch_has_vcpu_debugfs(void)
446{
447 return false;
448}
449
450int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
451{
452 return 0;
453}
454
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100455void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500456{
457 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300458 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500459
Suresh E. Warriere17769e2015-12-21 16:22:51 -0600460#ifdef CONFIG_KVM_XICS
461 /*
462 * We call kick_all_cpus_sync() to ensure that all
463 * CPUs have executed any pending IPIs before we
464 * continue and free VCPUs structures below.
465 */
466 if (is_kvmppc_hv_enabled(kvm))
467 kick_all_cpus_sync();
468#endif
469
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300470 kvm_for_each_vcpu(i, vcpu, kvm)
471 kvm_arch_vcpu_free(vcpu);
472
473 mutex_lock(&kvm->lock);
474 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
475 kvm->vcpus[i] = NULL;
476
477 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000478
479 kvmppc_core_destroy_vm(kvm);
480
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300481 mutex_unlock(&kvm->lock);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530482
483 /* drop the module reference */
484 module_put(kvm->arch.kvm_ops->owner);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500485}
486
Alexander Graf784aa3d2014-07-14 18:27:35 +0200487int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500488{
489 int r;
Alexander Graf7a587772014-07-14 18:55:19 +0200490 /* Assume we're using HV mode when the HV module is loaded */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530491 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500492
Alexander Graf7a587772014-07-14 18:55:19 +0200493 if (kvm) {
494 /*
495 * Hooray - we know which VM type we're running on. Depend on
496 * that rather than the guess above.
497 */
498 hv_enabled = is_kvmppc_hv_enabled(kvm);
499 }
500
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500501 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500502#ifdef CONFIG_BOOKE
503 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000504 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Alexander Graf1c810632013-01-04 18:12:48 +0100505 case KVM_CAP_PPC_EPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500506#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000507 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200508 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200509 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500510#endif
Alexander Graf18978762010-03-24 21:48:18 +0100511 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200512 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100513 case KVM_CAP_ENABLE_CAP:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000514 case KVM_CAP_ENABLE_CAP_VM:
Alexander Grafe24ed812011-09-14 10:02:41 +0200515 case KVM_CAP_ONE_REG:
Alexander Graf0e673fb2012-10-09 00:06:20 +0200516 case KVM_CAP_IOEVENTFD:
Scott Wood5df554ad2013-04-12 14:08:46 +0000517 case KVM_CAP_DEVICE_CTRL:
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100518 case KVM_CAP_IMMEDIATE_EXIT:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000519 r = 1;
520 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000521 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100522 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200523 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000524#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500525 case KVM_CAP_SW_TLB:
526#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530527 /* We support this only for PR */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530528 r = !hv_enabled;
Alexander Grafe15a1132009-11-30 03:02:02 +0000529 break;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530530#ifdef CONFIG_KVM_MPIC
531 case KVM_CAP_IRQ_MPIC:
532 r = 1;
533 break;
534#endif
535
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000536#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000537 case KVM_CAP_SPAPR_TCE:
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +1100538 case KVM_CAP_SPAPR_TCE_64:
Alexey Kardashevskiy121f80b2017-03-22 15:21:56 +1100539 /* fallthrough */
540 case KVM_CAP_SPAPR_TCE_VFIO:
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000541 case KVM_CAP_PPC_RTAS:
Alexander Graff2e91042014-05-22 17:40:15 +0200542 case KVM_CAP_PPC_FIXUP_HCALL:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000543 case KVM_CAP_PPC_ENABLE_HCALL:
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000544#ifdef CONFIG_KVM_XICS
545 case KVM_CAP_IRQ_XICS:
546#endif
David Gibson54738c02011-06-29 00:22:41 +0000547 r = 1;
548 break;
David Gibsona8acaec2016-11-23 16:14:07 +1100549
550 case KVM_CAP_PPC_ALLOC_HTAB:
551 r = hv_enabled;
552 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000553#endif /* CONFIG_PPC_BOOK3S_64 */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530554#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras371fefd2011-06-29 00:23:08 +0000555 case KVM_CAP_PPC_SMT:
Paul Mackerras45c940b2016-11-18 17:43:30 +1100556 r = 0;
Paul Mackerras57900692017-05-16 16:41:20 +1000557 if (kvm) {
558 if (kvm->arch.emul_smt_mode > 1)
559 r = kvm->arch.emul_smt_mode;
560 else
561 r = kvm->arch.smt_mode;
562 } else if (hv_enabled) {
Paul Mackerras45c940b2016-11-18 17:43:30 +1100563 if (cpu_has_feature(CPU_FTR_ARCH_300))
564 r = 1;
565 else
566 r = threads_per_subcore;
567 }
Paul Mackerras371fefd2011-06-29 00:23:08 +0000568 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000569 case KVM_CAP_PPC_RMA:
Paul Mackerrasc17b98c2014-12-03 13:30:38 +1100570 r = 0;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000571 break;
Michael Ellermane928e9c2015-03-20 20:39:41 +1100572 case KVM_CAP_PPC_HWRNG:
573 r = kvmppc_hwrng_present();
574 break;
Paul Mackerrasc9270132017-01-30 21:21:41 +1100575 case KVM_CAP_PPC_MMU_RADIX:
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +1100576 r = !!(hv_enabled && radix_enabled());
Paul Mackerrasc9270132017-01-30 21:21:41 +1100577 break;
578 case KVM_CAP_PPC_MMU_HASH_V3:
Paul Mackerras468808b2017-01-30 21:21:42 +1100579 r = !!(hv_enabled && !radix_enabled() &&
Paul Mackerrasc9270132017-01-30 21:21:41 +1100580 cpu_has_feature(CPU_FTR_ARCH_300));
581 break;
David Gibson54738c02011-06-29 00:22:41 +0000582#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200583 case KVM_CAP_SYNC_MMU:
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530584#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasc17b98c2014-12-03 13:30:38 +1100585 r = hv_enabled;
Alexander Graff4800b12012-08-07 10:24:14 +0200586#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
587 r = 1;
588#else
589 r = 0;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000590#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530591 break;
592#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasa2932922012-11-19 22:57:20 +0000593 case KVM_CAP_PPC_HTAB_FD:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530594 r = hv_enabled;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000595 break;
Alexander Graff4800b12012-08-07 10:24:14 +0200596#endif
Matt Evansb5434032011-12-07 16:55:57 +0000597 case KVM_CAP_NR_VCPUS:
598 /*
599 * Recommending a number of CPUs is somewhat arbitrary; we
600 * return the number of present CPUs for -HV (since a host
601 * will have secondary threads "offline"), and for other KVM
602 * implementations just count online CPUs.
603 */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530604 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530605 r = num_present_cpus();
606 else
607 r = num_online_cpus();
Matt Evansb5434032011-12-07 16:55:57 +0000608 break;
Nikunj A Dadhaniabfec5c2c2015-10-16 10:27:53 +0530609 case KVM_CAP_NR_MEMSLOTS:
610 r = KVM_USER_MEM_SLOTS;
611 break;
Matt Evansb5434032011-12-07 16:55:57 +0000612 case KVM_CAP_MAX_VCPUS:
613 r = KVM_MAX_VCPUS;
614 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000615#ifdef CONFIG_PPC_BOOK3S_64
616 case KVM_CAP_PPC_GET_SMMU_INFO:
617 r = 1;
618 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +1100619 case KVM_CAP_SPAPR_MULTITCE:
620 r = 1;
621 break;
David Gibson050f2332016-12-20 16:49:07 +1100622 case KVM_CAP_SPAPR_RESIZE_HPT:
Paul Mackerrasbcd3bb62017-02-18 08:30:44 +1100623 /* Disable this on POWER9 until code handles new HPTE format */
624 r = !!hv_enabled && !cpu_has_feature(CPU_FTR_ARCH_300);
David Gibson050f2332016-12-20 16:49:07 +1100625 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000626#endif
Aravinda Prasad134764e2017-05-11 16:32:48 +0530627#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
628 case KVM_CAP_PPC_FWNMI:
629 r = hv_enabled;
630 break;
631#endif
Sam Bobroff23528bb2016-07-20 13:41:36 +1000632 case KVM_CAP_PPC_HTM:
633 r = cpu_has_feature(CPU_FTR_TM_COMP) &&
634 is_kvmppc_hv_enabled(kvm);
635 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500636 default:
637 r = 0;
638 break;
639 }
640 return r;
641
642}
643
644long kvm_arch_dev_ioctl(struct file *filp,
645 unsigned int ioctl, unsigned long arg)
646{
647 return -EINVAL;
648}
649
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530650void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900651 struct kvm_memory_slot *dont)
652{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530653 kvmppc_core_free_memslot(kvm, free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900654}
655
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530656int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
657 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900658{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530659 return kvmppc_core_create_memslot(kvm, slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900660}
661
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200662int kvm_arch_prepare_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900663 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200664 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900665 enum kvm_mr_change change)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500666{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000667 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500668}
669
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200670void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200671 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900672 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200673 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900674 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200675{
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200676 kvmppc_core_commit_memory_region(kvm, mem, old, new);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200677}
678
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300679void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
680 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300681{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000682 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300683}
684
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500685struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
686{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600687 struct kvm_vcpu *vcpu;
688 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000689 if (!IS_ERR(vcpu)) {
690 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800691 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000692 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600693 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500694}
695
Dominik Dingel31928aa2014-12-04 15:47:07 +0100696void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200697{
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200698}
699
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500700void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
701{
Alexander Grafa5954052010-02-22 16:52:14 +0100702 /* Make sure we're not using the vcpu anymore */
703 hrtimer_cancel(&vcpu->arch.dec_timer);
Alexander Grafa5954052010-02-22 16:52:14 +0100704
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600705 kvmppc_remove_vcpu_debugfs(vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000706
707 switch (vcpu->arch.irq_type) {
708 case KVMPPC_IRQ_MPIC:
709 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
710 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000711 case KVMPPC_IRQ_XICS:
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000712 if (xive_enabled())
713 kvmppc_xive_cleanup_vcpu(vcpu);
714 else
715 kvmppc_xics_free_icp(vcpu);
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000716 break;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000717 }
718
Hollis Blancharddb93f572008-11-05 09:36:18 -0600719 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500720}
721
722void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
723{
724 kvm_arch_vcpu_free(vcpu);
725}
726
727int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
728{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600729 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500730}
731
Thomas Huth5358a962015-05-22 09:25:02 +0200732static enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
Alexander Graf544c6762009-11-02 12:02:31 +0000733{
734 struct kvm_vcpu *vcpu;
735
736 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
Mihai Caramand02d4d12014-09-01 17:19:56 +0300737 kvmppc_decrementer_func(vcpu);
Alexander Graf544c6762009-11-02 12:02:31 +0000738
739 return HRTIMER_NORESTART;
740}
741
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500742int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
743{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000744 int ret;
745
Alexander Graf544c6762009-11-02 12:02:31 +0000746 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
Alexander Graf544c6762009-11-02 12:02:31 +0000747 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000748 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500749
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530750#ifdef CONFIG_KVM_EXIT_TIMING
751 mutex_init(&vcpu->arch.exit_timing_lock);
752#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000753 ret = kvmppc_subarch_vcpu_init(vcpu);
754 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500755}
756
757void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
758{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600759 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000760 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500761}
762
763void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
764{
Scott Woodeab17672011-04-27 17:24:10 -0500765#ifdef CONFIG_BOOKE
766 /*
767 * vrsave (formerly usprg0) isn't used by Linux, but may
768 * be used by the guest.
769 *
770 * On non-booke this is associated with Altivec and
771 * is handled by code in book3s.c.
772 */
773 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
774#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600775 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500776}
777
778void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
779{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600780 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500781#ifdef CONFIG_BOOKE
782 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
783#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500784}
785
Suresh Warrier95767302016-08-19 15:35:47 +1000786/*
787 * irq_bypass_add_producer and irq_bypass_del_producer are only
788 * useful if the architecture supports PCI passthrough.
789 * irq_bypass_stop and irq_bypass_start are not needed and so
790 * kvm_ops are not defined for them.
791 */
792bool kvm_arch_has_irq_bypass(void)
793{
794 return ((kvmppc_hv_ops && kvmppc_hv_ops->irq_bypass_add_producer) ||
795 (kvmppc_pr_ops && kvmppc_pr_ops->irq_bypass_add_producer));
796}
797
798int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
799 struct irq_bypass_producer *prod)
800{
801 struct kvm_kernel_irqfd *irqfd =
802 container_of(cons, struct kvm_kernel_irqfd, consumer);
803 struct kvm *kvm = irqfd->kvm;
804
805 if (kvm->arch.kvm_ops->irq_bypass_add_producer)
806 return kvm->arch.kvm_ops->irq_bypass_add_producer(cons, prod);
807
808 return 0;
809}
810
811void kvm_arch_irq_bypass_del_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_del_producer)
819 kvm->arch.kvm_ops->irq_bypass_del_producer(cons, prod);
820}
821
Bin Lu6f63e812017-02-21 21:12:36 +0800822#ifdef CONFIG_VSX
823static inline int kvmppc_get_vsr_dword_offset(int index)
824{
825 int offset;
826
827 if ((index != 0) && (index != 1))
828 return -1;
829
830#ifdef __BIG_ENDIAN
831 offset = index;
832#else
833 offset = 1 - index;
834#endif
835
836 return offset;
837}
838
839static inline int kvmppc_get_vsr_word_offset(int index)
840{
841 int offset;
842
843 if ((index > 3) || (index < 0))
844 return -1;
845
846#ifdef __BIG_ENDIAN
847 offset = index;
848#else
849 offset = 3 - index;
850#endif
851 return offset;
852}
853
854static inline void kvmppc_set_vsr_dword(struct kvm_vcpu *vcpu,
855 u64 gpr)
856{
857 union kvmppc_one_reg val;
858 int offset = kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
859 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
860
861 if (offset == -1)
862 return;
863
864 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
865 val.vval = VCPU_VSX_VR(vcpu, index);
866 val.vsxval[offset] = gpr;
867 VCPU_VSX_VR(vcpu, index) = val.vval;
868 } else {
869 VCPU_VSX_FPR(vcpu, index, offset) = gpr;
870 }
871}
872
873static inline void kvmppc_set_vsr_dword_dump(struct kvm_vcpu *vcpu,
874 u64 gpr)
875{
876 union kvmppc_one_reg val;
877 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
878
879 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
880 val.vval = VCPU_VSX_VR(vcpu, index);
881 val.vsxval[0] = gpr;
882 val.vsxval[1] = gpr;
883 VCPU_VSX_VR(vcpu, index) = val.vval;
884 } else {
885 VCPU_VSX_FPR(vcpu, index, 0) = gpr;
886 VCPU_VSX_FPR(vcpu, index, 1) = gpr;
887 }
888}
889
890static inline void kvmppc_set_vsr_word(struct kvm_vcpu *vcpu,
891 u32 gpr32)
892{
893 union kvmppc_one_reg val;
894 int offset = kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
895 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
896 int dword_offset, word_offset;
897
898 if (offset == -1)
899 return;
900
901 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
902 val.vval = VCPU_VSX_VR(vcpu, index);
903 val.vsx32val[offset] = gpr32;
904 VCPU_VSX_VR(vcpu, index) = val.vval;
905 } else {
906 dword_offset = offset / 2;
907 word_offset = offset % 2;
908 val.vsxval[0] = VCPU_VSX_FPR(vcpu, index, dword_offset);
909 val.vsx32val[word_offset] = gpr32;
910 VCPU_VSX_FPR(vcpu, index, dword_offset) = val.vsxval[0];
911 }
912}
913#endif /* CONFIG_VSX */
914
915#ifdef CONFIG_PPC_FPU
916static inline u64 sp_to_dp(u32 fprs)
917{
918 u64 fprd;
919
920 preempt_disable();
921 enable_kernel_fp();
922 asm ("lfs%U1%X1 0,%1; stfd%U0%X0 0,%0" : "=m" (fprd) : "m" (fprs)
923 : "fr0");
924 preempt_enable();
925 return fprd;
926}
927
928static inline u32 dp_to_sp(u64 fprd)
929{
930 u32 fprs;
931
932 preempt_disable();
933 enable_kernel_fp();
934 asm ("lfd%U1%X1 0,%1; stfs%U0%X0 0,%0" : "=m" (fprs) : "m" (fprd)
935 : "fr0");
936 preempt_enable();
937 return fprs;
938}
939
940#else
941#define sp_to_dp(x) (x)
942#define dp_to_sp(x) (x)
943#endif /* CONFIG_PPC_FPU */
944
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500945static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
946 struct kvm_run *run)
947{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000948 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500949
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100950 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500951 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
952 return;
953 }
954
David Gibsond078eed2015-02-03 16:36:24 +1100955 if (!vcpu->arch.mmio_host_swabbed) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500956 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100957 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100958 case 4: gpr = *(u32 *)run->mmio.data; break;
959 case 2: gpr = *(u16 *)run->mmio.data; break;
960 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500961 }
962 } else {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500963 switch (run->mmio.len) {
David Gibsond078eed2015-02-03 16:36:24 +1100964 case 8: gpr = swab64(*(u64 *)run->mmio.data); break;
965 case 4: gpr = swab32(*(u32 *)run->mmio.data); break;
966 case 2: gpr = swab16(*(u16 *)run->mmio.data); break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100967 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500968 }
969 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100970
Bin Lu6f63e812017-02-21 21:12:36 +0800971 /* conversion between single and double precision */
972 if ((vcpu->arch.mmio_sp64_extend) && (run->mmio.len == 4))
973 gpr = sp_to_dp(gpr);
974
Alexander Graf3587d532010-02-19 11:00:30 +0100975 if (vcpu->arch.mmio_sign_extend) {
976 switch (run->mmio.len) {
977#ifdef CONFIG_PPC64
978 case 4:
979 gpr = (s64)(s32)gpr;
980 break;
981#endif
982 case 2:
983 gpr = (s64)(s16)gpr;
984 break;
985 case 1:
986 gpr = (s64)(s8)gpr;
987 break;
988 }
989 }
990
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100991 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
992 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +0100993 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
994 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100995 case KVM_MMIO_REG_FPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100996 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100997 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200998#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100999 case KVM_MMIO_REG_QPR:
1000 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +01001001 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001002 case KVM_MMIO_REG_FQPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +11001003 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001004 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +01001005 break;
Alexander Graf287d5612010-04-01 15:33:21 +02001006#endif
Bin Lu6f63e812017-02-21 21:12:36 +08001007#ifdef CONFIG_VSX
1008 case KVM_MMIO_REG_VSX:
1009 if (vcpu->arch.mmio_vsx_copy_type == KVMPPC_VSX_COPY_DWORD)
1010 kvmppc_set_vsr_dword(vcpu, gpr);
1011 else if (vcpu->arch.mmio_vsx_copy_type == KVMPPC_VSX_COPY_WORD)
1012 kvmppc_set_vsr_word(vcpu, gpr);
1013 else if (vcpu->arch.mmio_vsx_copy_type ==
1014 KVMPPC_VSX_COPY_DWORD_LOAD_DUMP)
1015 kvmppc_set_vsr_dword_dump(vcpu, gpr);
1016 break;
1017#endif
Alexander Grafb104d062010-02-19 11:00:29 +01001018 default:
1019 BUG();
1020 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001021}
1022
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001023static int __kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1024 unsigned int rt, unsigned int bytes,
1025 int is_default_endian, int sign_extend)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001026{
Scott Wooded840ee2013-04-26 14:53:39 +00001027 int idx, ret;
David Gibsond078eed2015-02-03 16:36:24 +11001028 bool host_swabbed;
Cédric Le Goater73601772014-01-09 11:51:16 +01001029
David Gibsond078eed2015-02-03 16:36:24 +11001030 /* Pity C doesn't have a logical XOR operator */
Cédric Le Goater73601772014-01-09 11:51:16 +01001031 if (kvmppc_need_byteswap(vcpu)) {
David Gibsond078eed2015-02-03 16:36:24 +11001032 host_swabbed = is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001033 } else {
David Gibsond078eed2015-02-03 16:36:24 +11001034 host_swabbed = !is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001035 }
Scott Wooded840ee2013-04-26 14:53:39 +00001036
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001037 if (bytes > sizeof(run->mmio.data)) {
1038 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
1039 run->mmio.len);
1040 }
1041
1042 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1043 run->mmio.len = bytes;
1044 run->mmio.is_write = 0;
1045
1046 vcpu->arch.io_gpr = rt;
David Gibsond078eed2015-02-03 16:36:24 +11001047 vcpu->arch.mmio_host_swabbed = host_swabbed;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001048 vcpu->mmio_needed = 1;
1049 vcpu->mmio_is_write = 0;
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001050 vcpu->arch.mmio_sign_extend = sign_extend;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001051
Scott Wooded840ee2013-04-26 14:53:39 +00001052 idx = srcu_read_lock(&vcpu->kvm->srcu);
1053
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001054 ret = kvm_io_bus_read(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
Scott Wooded840ee2013-04-26 14:53:39 +00001055 bytes, &run->mmio.data);
1056
1057 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1058
1059 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +02001060 kvmppc_complete_mmio_load(vcpu, run);
1061 vcpu->mmio_needed = 0;
1062 return EMULATE_DONE;
1063 }
1064
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001065 return EMULATE_DO_MMIO;
1066}
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001067
1068int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1069 unsigned int rt, unsigned int bytes,
1070 int is_default_endian)
1071{
1072 return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 0);
1073}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301074EXPORT_SYMBOL_GPL(kvmppc_handle_load);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001075
Alexander Graf3587d532010-02-19 11:00:30 +01001076/* Same as above, but sign extends */
1077int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +01001078 unsigned int rt, unsigned int bytes,
1079 int is_default_endian)
Alexander Graf3587d532010-02-19 11:00:30 +01001080{
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001081 return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 1);
Alexander Graf3587d532010-02-19 11:00:30 +01001082}
1083
Bin Lu6f63e812017-02-21 21:12:36 +08001084#ifdef CONFIG_VSX
1085int kvmppc_handle_vsx_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1086 unsigned int rt, unsigned int bytes,
1087 int is_default_endian, int mmio_sign_extend)
1088{
1089 enum emulation_result emulated = EMULATE_DONE;
1090
1091 /* Currently, mmio_vsx_copy_nums only allowed to be less than 4 */
1092 if ( (vcpu->arch.mmio_vsx_copy_nums > 4) ||
1093 (vcpu->arch.mmio_vsx_copy_nums < 0) ) {
1094 return EMULATE_FAIL;
1095 }
1096
1097 while (vcpu->arch.mmio_vsx_copy_nums) {
1098 emulated = __kvmppc_handle_load(run, vcpu, rt, bytes,
1099 is_default_endian, mmio_sign_extend);
1100
1101 if (emulated != EMULATE_DONE)
1102 break;
1103
1104 vcpu->arch.paddr_accessed += run->mmio.len;
1105
1106 vcpu->arch.mmio_vsx_copy_nums--;
1107 vcpu->arch.mmio_vsx_offset++;
1108 }
1109 return emulated;
1110}
1111#endif /* CONFIG_VSX */
1112
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001113int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +01001114 u64 val, unsigned int bytes, int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001115{
1116 void *data = run->mmio.data;
Scott Wooded840ee2013-04-26 14:53:39 +00001117 int idx, ret;
David Gibsond078eed2015-02-03 16:36:24 +11001118 bool host_swabbed;
Cédric Le Goater73601772014-01-09 11:51:16 +01001119
David Gibsond078eed2015-02-03 16:36:24 +11001120 /* Pity C doesn't have a logical XOR operator */
Cédric Le Goater73601772014-01-09 11:51:16 +01001121 if (kvmppc_need_byteswap(vcpu)) {
David Gibsond078eed2015-02-03 16:36:24 +11001122 host_swabbed = is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001123 } else {
David Gibsond078eed2015-02-03 16:36:24 +11001124 host_swabbed = !is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001125 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001126
1127 if (bytes > sizeof(run->mmio.data)) {
1128 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
1129 run->mmio.len);
1130 }
1131
1132 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1133 run->mmio.len = bytes;
1134 run->mmio.is_write = 1;
1135 vcpu->mmio_needed = 1;
1136 vcpu->mmio_is_write = 1;
1137
Bin Lu6f63e812017-02-21 21:12:36 +08001138 if ((vcpu->arch.mmio_sp64_extend) && (bytes == 4))
1139 val = dp_to_sp(val);
1140
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001141 /* Store the value at the lowest bytes in 'data'. */
David Gibsond078eed2015-02-03 16:36:24 +11001142 if (!host_swabbed) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001143 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +01001144 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001145 case 4: *(u32 *)data = val; break;
1146 case 2: *(u16 *)data = val; break;
1147 case 1: *(u8 *)data = val; break;
1148 }
1149 } else {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001150 switch (bytes) {
David Gibsond078eed2015-02-03 16:36:24 +11001151 case 8: *(u64 *)data = swab64(val); break;
1152 case 4: *(u32 *)data = swab32(val); break;
1153 case 2: *(u16 *)data = swab16(val); break;
1154 case 1: *(u8 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001155 }
1156 }
1157
Scott Wooded840ee2013-04-26 14:53:39 +00001158 idx = srcu_read_lock(&vcpu->kvm->srcu);
1159
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001160 ret = kvm_io_bus_write(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
Scott Wooded840ee2013-04-26 14:53:39 +00001161 bytes, &run->mmio.data);
1162
1163 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1164
1165 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +02001166 vcpu->mmio_needed = 0;
1167 return EMULATE_DONE;
1168 }
1169
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001170 return EMULATE_DO_MMIO;
1171}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301172EXPORT_SYMBOL_GPL(kvmppc_handle_store);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001173
Bin Lu6f63e812017-02-21 21:12:36 +08001174#ifdef CONFIG_VSX
1175static inline int kvmppc_get_vsr_data(struct kvm_vcpu *vcpu, int rs, u64 *val)
1176{
1177 u32 dword_offset, word_offset;
1178 union kvmppc_one_reg reg;
1179 int vsx_offset = 0;
1180 int copy_type = vcpu->arch.mmio_vsx_copy_type;
1181 int result = 0;
1182
1183 switch (copy_type) {
1184 case KVMPPC_VSX_COPY_DWORD:
1185 vsx_offset =
1186 kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
1187
1188 if (vsx_offset == -1) {
1189 result = -1;
1190 break;
1191 }
1192
1193 if (!vcpu->arch.mmio_vsx_tx_sx_enabled) {
1194 *val = VCPU_VSX_FPR(vcpu, rs, vsx_offset);
1195 } else {
1196 reg.vval = VCPU_VSX_VR(vcpu, rs);
1197 *val = reg.vsxval[vsx_offset];
1198 }
1199 break;
1200
1201 case KVMPPC_VSX_COPY_WORD:
1202 vsx_offset =
1203 kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
1204
1205 if (vsx_offset == -1) {
1206 result = -1;
1207 break;
1208 }
1209
1210 if (!vcpu->arch.mmio_vsx_tx_sx_enabled) {
1211 dword_offset = vsx_offset / 2;
1212 word_offset = vsx_offset % 2;
1213 reg.vsxval[0] = VCPU_VSX_FPR(vcpu, rs, dword_offset);
1214 *val = reg.vsx32val[word_offset];
1215 } else {
1216 reg.vval = VCPU_VSX_VR(vcpu, rs);
1217 *val = reg.vsx32val[vsx_offset];
1218 }
1219 break;
1220
1221 default:
1222 result = -1;
1223 break;
1224 }
1225
1226 return result;
1227}
1228
1229int kvmppc_handle_vsx_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
1230 int rs, unsigned int bytes, int is_default_endian)
1231{
1232 u64 val;
1233 enum emulation_result emulated = EMULATE_DONE;
1234
1235 vcpu->arch.io_gpr = rs;
1236
1237 /* Currently, mmio_vsx_copy_nums only allowed to be less than 4 */
1238 if ( (vcpu->arch.mmio_vsx_copy_nums > 4) ||
1239 (vcpu->arch.mmio_vsx_copy_nums < 0) ) {
1240 return EMULATE_FAIL;
1241 }
1242
1243 while (vcpu->arch.mmio_vsx_copy_nums) {
1244 if (kvmppc_get_vsr_data(vcpu, rs, &val) == -1)
1245 return EMULATE_FAIL;
1246
1247 emulated = kvmppc_handle_store(run, vcpu,
1248 val, bytes, is_default_endian);
1249
1250 if (emulated != EMULATE_DONE)
1251 break;
1252
1253 vcpu->arch.paddr_accessed += run->mmio.len;
1254
1255 vcpu->arch.mmio_vsx_copy_nums--;
1256 vcpu->arch.mmio_vsx_offset++;
1257 }
1258
1259 return emulated;
1260}
1261
1262static int kvmppc_emulate_mmio_vsx_loadstore(struct kvm_vcpu *vcpu,
1263 struct kvm_run *run)
1264{
1265 enum emulation_result emulated = EMULATE_FAIL;
1266 int r;
1267
1268 vcpu->arch.paddr_accessed += run->mmio.len;
1269
1270 if (!vcpu->mmio_is_write) {
1271 emulated = kvmppc_handle_vsx_load(run, vcpu, vcpu->arch.io_gpr,
1272 run->mmio.len, 1, vcpu->arch.mmio_sign_extend);
1273 } else {
1274 emulated = kvmppc_handle_vsx_store(run, vcpu,
1275 vcpu->arch.io_gpr, run->mmio.len, 1);
1276 }
1277
1278 switch (emulated) {
1279 case EMULATE_DO_MMIO:
1280 run->exit_reason = KVM_EXIT_MMIO;
1281 r = RESUME_HOST;
1282 break;
1283 case EMULATE_FAIL:
1284 pr_info("KVM: MMIO emulation failed (VSX repeat)\n");
1285 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1286 run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
1287 r = RESUME_HOST;
1288 break;
1289 default:
1290 r = RESUME_GUEST;
1291 break;
1292 }
1293 return r;
1294}
1295#endif /* CONFIG_VSX */
1296
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001297int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1298{
1299 int r = 0;
1300 union kvmppc_one_reg val;
1301 int size;
1302
1303 size = one_reg_size(reg->id);
1304 if (size > sizeof(val))
1305 return -EINVAL;
1306
1307 r = kvmppc_get_one_reg(vcpu, reg->id, &val);
1308 if (r == -EINVAL) {
1309 r = 0;
1310 switch (reg->id) {
Mihai Caraman3840edc2014-08-20 16:36:25 +03001311#ifdef CONFIG_ALTIVEC
1312 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1313 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1314 r = -ENXIO;
1315 break;
1316 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001317 val.vval = vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0];
Mihai Caraman3840edc2014-08-20 16:36:25 +03001318 break;
1319 case KVM_REG_PPC_VSCR:
1320 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1321 r = -ENXIO;
1322 break;
1323 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001324 val = get_reg_val(reg->id, vcpu->arch.vr.vscr.u[3]);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001325 break;
1326 case KVM_REG_PPC_VRSAVE:
Greg Kurzb4d7f162016-01-13 18:28:17 +01001327 val = get_reg_val(reg->id, vcpu->arch.vrsave);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001328 break;
1329#endif /* CONFIG_ALTIVEC */
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001330 default:
1331 r = -EINVAL;
1332 break;
1333 }
1334 }
1335
1336 if (r)
1337 return r;
1338
1339 if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size))
1340 r = -EFAULT;
1341
1342 return r;
1343}
1344
1345int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1346{
1347 int r;
1348 union kvmppc_one_reg val;
1349 int size;
1350
1351 size = one_reg_size(reg->id);
1352 if (size > sizeof(val))
1353 return -EINVAL;
1354
1355 if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size))
1356 return -EFAULT;
1357
1358 r = kvmppc_set_one_reg(vcpu, reg->id, &val);
1359 if (r == -EINVAL) {
1360 r = 0;
1361 switch (reg->id) {
Mihai Caraman3840edc2014-08-20 16:36:25 +03001362#ifdef CONFIG_ALTIVEC
1363 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1364 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1365 r = -ENXIO;
1366 break;
1367 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001368 vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0] = val.vval;
Mihai Caraman3840edc2014-08-20 16:36:25 +03001369 break;
1370 case KVM_REG_PPC_VSCR:
1371 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1372 r = -ENXIO;
1373 break;
1374 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001375 vcpu->arch.vr.vscr.u[3] = set_reg_val(reg->id, val);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001376 break;
1377 case KVM_REG_PPC_VRSAVE:
Greg Kurzb4d7f162016-01-13 18:28:17 +01001378 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1379 r = -ENXIO;
1380 break;
1381 }
1382 vcpu->arch.vrsave = set_reg_val(reg->id, val);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001383 break;
1384#endif /* CONFIG_ALTIVEC */
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001385 default:
1386 r = -EINVAL;
1387 break;
1388 }
1389 }
1390
1391 return r;
1392}
1393
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001394int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
1395{
1396 int r;
1397 sigset_t sigsaved;
1398
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001399 if (vcpu->mmio_needed) {
Bin Lu6f63e812017-02-21 21:12:36 +08001400 vcpu->mmio_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001401 if (!vcpu->mmio_is_write)
1402 kvmppc_complete_mmio_load(vcpu, run);
Bin Lu6f63e812017-02-21 21:12:36 +08001403#ifdef CONFIG_VSX
1404 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1405 vcpu->arch.mmio_vsx_copy_nums--;
1406 vcpu->arch.mmio_vsx_offset++;
1407 }
1408
1409 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1410 r = kvmppc_emulate_mmio_vsx_loadstore(vcpu, run);
1411 if (r == RESUME_HOST) {
1412 vcpu->mmio_needed = 1;
1413 return r;
1414 }
1415 }
1416#endif
Alexander Grafad0a0482010-03-24 21:48:30 +01001417 } else if (vcpu->arch.osi_needed) {
1418 u64 *gprs = run->osi.gprs;
1419 int i;
1420
1421 for (i = 0; i < 32; i++)
1422 kvmppc_set_gpr(vcpu, i, gprs[i]);
1423 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001424 } else if (vcpu->arch.hcall_needed) {
1425 int i;
1426
1427 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
1428 for (i = 0; i < 9; ++i)
1429 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
1430 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +01001431#ifdef CONFIG_BOOKE
1432 } else if (vcpu->arch.epr_needed) {
1433 kvmppc_set_epr(vcpu, run->epr.epr);
1434 vcpu->arch.epr_needed = 0;
1435#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001436 }
1437
Bin Lu6f63e812017-02-21 21:12:36 +08001438 if (vcpu->sigset_active)
1439 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
1440
Paolo Bonzini460df4c2017-02-08 11:50:15 +01001441 if (run->immediate_exit)
1442 r = -EINTR;
1443 else
1444 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001445
1446 if (vcpu->sigset_active)
1447 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1448
1449 return r;
1450}
1451
1452int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
1453{
Paul Mackerras19ccb762011-07-23 17:42:46 +10001454 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +00001455 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001456 return 0;
1457 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -05001458
Paul Mackerras19ccb762011-07-23 17:42:46 +10001459 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -05001460
Scott Wooddfd4d472011-11-17 12:39:59 +00001461 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -05001462
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001463 return 0;
1464}
1465
Alexander Graf71fbfd52010-03-24 21:48:29 +01001466static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
1467 struct kvm_enable_cap *cap)
1468{
1469 int r;
1470
1471 if (cap->flags)
1472 return -EINVAL;
1473
1474 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +01001475 case KVM_CAP_PPC_OSI:
1476 r = 0;
1477 vcpu->arch.osi_enabled = true;
1478 break;
Alexander Graf930b4122011-08-08 17:29:42 +02001479 case KVM_CAP_PPC_PAPR:
1480 r = 0;
1481 vcpu->arch.papr_enabled = true;
1482 break;
Alexander Graf1c810632013-01-04 18:12:48 +01001483 case KVM_CAP_PPC_EPR:
1484 r = 0;
Scott Wood5df554ad2013-04-12 14:08:46 +00001485 if (cap->args[0])
1486 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
1487 else
1488 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +01001489 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +00001490#ifdef CONFIG_BOOKE
1491 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1492 r = 0;
1493 vcpu->arch.watchdog_enabled = true;
1494 break;
1495#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001496#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001497 case KVM_CAP_SW_TLB: {
1498 struct kvm_config_tlb cfg;
1499 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
1500
1501 r = -EFAULT;
1502 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
1503 break;
1504
1505 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
1506 break;
1507 }
1508#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +00001509#ifdef CONFIG_KVM_MPIC
1510 case KVM_CAP_IRQ_MPIC: {
Al Viro70abade2013-08-30 15:04:22 -04001511 struct fd f;
Scott Woodeb1e4f42013-04-12 14:08:47 +00001512 struct kvm_device *dev;
1513
1514 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -04001515 f = fdget(cap->args[0]);
1516 if (!f.file)
Scott Woodeb1e4f42013-04-12 14:08:47 +00001517 break;
1518
1519 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -04001520 dev = kvm_device_from_filp(f.file);
Scott Woodeb1e4f42013-04-12 14:08:47 +00001521 if (dev)
1522 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
1523
Al Viro70abade2013-08-30 15:04:22 -04001524 fdput(f);
Scott Woodeb1e4f42013-04-12 14:08:47 +00001525 break;
1526 }
1527#endif
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001528#ifdef CONFIG_KVM_XICS
1529 case KVM_CAP_IRQ_XICS: {
Al Viro70abade2013-08-30 15:04:22 -04001530 struct fd f;
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001531 struct kvm_device *dev;
1532
1533 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -04001534 f = fdget(cap->args[0]);
1535 if (!f.file)
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001536 break;
1537
1538 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -04001539 dev = kvm_device_from_filp(f.file);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001540 if (dev) {
1541 if (xive_enabled())
1542 r = kvmppc_xive_connect_vcpu(dev, vcpu, cap->args[1]);
1543 else
1544 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
1545 }
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001546
Al Viro70abade2013-08-30 15:04:22 -04001547 fdput(f);
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001548 break;
1549 }
1550#endif /* CONFIG_KVM_XICS */
Aravinda Prasad134764e2017-05-11 16:32:48 +05301551#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
1552 case KVM_CAP_PPC_FWNMI:
1553 r = -EINVAL;
1554 if (!is_kvmppc_hv_enabled(vcpu->kvm))
1555 break;
1556 r = 0;
1557 vcpu->kvm->arch.fwnmi_enabled = true;
1558 break;
1559#endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */
Alexander Graf71fbfd52010-03-24 21:48:29 +01001560 default:
1561 r = -EINVAL;
1562 break;
1563 }
1564
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001565 if (!r)
1566 r = kvmppc_sanity_check(vcpu);
1567
Alexander Graf71fbfd52010-03-24 21:48:29 +01001568 return r;
1569}
1570
Paul Mackerras34a75b02016-08-10 11:27:27 +10001571bool kvm_arch_intc_initialized(struct kvm *kvm)
1572{
1573#ifdef CONFIG_KVM_MPIC
1574 if (kvm->arch.mpic)
1575 return true;
1576#endif
1577#ifdef CONFIG_KVM_XICS
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001578 if (kvm->arch.xics || kvm->arch.xive)
Paul Mackerras34a75b02016-08-10 11:27:27 +10001579 return true;
1580#endif
1581 return false;
1582}
1583
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001584int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
1585 struct kvm_mp_state *mp_state)
1586{
1587 return -EINVAL;
1588}
1589
1590int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
1591 struct kvm_mp_state *mp_state)
1592{
1593 return -EINVAL;
1594}
1595
1596long kvm_arch_vcpu_ioctl(struct file *filp,
1597 unsigned int ioctl, unsigned long arg)
1598{
1599 struct kvm_vcpu *vcpu = filp->private_data;
1600 void __user *argp = (void __user *)arg;
1601 long r;
1602
Avi Kivity93736622010-05-13 12:35:17 +03001603 switch (ioctl) {
1604 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001605 struct kvm_interrupt irq;
1606 r = -EFAULT;
1607 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +03001608 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001609 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +03001610 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001611 }
Avi Kivity19483d12010-05-13 12:30:43 +03001612
Alexander Graf71fbfd52010-03-24 21:48:29 +01001613 case KVM_ENABLE_CAP:
1614 {
1615 struct kvm_enable_cap cap;
1616 r = -EFAULT;
1617 if (copy_from_user(&cap, argp, sizeof(cap)))
1618 goto out;
1619 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1620 break;
1621 }
Scott Wooddc83b8b2011-08-18 15:25:21 -05001622
Alexander Grafe24ed812011-09-14 10:02:41 +02001623 case KVM_SET_ONE_REG:
1624 case KVM_GET_ONE_REG:
1625 {
1626 struct kvm_one_reg reg;
1627 r = -EFAULT;
1628 if (copy_from_user(&reg, argp, sizeof(reg)))
1629 goto out;
1630 if (ioctl == KVM_SET_ONE_REG)
1631 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
1632 else
1633 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
1634 break;
1635 }
1636
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001637#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001638 case KVM_DIRTY_TLB: {
1639 struct kvm_dirty_tlb dirty;
1640 r = -EFAULT;
1641 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1642 goto out;
1643 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1644 break;
1645 }
1646#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001647 default:
1648 r = -EINVAL;
1649 }
1650
1651out:
1652 return r;
1653}
1654
Carsten Otte5b1c1492012-01-04 10:25:23 +01001655int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1656{
1657 return VM_FAULT_SIGBUS;
1658}
1659
Alexander Graf15711e92010-07-29 14:48:08 +02001660static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1661{
Stuart Yoder784bafa2012-07-03 05:48:51 +00001662 u32 inst_nop = 0x60000000;
1663#ifdef CONFIG_KVM_BOOKE_HV
1664 u32 inst_sc1 = 0x44000022;
Alexander Graf27431032014-04-24 13:39:16 +02001665 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
1666 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
1667 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
1668 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001669#else
Alexander Graf15711e92010-07-29 14:48:08 +02001670 u32 inst_lis = 0x3c000000;
1671 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +02001672 u32 inst_sc = 0x44000002;
1673 u32 inst_imm_mask = 0xffff;
1674
1675 /*
1676 * The hypercall to get into KVM from within guest context is as
1677 * follows:
1678 *
1679 * lis r0, r0, KVM_SC_MAGIC_R0@h
1680 * ori r0, KVM_SC_MAGIC_R0@l
1681 * sc
1682 * nop
1683 */
Alexander Graf27431032014-04-24 13:39:16 +02001684 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
1685 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
1686 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
1687 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001688#endif
Alexander Graf15711e92010-07-29 14:48:08 +02001689
Liu Yu-B132019202e072012-07-03 05:48:52 +00001690 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1691
Alexander Graf15711e92010-07-29 14:48:08 +02001692 return 0;
1693}
1694
Alexander Graf5efdb4b2013-04-17 00:37:57 +02001695int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1696 bool line_status)
1697{
1698 if (!irqchip_in_kernel(kvm))
1699 return -ENXIO;
1700
1701 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1702 irq_event->irq, irq_event->level,
1703 line_status);
1704 return 0;
1705}
1706
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001707
1708static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1709 struct kvm_enable_cap *cap)
1710{
1711 int r;
1712
1713 if (cap->flags)
1714 return -EINVAL;
1715
1716 switch (cap->cap) {
1717#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1718 case KVM_CAP_PPC_ENABLE_HCALL: {
1719 unsigned long hcall = cap->args[0];
1720
1721 r = -EINVAL;
1722 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
1723 cap->args[1] > 1)
1724 break;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001725 if (!kvmppc_book3s_hcall_implemented(kvm, hcall))
1726 break;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001727 if (cap->args[1])
1728 set_bit(hcall / 4, kvm->arch.enabled_hcalls);
1729 else
1730 clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
1731 r = 0;
1732 break;
1733 }
Paul Mackerras3c313522017-02-06 13:24:41 +11001734 case KVM_CAP_PPC_SMT: {
1735 unsigned long mode = cap->args[0];
1736 unsigned long flags = cap->args[1];
1737
1738 r = -EINVAL;
1739 if (kvm->arch.kvm_ops->set_smt_mode)
1740 r = kvm->arch.kvm_ops->set_smt_mode(kvm, mode, flags);
1741 break;
1742 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001743#endif
1744 default:
1745 r = -EINVAL;
1746 break;
1747 }
1748
1749 return r;
1750}
1751
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001752long kvm_arch_vm_ioctl(struct file *filp,
1753 unsigned int ioctl, unsigned long arg)
1754{
Scott Wood5df554ad2013-04-12 14:08:46 +00001755 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +02001756 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001757 long r;
1758
1759 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +02001760 case KVM_PPC_GET_PVINFO: {
1761 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +04001762 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +02001763 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1764 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1765 r = -EFAULT;
1766 goto out;
1767 }
1768
1769 break;
1770 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001771 case KVM_ENABLE_CAP:
1772 {
1773 struct kvm_enable_cap cap;
1774 r = -EFAULT;
1775 if (copy_from_user(&cap, argp, sizeof(cap)))
1776 goto out;
1777 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1778 break;
1779 }
Paul Mackerras76d837a2017-05-11 14:31:59 +10001780#ifdef CONFIG_SPAPR_TCE_IOMMU
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11001781 case KVM_CREATE_SPAPR_TCE_64: {
1782 struct kvm_create_spapr_tce_64 create_tce_64;
1783
1784 r = -EFAULT;
1785 if (copy_from_user(&create_tce_64, argp, sizeof(create_tce_64)))
1786 goto out;
1787 if (create_tce_64.flags) {
1788 r = -EINVAL;
1789 goto out;
1790 }
1791 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
1792 goto out;
1793 }
David Gibson54738c02011-06-29 00:22:41 +00001794 case KVM_CREATE_SPAPR_TCE: {
1795 struct kvm_create_spapr_tce create_tce;
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11001796 struct kvm_create_spapr_tce_64 create_tce_64;
David Gibson54738c02011-06-29 00:22:41 +00001797
1798 r = -EFAULT;
1799 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1800 goto out;
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11001801
1802 create_tce_64.liobn = create_tce.liobn;
1803 create_tce_64.page_shift = IOMMU_PAGE_SHIFT_4K;
1804 create_tce_64.offset = 0;
1805 create_tce_64.size = create_tce.window_size >>
1806 IOMMU_PAGE_SHIFT_4K;
1807 create_tce_64.flags = 0;
1808 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
David Gibson54738c02011-06-29 00:22:41 +00001809 goto out;
1810 }
Paul Mackerras76d837a2017-05-11 14:31:59 +10001811#endif
1812#ifdef CONFIG_PPC_BOOK3S_64
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001813 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001814 struct kvm_ppc_smmu_info info;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301815 struct kvm *kvm = filp->private_data;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001816
1817 memset(&info, 0, sizeof(info));
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301818 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001819 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1820 r = -EFAULT;
1821 break;
1822 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001823 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1824 struct kvm *kvm = filp->private_data;
1825
1826 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1827 break;
1828 }
Paul Mackerrasc9270132017-01-30 21:21:41 +11001829 case KVM_PPC_CONFIGURE_V3_MMU: {
1830 struct kvm *kvm = filp->private_data;
1831 struct kvm_ppc_mmuv3_cfg cfg;
1832
1833 r = -EINVAL;
1834 if (!kvm->arch.kvm_ops->configure_mmu)
1835 goto out;
1836 r = -EFAULT;
1837 if (copy_from_user(&cfg, argp, sizeof(cfg)))
1838 goto out;
1839 r = kvm->arch.kvm_ops->configure_mmu(kvm, &cfg);
1840 break;
1841 }
1842 case KVM_PPC_GET_RMMU_INFO: {
1843 struct kvm *kvm = filp->private_data;
1844 struct kvm_ppc_rmmu_info info;
1845
1846 r = -EINVAL;
1847 if (!kvm->arch.kvm_ops->get_rmmu_info)
1848 goto out;
1849 r = kvm->arch.kvm_ops->get_rmmu_info(kvm, &info);
1850 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1851 r = -EFAULT;
1852 break;
1853 }
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301854 default: {
1855 struct kvm *kvm = filp->private_data;
1856 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1857 }
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301858#else /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001859 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001860 r = -ENOTTY;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301861#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001862 }
Alexander Graf15711e92010-07-29 14:48:08 +02001863out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001864 return r;
1865}
1866
Scott Wood043cc4d2011-12-20 15:34:20 +00001867static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1868static unsigned long nr_lpids;
1869
1870long kvmppc_alloc_lpid(void)
1871{
1872 long lpid;
1873
1874 do {
1875 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1876 if (lpid >= nr_lpids) {
1877 pr_err("%s: No LPIDs free\n", __func__);
1878 return -ENOMEM;
1879 }
1880 } while (test_and_set_bit(lpid, lpid_inuse));
1881
1882 return lpid;
1883}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301884EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001885
1886void kvmppc_claim_lpid(long lpid)
1887{
1888 set_bit(lpid, lpid_inuse);
1889}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301890EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001891
1892void kvmppc_free_lpid(long lpid)
1893{
1894 clear_bit(lpid, lpid_inuse);
1895}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301896EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001897
1898void kvmppc_init_lpid(unsigned long nr_lpids_param)
1899{
1900 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1901 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1902}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301903EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001904
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001905int kvm_arch_init(void *opaque)
1906{
1907 return 0;
1908}
1909
Paolo Bonzini478d66862014-08-05 11:29:07 +02001910EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ppc_instr);