blob: 3764d000872ed67a5cce683293936bf433f67141 [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>
Paul Mackerras3214d012018-01-15 16:06:47 +110042#ifdef CONFIG_PPC_PSERIES
43#include <asm/hvcall.h>
44#include <asm/plpar_wrappers.h>
45#endif
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +100046
Hollis Blanchard73e75b42008-12-02 15:51:57 -060047#include "timing.h"
Alexander Graf5efdb4b2013-04-17 00:37:57 +020048#include "irq.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110049#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050050
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030051#define CREATE_TRACE_POINTS
52#include "trace.h"
53
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +053054struct kvmppc_ops *kvmppc_hv_ops;
55EXPORT_SYMBOL_GPL(kvmppc_hv_ops);
56struct kvmppc_ops *kvmppc_pr_ops;
57EXPORT_SYMBOL_GPL(kvmppc_pr_ops);
58
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053059
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050060int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
61{
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +020062 return !!(v->arch.pending_exceptions) || kvm_request_pending(v);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050063}
64
Longpeng(Mike)199b5762017-08-08 12:05:32 +080065bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
66{
67 return false;
68}
69
Christoffer Dallb6d33832012-03-08 16:44:24 -050070int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
71{
72 return 1;
73}
74
Alexander Graf03d25c52012-08-10 12:28:50 +020075/*
76 * Common checks before entering the guest world. Call with interrupts
77 * disabled.
78 *
Alexander Graf7ee78852012-08-13 12:44:41 +020079 * returns:
80 *
81 * == 1 if we're ready to go into guest state
82 * <= 0 if we need to go back to the host with return value
Alexander Graf03d25c52012-08-10 12:28:50 +020083 */
84int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
85{
Scott Wood6c85f522014-01-09 19:18:40 -060086 int r;
Alexander Graf03d25c52012-08-10 12:28:50 +020087
Scott Wood6c85f522014-01-09 19:18:40 -060088 WARN_ON(irqs_disabled());
89 hard_irq_disable();
90
Alexander Graf03d25c52012-08-10 12:28:50 +020091 while (true) {
92 if (need_resched()) {
93 local_irq_enable();
94 cond_resched();
Scott Wood6c85f522014-01-09 19:18:40 -060095 hard_irq_disable();
Alexander Graf03d25c52012-08-10 12:28:50 +020096 continue;
97 }
98
99 if (signal_pending(current)) {
Alexander Graf7ee78852012-08-13 12:44:41 +0200100 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
101 vcpu->run->exit_reason = KVM_EXIT_INTR;
102 r = -EINTR;
Alexander Graf03d25c52012-08-10 12:28:50 +0200103 break;
104 }
105
Scott Wood5bd1cf12012-08-22 15:03:50 +0000106 vcpu->mode = IN_GUEST_MODE;
107
108 /*
109 * Reading vcpu->requests must happen after setting vcpu->mode,
110 * so we don't miss a request because the requester sees
111 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
112 * before next entering the guest (and thus doesn't IPI).
Lan Tianyu489153c2016-03-13 11:10:30 +0800113 * This also orders the write to mode from any reads
114 * to the page tables done while the VCPU is running.
115 * Please see the comment in kvm_flush_remote_tlbs.
Scott Wood5bd1cf12012-08-22 15:03:50 +0000116 */
Alexander Graf03d25c52012-08-10 12:28:50 +0200117 smp_mb();
Scott Wood5bd1cf12012-08-22 15:03:50 +0000118
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +0200119 if (kvm_request_pending(vcpu)) {
Alexander Graf03d25c52012-08-10 12:28:50 +0200120 /* Make sure we process requests preemptable */
121 local_irq_enable();
122 trace_kvm_check_requests(vcpu);
Alexander Graf7c973a22012-08-13 12:50:35 +0200123 r = kvmppc_core_check_requests(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -0600124 hard_irq_disable();
Alexander Graf7c973a22012-08-13 12:50:35 +0200125 if (r > 0)
126 continue;
127 break;
Alexander Graf03d25c52012-08-10 12:28:50 +0200128 }
129
130 if (kvmppc_core_prepare_to_enter(vcpu)) {
131 /* interrupts got enabled in between, so we
132 are back at square 1 */
133 continue;
134 }
135
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200136 guest_enter_irqoff();
Scott Wood6c85f522014-01-09 19:18:40 -0600137 return 1;
Alexander Graf03d25c52012-08-10 12:28:50 +0200138 }
139
Scott Wood6c85f522014-01-09 19:18:40 -0600140 /* return to host */
141 local_irq_enable();
Alexander Graf03d25c52012-08-10 12:28:50 +0200142 return r;
143}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530144EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
Alexander Graf03d25c52012-08-10 12:28:50 +0200145
Alexander Graf5deb8e72014-04-24 13:46:24 +0200146#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
147static void kvmppc_swab_shared(struct kvm_vcpu *vcpu)
148{
149 struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared;
150 int i;
151
152 shared->sprg0 = swab64(shared->sprg0);
153 shared->sprg1 = swab64(shared->sprg1);
154 shared->sprg2 = swab64(shared->sprg2);
155 shared->sprg3 = swab64(shared->sprg3);
156 shared->srr0 = swab64(shared->srr0);
157 shared->srr1 = swab64(shared->srr1);
158 shared->dar = swab64(shared->dar);
159 shared->msr = swab64(shared->msr);
160 shared->dsisr = swab32(shared->dsisr);
161 shared->int_pending = swab32(shared->int_pending);
162 for (i = 0; i < ARRAY_SIZE(shared->sr); i++)
163 shared->sr[i] = swab32(shared->sr[i]);
164}
165#endif
166
Alexander Graf2a342ed2010-07-29 14:47:48 +0200167int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
168{
169 int nr = kvmppc_get_gpr(vcpu, 11);
170 int r;
171 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
172 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
173 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
174 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
175 unsigned long r2 = 0;
176
Alexander Graf5deb8e72014-04-24 13:46:24 +0200177 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
Alexander Graf2a342ed2010-07-29 14:47:48 +0200178 /* 32 bit mode */
179 param1 &= 0xffffffff;
180 param2 &= 0xffffffff;
181 param3 &= 0xffffffff;
182 param4 &= 0xffffffff;
183 }
184
185 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000186 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200187 {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200188#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
189 /* Book3S can be little endian, find it out here */
190 int shared_big_endian = true;
191 if (vcpu->arch.intr_msr & MSR_LE)
192 shared_big_endian = false;
193 if (shared_big_endian != vcpu->arch.shared_big_endian)
194 kvmppc_swab_shared(vcpu);
195 vcpu->arch.shared_big_endian = shared_big_endian;
196#endif
197
Alexander Graff3383cf2014-05-12 01:08:32 +0200198 if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) {
199 /*
200 * Older versions of the Linux magic page code had
201 * a bug where they would map their trampoline code
202 * NX. If that's the case, remove !PR NX capability.
203 */
204 vcpu->arch.disable_kernel_nx = true;
205 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
206 }
207
208 vcpu->arch.magic_page_pa = param1 & ~0xfffULL;
209 vcpu->arch.magic_page_ea = param2 & ~0xfffULL;
Alexander Graf5fc87402010-07-29 14:47:55 +0200210
Alexander Graf89b68c92014-07-13 16:37:12 +0200211#ifdef CONFIG_PPC_64K_PAGES
212 /*
213 * Make sure our 4k magic page is in the same window of a 64k
214 * page within the guest and within the host's page.
215 */
216 if ((vcpu->arch.magic_page_pa & 0xf000) !=
217 ((ulong)vcpu->arch.shared & 0xf000)) {
218 void *old_shared = vcpu->arch.shared;
219 ulong shared = (ulong)vcpu->arch.shared;
220 void *new_shared;
221
222 shared &= PAGE_MASK;
223 shared |= vcpu->arch.magic_page_pa & 0xf000;
224 new_shared = (void*)shared;
225 memcpy(new_shared, old_shared, 0x1000);
226 vcpu->arch.shared = new_shared;
227 }
228#endif
229
Scott Woodb5904972011-11-08 18:23:30 -0600230 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200231
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000232 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200233 break;
234 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000235 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
236 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000237#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Alexander Graf5fc87402010-07-29 14:47:55 +0200238 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
239#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200240
241 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200242 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000243 case EV_HCALL_TOKEN(EV_IDLE):
244 r = EV_SUCCESS;
245 kvm_vcpu_block(vcpu);
Radim Krčmář72875d82017-04-26 22:32:19 +0200246 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Liu Yu-B132019202e072012-07-03 05:48:52 +0000247 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200248 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000249 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200250 break;
251 }
252
Alexander Graf7508e162010-08-03 11:32:56 +0200253 kvmppc_set_gpr(vcpu, 4, r2);
254
Alexander Graf2a342ed2010-07-29 14:47:48 +0200255 return r;
256}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530257EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500258
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200259int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
260{
261 int r = false;
262
263 /* We have to know what CPU to virtualize */
264 if (!vcpu->arch.pvr)
265 goto out;
266
267 /* PAPR only works with book3s_64 */
268 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
269 goto out;
270
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200271 /* HV KVM can only do PAPR mode for now */
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530272 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200273 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200274
Scott Woodd30f6e42011-12-20 15:34:43 +0000275#ifdef CONFIG_KVM_BOOKE_HV
276 if (!cpu_has_feature(CPU_FTR_EMB_HV))
277 goto out;
278#endif
279
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200280 r = true;
281
282out:
283 vcpu->arch.sane = r;
284 return r ? 0 : -EINVAL;
285}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530286EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200287
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500288int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
289{
290 enum emulation_result er;
291 int r;
292
Alexander Grafd69614a2014-06-18 14:53:49 +0200293 er = kvmppc_emulate_loadstore(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500294 switch (er) {
295 case EMULATE_DONE:
296 /* Future optimization: only reload non-volatiles if they were
297 * actually modified. */
298 r = RESUME_GUEST_NV;
299 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300300 case EMULATE_AGAIN:
301 r = RESUME_GUEST;
302 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500303 case EMULATE_DO_MMIO:
304 run->exit_reason = KVM_EXIT_MMIO;
305 /* We must reload nonvolatiles because "update" load/store
306 * instructions modify register state. */
307 /* Future optimization: only reload non-volatiles if they were
308 * actually modified. */
309 r = RESUME_HOST_NV;
310 break;
311 case EMULATE_FAIL:
Mihai Caraman51f04722014-07-23 19:06:21 +0300312 {
313 u32 last_inst;
314
Alexander Graf8d0eff62014-09-10 14:37:29 +0200315 kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500316 /* XXX Deliver Program interrupt to guest. */
Mihai Caraman51f04722014-07-23 19:06:21 +0300317 pr_emerg("%s: emulation failed (%08x)\n", __func__, last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500318 r = RESUME_HOST;
319 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300320 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500321 default:
Alexander Graf5a331692012-12-14 23:46:03 +0100322 WARN_ON(1);
323 r = RESUME_GUEST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500324 }
325
326 return r;
327}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530328EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500329
Alexander Graf35c4a732014-06-20 13:58:16 +0200330int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
331 bool data)
332{
Alexander Grafc12fb432014-06-20 14:43:36 +0200333 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
Alexander Graf35c4a732014-06-20 13:58:16 +0200334 struct kvmppc_pte pte;
335 int r;
336
337 vcpu->stat.st++;
338
339 r = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
340 XLATE_WRITE, &pte);
341 if (r < 0)
342 return r;
343
344 *eaddr = pte.raddr;
345
346 if (!pte.may_write)
347 return -EPERM;
348
Alexander Grafc12fb432014-06-20 14:43:36 +0200349 /* Magic page override */
350 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
351 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
352 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
353 void *magic = vcpu->arch.shared;
354 magic += pte.eaddr & 0xfff;
355 memcpy(magic, ptr, size);
356 return EMULATE_DONE;
357 }
358
Alexander Graf35c4a732014-06-20 13:58:16 +0200359 if (kvm_write_guest(vcpu->kvm, pte.raddr, ptr, size))
360 return EMULATE_DO_MMIO;
361
362 return EMULATE_DONE;
363}
364EXPORT_SYMBOL_GPL(kvmppc_st);
365
366int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
367 bool data)
368{
Alexander Grafc12fb432014-06-20 14:43:36 +0200369 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
Alexander Graf35c4a732014-06-20 13:58:16 +0200370 struct kvmppc_pte pte;
Alexander Graf35c4a732014-06-20 13:58:16 +0200371 int rc;
372
373 vcpu->stat.ld++;
374
375 rc = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
376 XLATE_READ, &pte);
377 if (rc)
378 return rc;
379
380 *eaddr = pte.raddr;
381
382 if (!pte.may_read)
383 return -EPERM;
384
385 if (!data && !pte.may_execute)
386 return -ENOEXEC;
387
Alexander Grafc12fb432014-06-20 14:43:36 +0200388 /* Magic page override */
389 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
390 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
391 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
392 void *magic = vcpu->arch.shared;
393 magic += pte.eaddr & 0xfff;
394 memcpy(ptr, magic, size);
395 return EMULATE_DONE;
396 }
397
Alexander Grafc45c5512014-06-20 14:17:30 +0200398 if (kvm_read_guest(vcpu->kvm, pte.raddr, ptr, size))
399 return EMULATE_DO_MMIO;
Alexander Graf35c4a732014-06-20 13:58:16 +0200400
401 return EMULATE_DONE;
Alexander Graf35c4a732014-06-20 13:58:16 +0200402}
403EXPORT_SYMBOL_GPL(kvmppc_ld);
404
Radim Krčmář13a34e02014-08-28 15:13:03 +0200405int kvm_arch_hardware_enable(void)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500406{
Alexander Graf10474ae2009-09-15 11:37:46 +0200407 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500408}
409
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500410int kvm_arch_hardware_setup(void)
411{
412 return 0;
413}
414
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500415void kvm_arch_check_processor_compat(void *rtn)
416{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600417 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500418}
419
Carsten Ottee08b9632012-01-04 10:25:20 +0100420int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500421{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530422 struct kvmppc_ops *kvm_ops = NULL;
423 /*
424 * if we have both HV and PR enabled, default is HV
425 */
426 if (type == 0) {
427 if (kvmppc_hv_ops)
428 kvm_ops = kvmppc_hv_ops;
429 else
430 kvm_ops = kvmppc_pr_ops;
431 if (!kvm_ops)
432 goto err_out;
433 } else if (type == KVM_VM_PPC_HV) {
434 if (!kvmppc_hv_ops)
435 goto err_out;
436 kvm_ops = kvmppc_hv_ops;
437 } else if (type == KVM_VM_PPC_PR) {
438 if (!kvmppc_pr_ops)
439 goto err_out;
440 kvm_ops = kvmppc_pr_ops;
441 } else
442 goto err_out;
Carsten Ottee08b9632012-01-04 10:25:20 +0100443
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530444 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
445 return -ENOENT;
446
447 kvm->arch.kvm_ops = kvm_ops;
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000448 return kvmppc_core_init_vm(kvm);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530449err_out:
450 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500451}
452
Luiz Capitulino235539b2016-09-07 14:47:23 -0400453bool kvm_arch_has_vcpu_debugfs(void)
454{
455 return false;
456}
457
458int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
459{
460 return 0;
461}
462
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100463void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500464{
465 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300466 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500467
Suresh E. Warriere17769e2015-12-21 16:22:51 -0600468#ifdef CONFIG_KVM_XICS
469 /*
470 * We call kick_all_cpus_sync() to ensure that all
471 * CPUs have executed any pending IPIs before we
472 * continue and free VCPUs structures below.
473 */
474 if (is_kvmppc_hv_enabled(kvm))
475 kick_all_cpus_sync();
476#endif
477
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300478 kvm_for_each_vcpu(i, vcpu, kvm)
479 kvm_arch_vcpu_free(vcpu);
480
481 mutex_lock(&kvm->lock);
482 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
483 kvm->vcpus[i] = NULL;
484
485 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000486
487 kvmppc_core_destroy_vm(kvm);
488
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300489 mutex_unlock(&kvm->lock);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530490
491 /* drop the module reference */
492 module_put(kvm->arch.kvm_ops->owner);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500493}
494
Alexander Graf784aa3d2014-07-14 18:27:35 +0200495int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500496{
497 int r;
Alexander Graf7a587772014-07-14 18:55:19 +0200498 /* Assume we're using HV mode when the HV module is loaded */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530499 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500500
Alexander Graf7a587772014-07-14 18:55:19 +0200501 if (kvm) {
502 /*
503 * Hooray - we know which VM type we're running on. Depend on
504 * that rather than the guess above.
505 */
506 hv_enabled = is_kvmppc_hv_enabled(kvm);
507 }
508
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500509 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500510#ifdef CONFIG_BOOKE
511 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000512 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Alexander Graf1c810632013-01-04 18:12:48 +0100513 case KVM_CAP_PPC_EPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500514#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000515 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200516 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200517 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500518#endif
Alexander Graf18978762010-03-24 21:48:18 +0100519 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200520 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100521 case KVM_CAP_ENABLE_CAP:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000522 case KVM_CAP_ENABLE_CAP_VM:
Alexander Grafe24ed812011-09-14 10:02:41 +0200523 case KVM_CAP_ONE_REG:
Alexander Graf0e673fb2012-10-09 00:06:20 +0200524 case KVM_CAP_IOEVENTFD:
Scott Wood5df554ad2013-04-12 14:08:46 +0000525 case KVM_CAP_DEVICE_CTRL:
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100526 case KVM_CAP_IMMEDIATE_EXIT:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000527 r = 1;
528 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000529 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100530 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200531 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000532#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500533 case KVM_CAP_SW_TLB:
534#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530535 /* We support this only for PR */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530536 r = !hv_enabled;
Alexander Grafe15a1132009-11-30 03:02:02 +0000537 break;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530538#ifdef CONFIG_KVM_MPIC
539 case KVM_CAP_IRQ_MPIC:
540 r = 1;
541 break;
542#endif
543
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000544#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000545 case KVM_CAP_SPAPR_TCE:
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +1100546 case KVM_CAP_SPAPR_TCE_64:
Alexey Kardashevskiy121f80b2017-03-22 15:21:56 +1100547 /* fallthrough */
548 case KVM_CAP_SPAPR_TCE_VFIO:
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000549 case KVM_CAP_PPC_RTAS:
Alexander Graff2e91042014-05-22 17:40:15 +0200550 case KVM_CAP_PPC_FIXUP_HCALL:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000551 case KVM_CAP_PPC_ENABLE_HCALL:
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000552#ifdef CONFIG_KVM_XICS
553 case KVM_CAP_IRQ_XICS:
554#endif
Paul Mackerras3214d012018-01-15 16:06:47 +1100555 case KVM_CAP_PPC_GET_CPU_CHAR:
David Gibson54738c02011-06-29 00:22:41 +0000556 r = 1;
557 break;
David Gibsona8acaec2016-11-23 16:14:07 +1100558
559 case KVM_CAP_PPC_ALLOC_HTAB:
560 r = hv_enabled;
561 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000562#endif /* CONFIG_PPC_BOOK3S_64 */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530563#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras371fefd2011-06-29 00:23:08 +0000564 case KVM_CAP_PPC_SMT:
Paul Mackerras45c940b2016-11-18 17:43:30 +1100565 r = 0;
Paul Mackerras57900692017-05-16 16:41:20 +1000566 if (kvm) {
567 if (kvm->arch.emul_smt_mode > 1)
568 r = kvm->arch.emul_smt_mode;
569 else
570 r = kvm->arch.smt_mode;
571 } else if (hv_enabled) {
Paul Mackerras45c940b2016-11-18 17:43:30 +1100572 if (cpu_has_feature(CPU_FTR_ARCH_300))
573 r = 1;
574 else
575 r = threads_per_subcore;
576 }
Paul Mackerras371fefd2011-06-29 00:23:08 +0000577 break;
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +1000578 case KVM_CAP_PPC_SMT_POSSIBLE:
579 r = 1;
580 if (hv_enabled) {
581 if (!cpu_has_feature(CPU_FTR_ARCH_300))
582 r = ((threads_per_subcore << 1) - 1);
583 else
584 /* P9 can emulate dbells, so allow any mode */
585 r = 8 | 4 | 2 | 1;
586 }
587 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000588 case KVM_CAP_PPC_RMA:
Paul Mackerrasc17b98c2014-12-03 13:30:38 +1100589 r = 0;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000590 break;
Michael Ellermane928e9c2015-03-20 20:39:41 +1100591 case KVM_CAP_PPC_HWRNG:
592 r = kvmppc_hwrng_present();
593 break;
Paul Mackerrasc9270132017-01-30 21:21:41 +1100594 case KVM_CAP_PPC_MMU_RADIX:
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +1100595 r = !!(hv_enabled && radix_enabled());
Paul Mackerrasc9270132017-01-30 21:21:41 +1100596 break;
597 case KVM_CAP_PPC_MMU_HASH_V3:
Paul Mackerras18c36402017-09-13 16:00:10 +1000598 r = !!(hv_enabled && cpu_has_feature(CPU_FTR_ARCH_300));
Paul Mackerrasc9270132017-01-30 21:21:41 +1100599 break;
David Gibson54738c02011-06-29 00:22:41 +0000600#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200601 case KVM_CAP_SYNC_MMU:
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530602#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasc17b98c2014-12-03 13:30:38 +1100603 r = hv_enabled;
Alexander Graff4800b12012-08-07 10:24:14 +0200604#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
605 r = 1;
606#else
607 r = 0;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000608#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530609 break;
610#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasa2932922012-11-19 22:57:20 +0000611 case KVM_CAP_PPC_HTAB_FD:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530612 r = hv_enabled;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000613 break;
Alexander Graff4800b12012-08-07 10:24:14 +0200614#endif
Matt Evansb5434032011-12-07 16:55:57 +0000615 case KVM_CAP_NR_VCPUS:
616 /*
617 * Recommending a number of CPUs is somewhat arbitrary; we
618 * return the number of present CPUs for -HV (since a host
619 * will have secondary threads "offline"), and for other KVM
620 * implementations just count online CPUs.
621 */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530622 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530623 r = num_present_cpus();
624 else
625 r = num_online_cpus();
Matt Evansb5434032011-12-07 16:55:57 +0000626 break;
Nikunj A Dadhaniabfec5c2c2015-10-16 10:27:53 +0530627 case KVM_CAP_NR_MEMSLOTS:
628 r = KVM_USER_MEM_SLOTS;
629 break;
Matt Evansb5434032011-12-07 16:55:57 +0000630 case KVM_CAP_MAX_VCPUS:
631 r = KVM_MAX_VCPUS;
632 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000633#ifdef CONFIG_PPC_BOOK3S_64
634 case KVM_CAP_PPC_GET_SMMU_INFO:
635 r = 1;
636 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +1100637 case KVM_CAP_SPAPR_MULTITCE:
638 r = 1;
639 break;
David Gibson050f2332016-12-20 16:49:07 +1100640 case KVM_CAP_SPAPR_RESIZE_HPT:
David Gibson790a9df2018-02-02 14:29:08 +1100641 r = !!hv_enabled;
David Gibson050f2332016-12-20 16:49:07 +1100642 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000643#endif
Aravinda Prasad134764e2017-05-11 16:32:48 +0530644#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
645 case KVM_CAP_PPC_FWNMI:
646 r = hv_enabled;
647 break;
648#endif
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +1100649#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Sam Bobroff23528bb2016-07-20 13:41:36 +1000650 case KVM_CAP_PPC_HTM:
Paul Mackerras072df812017-11-09 14:30:24 +1100651 r = hv_enabled &&
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +1100652 (!!(cur_cpu_spec->cpu_user_features2 & PPC_FEATURE2_HTM) ||
653 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST));
Sam Bobroff23528bb2016-07-20 13:41:36 +1000654 break;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +1100655#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500656 default:
657 r = 0;
658 break;
659 }
660 return r;
661
662}
663
664long kvm_arch_dev_ioctl(struct file *filp,
665 unsigned int ioctl, unsigned long arg)
666{
667 return -EINVAL;
668}
669
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530670void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900671 struct kvm_memory_slot *dont)
672{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530673 kvmppc_core_free_memslot(kvm, free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900674}
675
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530676int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
677 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900678{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530679 return kvmppc_core_create_memslot(kvm, slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900680}
681
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200682int kvm_arch_prepare_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900683 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200684 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900685 enum kvm_mr_change change)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500686{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000687 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500688}
689
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200690void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200691 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900692 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200693 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900694 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200695{
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200696 kvmppc_core_commit_memory_region(kvm, mem, old, new);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200697}
698
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300699void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
700 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300701{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000702 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300703}
704
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500705struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
706{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600707 struct kvm_vcpu *vcpu;
708 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000709 if (!IS_ERR(vcpu)) {
710 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800711 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000712 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600713 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500714}
715
Dominik Dingel31928aa2014-12-04 15:47:07 +0100716void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200717{
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200718}
719
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500720void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
721{
Alexander Grafa5954052010-02-22 16:52:14 +0100722 /* Make sure we're not using the vcpu anymore */
723 hrtimer_cancel(&vcpu->arch.dec_timer);
Alexander Grafa5954052010-02-22 16:52:14 +0100724
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600725 kvmppc_remove_vcpu_debugfs(vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000726
727 switch (vcpu->arch.irq_type) {
728 case KVMPPC_IRQ_MPIC:
729 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
730 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000731 case KVMPPC_IRQ_XICS:
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000732 if (xive_enabled())
733 kvmppc_xive_cleanup_vcpu(vcpu);
734 else
735 kvmppc_xics_free_icp(vcpu);
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000736 break;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000737 }
738
Hollis Blancharddb93f572008-11-05 09:36:18 -0600739 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500740}
741
742void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
743{
744 kvm_arch_vcpu_free(vcpu);
745}
746
747int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
748{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600749 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500750}
751
Thomas Huth5358a962015-05-22 09:25:02 +0200752static enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
Alexander Graf544c6762009-11-02 12:02:31 +0000753{
754 struct kvm_vcpu *vcpu;
755
756 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
Mihai Caramand02d4d12014-09-01 17:19:56 +0300757 kvmppc_decrementer_func(vcpu);
Alexander Graf544c6762009-11-02 12:02:31 +0000758
759 return HRTIMER_NORESTART;
760}
761
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500762int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
763{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000764 int ret;
765
Alexander Graf544c6762009-11-02 12:02:31 +0000766 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
Alexander Graf544c6762009-11-02 12:02:31 +0000767 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerras58555642018-01-12 20:55:20 +1100768 vcpu->arch.dec_expires = get_tb();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500769
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530770#ifdef CONFIG_KVM_EXIT_TIMING
771 mutex_init(&vcpu->arch.exit_timing_lock);
772#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000773 ret = kvmppc_subarch_vcpu_init(vcpu);
774 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500775}
776
777void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
778{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600779 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000780 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500781}
782
783void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
784{
Scott Woodeab17672011-04-27 17:24:10 -0500785#ifdef CONFIG_BOOKE
786 /*
787 * vrsave (formerly usprg0) isn't used by Linux, but may
788 * be used by the guest.
789 *
790 * On non-booke this is associated with Altivec and
791 * is handled by code in book3s.c.
792 */
793 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
794#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600795 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500796}
797
798void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
799{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600800 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500801#ifdef CONFIG_BOOKE
802 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
803#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500804}
805
Suresh Warrier95767302016-08-19 15:35:47 +1000806/*
807 * irq_bypass_add_producer and irq_bypass_del_producer are only
808 * useful if the architecture supports PCI passthrough.
809 * irq_bypass_stop and irq_bypass_start are not needed and so
810 * kvm_ops are not defined for them.
811 */
812bool kvm_arch_has_irq_bypass(void)
813{
814 return ((kvmppc_hv_ops && kvmppc_hv_ops->irq_bypass_add_producer) ||
815 (kvmppc_pr_ops && kvmppc_pr_ops->irq_bypass_add_producer));
816}
817
818int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
819 struct irq_bypass_producer *prod)
820{
821 struct kvm_kernel_irqfd *irqfd =
822 container_of(cons, struct kvm_kernel_irqfd, consumer);
823 struct kvm *kvm = irqfd->kvm;
824
825 if (kvm->arch.kvm_ops->irq_bypass_add_producer)
826 return kvm->arch.kvm_ops->irq_bypass_add_producer(cons, prod);
827
828 return 0;
829}
830
831void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
832 struct irq_bypass_producer *prod)
833{
834 struct kvm_kernel_irqfd *irqfd =
835 container_of(cons, struct kvm_kernel_irqfd, consumer);
836 struct kvm *kvm = irqfd->kvm;
837
838 if (kvm->arch.kvm_ops->irq_bypass_del_producer)
839 kvm->arch.kvm_ops->irq_bypass_del_producer(cons, prod);
840}
841
Bin Lu6f63e812017-02-21 21:12:36 +0800842#ifdef CONFIG_VSX
843static inline int kvmppc_get_vsr_dword_offset(int index)
844{
845 int offset;
846
847 if ((index != 0) && (index != 1))
848 return -1;
849
850#ifdef __BIG_ENDIAN
851 offset = index;
852#else
853 offset = 1 - index;
854#endif
855
856 return offset;
857}
858
859static inline int kvmppc_get_vsr_word_offset(int index)
860{
861 int offset;
862
863 if ((index > 3) || (index < 0))
864 return -1;
865
866#ifdef __BIG_ENDIAN
867 offset = index;
868#else
869 offset = 3 - index;
870#endif
871 return offset;
872}
873
874static inline void kvmppc_set_vsr_dword(struct kvm_vcpu *vcpu,
875 u64 gpr)
876{
877 union kvmppc_one_reg val;
878 int offset = kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
879 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
880
881 if (offset == -1)
882 return;
883
884 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
885 val.vval = VCPU_VSX_VR(vcpu, index);
886 val.vsxval[offset] = gpr;
887 VCPU_VSX_VR(vcpu, index) = val.vval;
888 } else {
889 VCPU_VSX_FPR(vcpu, index, offset) = gpr;
890 }
891}
892
893static inline void kvmppc_set_vsr_dword_dump(struct kvm_vcpu *vcpu,
894 u64 gpr)
895{
896 union kvmppc_one_reg val;
897 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
898
899 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
900 val.vval = VCPU_VSX_VR(vcpu, index);
901 val.vsxval[0] = gpr;
902 val.vsxval[1] = gpr;
903 VCPU_VSX_VR(vcpu, index) = val.vval;
904 } else {
905 VCPU_VSX_FPR(vcpu, index, 0) = gpr;
906 VCPU_VSX_FPR(vcpu, index, 1) = gpr;
907 }
908}
909
910static inline void kvmppc_set_vsr_word(struct kvm_vcpu *vcpu,
911 u32 gpr32)
912{
913 union kvmppc_one_reg val;
914 int offset = kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
915 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
916 int dword_offset, word_offset;
917
918 if (offset == -1)
919 return;
920
921 if (vcpu->arch.mmio_vsx_tx_sx_enabled) {
922 val.vval = VCPU_VSX_VR(vcpu, index);
923 val.vsx32val[offset] = gpr32;
924 VCPU_VSX_VR(vcpu, index) = val.vval;
925 } else {
926 dword_offset = offset / 2;
927 word_offset = offset % 2;
928 val.vsxval[0] = VCPU_VSX_FPR(vcpu, index, dword_offset);
929 val.vsx32val[word_offset] = gpr32;
930 VCPU_VSX_FPR(vcpu, index, dword_offset) = val.vsxval[0];
931 }
932}
933#endif /* CONFIG_VSX */
934
Jose Ricardo Ziviani09f98492018-02-03 18:24:26 -0200935#ifdef CONFIG_ALTIVEC
936static inline void kvmppc_set_vmx_dword(struct kvm_vcpu *vcpu,
937 u64 gpr)
938{
939 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
940 u32 hi, lo;
941 u32 di;
942
943#ifdef __BIG_ENDIAN
944 hi = gpr >> 32;
945 lo = gpr & 0xffffffff;
946#else
947 lo = gpr >> 32;
948 hi = gpr & 0xffffffff;
949#endif
950
951 di = 2 - vcpu->arch.mmio_vmx_copy_nums; /* doubleword index */
952 if (di > 1)
953 return;
954
955 if (vcpu->arch.mmio_host_swabbed)
956 di = 1 - di;
957
958 VCPU_VSX_VR(vcpu, index).u[di * 2] = hi;
959 VCPU_VSX_VR(vcpu, index).u[di * 2 + 1] = lo;
960}
961#endif /* CONFIG_ALTIVEC */
962
Bin Lu6f63e812017-02-21 21:12:36 +0800963#ifdef CONFIG_PPC_FPU
964static inline u64 sp_to_dp(u32 fprs)
965{
966 u64 fprd;
967
968 preempt_disable();
969 enable_kernel_fp();
970 asm ("lfs%U1%X1 0,%1; stfd%U0%X0 0,%0" : "=m" (fprd) : "m" (fprs)
971 : "fr0");
972 preempt_enable();
973 return fprd;
974}
975
976static inline u32 dp_to_sp(u64 fprd)
977{
978 u32 fprs;
979
980 preempt_disable();
981 enable_kernel_fp();
982 asm ("lfd%U1%X1 0,%1; stfs%U0%X0 0,%0" : "=m" (fprs) : "m" (fprd)
983 : "fr0");
984 preempt_enable();
985 return fprs;
986}
987
988#else
989#define sp_to_dp(x) (x)
990#define dp_to_sp(x) (x)
991#endif /* CONFIG_PPC_FPU */
992
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500993static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
994 struct kvm_run *run)
995{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000996 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500997
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100998 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500999 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
1000 return;
1001 }
1002
David Gibsond078eed2015-02-03 16:36:24 +11001003 if (!vcpu->arch.mmio_host_swabbed) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001004 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +01001005 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +01001006 case 4: gpr = *(u32 *)run->mmio.data; break;
1007 case 2: gpr = *(u16 *)run->mmio.data; break;
1008 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001009 }
1010 } else {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001011 switch (run->mmio.len) {
David Gibsond078eed2015-02-03 16:36:24 +11001012 case 8: gpr = swab64(*(u64 *)run->mmio.data); break;
1013 case 4: gpr = swab32(*(u32 *)run->mmio.data); break;
1014 case 2: gpr = swab16(*(u16 *)run->mmio.data); break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +01001015 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001016 }
1017 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +01001018
Bin Lu6f63e812017-02-21 21:12:36 +08001019 /* conversion between single and double precision */
1020 if ((vcpu->arch.mmio_sp64_extend) && (run->mmio.len == 4))
1021 gpr = sp_to_dp(gpr);
1022
Alexander Graf3587d532010-02-19 11:00:30 +01001023 if (vcpu->arch.mmio_sign_extend) {
1024 switch (run->mmio.len) {
1025#ifdef CONFIG_PPC64
1026 case 4:
1027 gpr = (s64)(s32)gpr;
1028 break;
1029#endif
1030 case 2:
1031 gpr = (s64)(s16)gpr;
1032 break;
1033 case 1:
1034 gpr = (s64)(s8)gpr;
1035 break;
1036 }
1037 }
1038
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001039 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
1040 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +01001041 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
1042 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001043 case KVM_MMIO_REG_FPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +11001044 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +01001045 break;
Alexander Graf287d5612010-04-01 15:33:21 +02001046#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001047 case KVM_MMIO_REG_QPR:
1048 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +01001049 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001050 case KVM_MMIO_REG_FQPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +11001051 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +01001052 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +01001053 break;
Alexander Graf287d5612010-04-01 15:33:21 +02001054#endif
Bin Lu6f63e812017-02-21 21:12:36 +08001055#ifdef CONFIG_VSX
1056 case KVM_MMIO_REG_VSX:
1057 if (vcpu->arch.mmio_vsx_copy_type == KVMPPC_VSX_COPY_DWORD)
1058 kvmppc_set_vsr_dword(vcpu, gpr);
1059 else if (vcpu->arch.mmio_vsx_copy_type == KVMPPC_VSX_COPY_WORD)
1060 kvmppc_set_vsr_word(vcpu, gpr);
1061 else if (vcpu->arch.mmio_vsx_copy_type ==
1062 KVMPPC_VSX_COPY_DWORD_LOAD_DUMP)
1063 kvmppc_set_vsr_dword_dump(vcpu, gpr);
1064 break;
1065#endif
Jose Ricardo Ziviani09f98492018-02-03 18:24:26 -02001066#ifdef CONFIG_ALTIVEC
1067 case KVM_MMIO_REG_VMX:
1068 kvmppc_set_vmx_dword(vcpu, gpr);
1069 break;
1070#endif
Alexander Grafb104d062010-02-19 11:00:29 +01001071 default:
1072 BUG();
1073 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001074}
1075
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001076static int __kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1077 unsigned int rt, unsigned int bytes,
1078 int is_default_endian, int sign_extend)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001079{
Scott Wooded840ee2013-04-26 14:53:39 +00001080 int idx, ret;
David Gibsond078eed2015-02-03 16:36:24 +11001081 bool host_swabbed;
Cédric Le Goater73601772014-01-09 11:51:16 +01001082
David Gibsond078eed2015-02-03 16:36:24 +11001083 /* Pity C doesn't have a logical XOR operator */
Cédric Le Goater73601772014-01-09 11:51:16 +01001084 if (kvmppc_need_byteswap(vcpu)) {
David Gibsond078eed2015-02-03 16:36:24 +11001085 host_swabbed = is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001086 } else {
David Gibsond078eed2015-02-03 16:36:24 +11001087 host_swabbed = !is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001088 }
Scott Wooded840ee2013-04-26 14:53:39 +00001089
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001090 if (bytes > sizeof(run->mmio.data)) {
1091 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
1092 run->mmio.len);
1093 }
1094
1095 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1096 run->mmio.len = bytes;
1097 run->mmio.is_write = 0;
1098
1099 vcpu->arch.io_gpr = rt;
David Gibsond078eed2015-02-03 16:36:24 +11001100 vcpu->arch.mmio_host_swabbed = host_swabbed;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001101 vcpu->mmio_needed = 1;
1102 vcpu->mmio_is_write = 0;
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001103 vcpu->arch.mmio_sign_extend = sign_extend;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001104
Scott Wooded840ee2013-04-26 14:53:39 +00001105 idx = srcu_read_lock(&vcpu->kvm->srcu);
1106
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001107 ret = kvm_io_bus_read(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
Scott Wooded840ee2013-04-26 14:53:39 +00001108 bytes, &run->mmio.data);
1109
1110 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1111
1112 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +02001113 kvmppc_complete_mmio_load(vcpu, run);
1114 vcpu->mmio_needed = 0;
1115 return EMULATE_DONE;
1116 }
1117
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001118 return EMULATE_DO_MMIO;
1119}
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001120
1121int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1122 unsigned int rt, unsigned int bytes,
1123 int is_default_endian)
1124{
1125 return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 0);
1126}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301127EXPORT_SYMBOL_GPL(kvmppc_handle_load);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001128
Alexander Graf3587d532010-02-19 11:00:30 +01001129/* Same as above, but sign extends */
1130int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +01001131 unsigned int rt, unsigned int bytes,
1132 int is_default_endian)
Alexander Graf3587d532010-02-19 11:00:30 +01001133{
Paul Mackerraseb8b0562016-05-05 16:17:10 +10001134 return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 1);
Alexander Graf3587d532010-02-19 11:00:30 +01001135}
1136
Bin Lu6f63e812017-02-21 21:12:36 +08001137#ifdef CONFIG_VSX
1138int kvmppc_handle_vsx_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
1139 unsigned int rt, unsigned int bytes,
1140 int is_default_endian, int mmio_sign_extend)
1141{
1142 enum emulation_result emulated = EMULATE_DONE;
1143
Paul Mackerras9aa68252017-11-20 19:56:27 +11001144 /* Currently, mmio_vsx_copy_nums only allowed to be 4 or less */
1145 if (vcpu->arch.mmio_vsx_copy_nums > 4)
Bin Lu6f63e812017-02-21 21:12:36 +08001146 return EMULATE_FAIL;
Bin Lu6f63e812017-02-21 21:12:36 +08001147
1148 while (vcpu->arch.mmio_vsx_copy_nums) {
1149 emulated = __kvmppc_handle_load(run, vcpu, rt, bytes,
1150 is_default_endian, mmio_sign_extend);
1151
1152 if (emulated != EMULATE_DONE)
1153 break;
1154
1155 vcpu->arch.paddr_accessed += run->mmio.len;
1156
1157 vcpu->arch.mmio_vsx_copy_nums--;
1158 vcpu->arch.mmio_vsx_offset++;
1159 }
1160 return emulated;
1161}
1162#endif /* CONFIG_VSX */
1163
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001164int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +01001165 u64 val, unsigned int bytes, int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001166{
1167 void *data = run->mmio.data;
Scott Wooded840ee2013-04-26 14:53:39 +00001168 int idx, ret;
David Gibsond078eed2015-02-03 16:36:24 +11001169 bool host_swabbed;
Cédric Le Goater73601772014-01-09 11:51:16 +01001170
David Gibsond078eed2015-02-03 16:36:24 +11001171 /* Pity C doesn't have a logical XOR operator */
Cédric Le Goater73601772014-01-09 11:51:16 +01001172 if (kvmppc_need_byteswap(vcpu)) {
David Gibsond078eed2015-02-03 16:36:24 +11001173 host_swabbed = is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001174 } else {
David Gibsond078eed2015-02-03 16:36:24 +11001175 host_swabbed = !is_default_endian;
Cédric Le Goater73601772014-01-09 11:51:16 +01001176 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001177
1178 if (bytes > sizeof(run->mmio.data)) {
1179 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
1180 run->mmio.len);
1181 }
1182
1183 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1184 run->mmio.len = bytes;
1185 run->mmio.is_write = 1;
1186 vcpu->mmio_needed = 1;
1187 vcpu->mmio_is_write = 1;
1188
Bin Lu6f63e812017-02-21 21:12:36 +08001189 if ((vcpu->arch.mmio_sp64_extend) && (bytes == 4))
1190 val = dp_to_sp(val);
1191
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001192 /* Store the value at the lowest bytes in 'data'. */
David Gibsond078eed2015-02-03 16:36:24 +11001193 if (!host_swabbed) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001194 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +01001195 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001196 case 4: *(u32 *)data = val; break;
1197 case 2: *(u16 *)data = val; break;
1198 case 1: *(u8 *)data = val; break;
1199 }
1200 } else {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001201 switch (bytes) {
David Gibsond078eed2015-02-03 16:36:24 +11001202 case 8: *(u64 *)data = swab64(val); break;
1203 case 4: *(u32 *)data = swab32(val); break;
1204 case 2: *(u16 *)data = swab16(val); break;
1205 case 1: *(u8 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001206 }
1207 }
1208
Scott Wooded840ee2013-04-26 14:53:39 +00001209 idx = srcu_read_lock(&vcpu->kvm->srcu);
1210
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00001211 ret = kvm_io_bus_write(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
Scott Wooded840ee2013-04-26 14:53:39 +00001212 bytes, &run->mmio.data);
1213
1214 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1215
1216 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +02001217 vcpu->mmio_needed = 0;
1218 return EMULATE_DONE;
1219 }
1220
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001221 return EMULATE_DO_MMIO;
1222}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301223EXPORT_SYMBOL_GPL(kvmppc_handle_store);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001224
Bin Lu6f63e812017-02-21 21:12:36 +08001225#ifdef CONFIG_VSX
1226static inline int kvmppc_get_vsr_data(struct kvm_vcpu *vcpu, int rs, u64 *val)
1227{
1228 u32 dword_offset, word_offset;
1229 union kvmppc_one_reg reg;
1230 int vsx_offset = 0;
1231 int copy_type = vcpu->arch.mmio_vsx_copy_type;
1232 int result = 0;
1233
1234 switch (copy_type) {
1235 case KVMPPC_VSX_COPY_DWORD:
1236 vsx_offset =
1237 kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
1238
1239 if (vsx_offset == -1) {
1240 result = -1;
1241 break;
1242 }
1243
1244 if (!vcpu->arch.mmio_vsx_tx_sx_enabled) {
1245 *val = VCPU_VSX_FPR(vcpu, rs, vsx_offset);
1246 } else {
1247 reg.vval = VCPU_VSX_VR(vcpu, rs);
1248 *val = reg.vsxval[vsx_offset];
1249 }
1250 break;
1251
1252 case KVMPPC_VSX_COPY_WORD:
1253 vsx_offset =
1254 kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
1255
1256 if (vsx_offset == -1) {
1257 result = -1;
1258 break;
1259 }
1260
1261 if (!vcpu->arch.mmio_vsx_tx_sx_enabled) {
1262 dword_offset = vsx_offset / 2;
1263 word_offset = vsx_offset % 2;
1264 reg.vsxval[0] = VCPU_VSX_FPR(vcpu, rs, dword_offset);
1265 *val = reg.vsx32val[word_offset];
1266 } else {
1267 reg.vval = VCPU_VSX_VR(vcpu, rs);
1268 *val = reg.vsx32val[vsx_offset];
1269 }
1270 break;
1271
1272 default:
1273 result = -1;
1274 break;
1275 }
1276
1277 return result;
1278}
1279
1280int kvmppc_handle_vsx_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
1281 int rs, unsigned int bytes, int is_default_endian)
1282{
1283 u64 val;
1284 enum emulation_result emulated = EMULATE_DONE;
1285
1286 vcpu->arch.io_gpr = rs;
1287
Paul Mackerras9aa68252017-11-20 19:56:27 +11001288 /* Currently, mmio_vsx_copy_nums only allowed to be 4 or less */
1289 if (vcpu->arch.mmio_vsx_copy_nums > 4)
Bin Lu6f63e812017-02-21 21:12:36 +08001290 return EMULATE_FAIL;
Bin Lu6f63e812017-02-21 21:12:36 +08001291
1292 while (vcpu->arch.mmio_vsx_copy_nums) {
1293 if (kvmppc_get_vsr_data(vcpu, rs, &val) == -1)
1294 return EMULATE_FAIL;
1295
1296 emulated = kvmppc_handle_store(run, vcpu,
1297 val, bytes, is_default_endian);
1298
1299 if (emulated != EMULATE_DONE)
1300 break;
1301
1302 vcpu->arch.paddr_accessed += run->mmio.len;
1303
1304 vcpu->arch.mmio_vsx_copy_nums--;
1305 vcpu->arch.mmio_vsx_offset++;
1306 }
1307
1308 return emulated;
1309}
1310
1311static int kvmppc_emulate_mmio_vsx_loadstore(struct kvm_vcpu *vcpu,
1312 struct kvm_run *run)
1313{
1314 enum emulation_result emulated = EMULATE_FAIL;
1315 int r;
1316
1317 vcpu->arch.paddr_accessed += run->mmio.len;
1318
1319 if (!vcpu->mmio_is_write) {
1320 emulated = kvmppc_handle_vsx_load(run, vcpu, vcpu->arch.io_gpr,
1321 run->mmio.len, 1, vcpu->arch.mmio_sign_extend);
1322 } else {
1323 emulated = kvmppc_handle_vsx_store(run, vcpu,
1324 vcpu->arch.io_gpr, run->mmio.len, 1);
1325 }
1326
1327 switch (emulated) {
1328 case EMULATE_DO_MMIO:
1329 run->exit_reason = KVM_EXIT_MMIO;
1330 r = RESUME_HOST;
1331 break;
1332 case EMULATE_FAIL:
1333 pr_info("KVM: MMIO emulation failed (VSX repeat)\n");
1334 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1335 run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
1336 r = RESUME_HOST;
1337 break;
1338 default:
1339 r = RESUME_GUEST;
1340 break;
1341 }
1342 return r;
1343}
1344#endif /* CONFIG_VSX */
1345
Jose Ricardo Ziviani09f98492018-02-03 18:24:26 -02001346#ifdef CONFIG_ALTIVEC
1347/* handle quadword load access in two halves */
1348int kvmppc_handle_load128_by2x64(struct kvm_run *run, struct kvm_vcpu *vcpu,
1349 unsigned int rt, int is_default_endian)
1350{
Paul Mackerras6df38772018-02-13 15:45:21 +11001351 enum emulation_result emulated = EMULATE_DONE;
Jose Ricardo Ziviani09f98492018-02-03 18:24:26 -02001352
1353 while (vcpu->arch.mmio_vmx_copy_nums) {
1354 emulated = __kvmppc_handle_load(run, vcpu, rt, 8,
1355 is_default_endian, 0);
1356
1357 if (emulated != EMULATE_DONE)
1358 break;
1359
1360 vcpu->arch.paddr_accessed += run->mmio.len;
1361 vcpu->arch.mmio_vmx_copy_nums--;
1362 }
1363
1364 return emulated;
1365}
1366
1367static inline int kvmppc_get_vmx_data(struct kvm_vcpu *vcpu, int rs, u64 *val)
1368{
1369 vector128 vrs = VCPU_VSX_VR(vcpu, rs);
1370 u32 di;
1371 u64 w0, w1;
1372
1373 di = 2 - vcpu->arch.mmio_vmx_copy_nums; /* doubleword index */
1374 if (di > 1)
1375 return -1;
1376
1377 if (vcpu->arch.mmio_host_swabbed)
1378 di = 1 - di;
1379
1380 w0 = vrs.u[di * 2];
1381 w1 = vrs.u[di * 2 + 1];
1382
1383#ifdef __BIG_ENDIAN
1384 *val = (w0 << 32) | w1;
1385#else
1386 *val = (w1 << 32) | w0;
1387#endif
1388 return 0;
1389}
1390
1391/* handle quadword store in two halves */
1392int kvmppc_handle_store128_by2x64(struct kvm_run *run, struct kvm_vcpu *vcpu,
1393 unsigned int rs, int is_default_endian)
1394{
1395 u64 val = 0;
1396 enum emulation_result emulated = EMULATE_DONE;
1397
1398 vcpu->arch.io_gpr = rs;
1399
1400 while (vcpu->arch.mmio_vmx_copy_nums) {
1401 if (kvmppc_get_vmx_data(vcpu, rs, &val) == -1)
1402 return EMULATE_FAIL;
1403
1404 emulated = kvmppc_handle_store(run, vcpu, val, 8,
1405 is_default_endian);
1406 if (emulated != EMULATE_DONE)
1407 break;
1408
1409 vcpu->arch.paddr_accessed += run->mmio.len;
1410 vcpu->arch.mmio_vmx_copy_nums--;
1411 }
1412
1413 return emulated;
1414}
1415
1416static int kvmppc_emulate_mmio_vmx_loadstore(struct kvm_vcpu *vcpu,
1417 struct kvm_run *run)
1418{
1419 enum emulation_result emulated = EMULATE_FAIL;
1420 int r;
1421
1422 vcpu->arch.paddr_accessed += run->mmio.len;
1423
1424 if (!vcpu->mmio_is_write) {
1425 emulated = kvmppc_handle_load128_by2x64(run, vcpu,
1426 vcpu->arch.io_gpr, 1);
1427 } else {
1428 emulated = kvmppc_handle_store128_by2x64(run, vcpu,
1429 vcpu->arch.io_gpr, 1);
1430 }
1431
1432 switch (emulated) {
1433 case EMULATE_DO_MMIO:
1434 run->exit_reason = KVM_EXIT_MMIO;
1435 r = RESUME_HOST;
1436 break;
1437 case EMULATE_FAIL:
1438 pr_info("KVM: MMIO emulation failed (VMX repeat)\n");
1439 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1440 run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
1441 r = RESUME_HOST;
1442 break;
1443 default:
1444 r = RESUME_GUEST;
1445 break;
1446 }
1447 return r;
1448}
1449#endif /* CONFIG_ALTIVEC */
1450
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001451int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1452{
1453 int r = 0;
1454 union kvmppc_one_reg val;
1455 int size;
1456
1457 size = one_reg_size(reg->id);
1458 if (size > sizeof(val))
1459 return -EINVAL;
1460
1461 r = kvmppc_get_one_reg(vcpu, reg->id, &val);
1462 if (r == -EINVAL) {
1463 r = 0;
1464 switch (reg->id) {
Mihai Caraman3840edc2014-08-20 16:36:25 +03001465#ifdef CONFIG_ALTIVEC
1466 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1467 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1468 r = -ENXIO;
1469 break;
1470 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001471 val.vval = vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0];
Mihai Caraman3840edc2014-08-20 16:36:25 +03001472 break;
1473 case KVM_REG_PPC_VSCR:
1474 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1475 r = -ENXIO;
1476 break;
1477 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001478 val = get_reg_val(reg->id, vcpu->arch.vr.vscr.u[3]);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001479 break;
1480 case KVM_REG_PPC_VRSAVE:
Greg Kurzb4d7f162016-01-13 18:28:17 +01001481 val = get_reg_val(reg->id, vcpu->arch.vrsave);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001482 break;
1483#endif /* CONFIG_ALTIVEC */
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001484 default:
1485 r = -EINVAL;
1486 break;
1487 }
1488 }
1489
1490 if (r)
1491 return r;
1492
1493 if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size))
1494 r = -EFAULT;
1495
1496 return r;
1497}
1498
1499int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1500{
1501 int r;
1502 union kvmppc_one_reg val;
1503 int size;
1504
1505 size = one_reg_size(reg->id);
1506 if (size > sizeof(val))
1507 return -EINVAL;
1508
1509 if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size))
1510 return -EFAULT;
1511
1512 r = kvmppc_set_one_reg(vcpu, reg->id, &val);
1513 if (r == -EINVAL) {
1514 r = 0;
1515 switch (reg->id) {
Mihai Caraman3840edc2014-08-20 16:36:25 +03001516#ifdef CONFIG_ALTIVEC
1517 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1518 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1519 r = -ENXIO;
1520 break;
1521 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001522 vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0] = val.vval;
Mihai Caraman3840edc2014-08-20 16:36:25 +03001523 break;
1524 case KVM_REG_PPC_VSCR:
1525 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1526 r = -ENXIO;
1527 break;
1528 }
Greg Kurzb4d7f162016-01-13 18:28:17 +01001529 vcpu->arch.vr.vscr.u[3] = set_reg_val(reg->id, val);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001530 break;
1531 case KVM_REG_PPC_VRSAVE:
Greg Kurzb4d7f162016-01-13 18:28:17 +01001532 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1533 r = -ENXIO;
1534 break;
1535 }
1536 vcpu->arch.vrsave = set_reg_val(reg->id, val);
Mihai Caraman3840edc2014-08-20 16:36:25 +03001537 break;
1538#endif /* CONFIG_ALTIVEC */
Mihai Caraman8a41ea52014-08-20 16:36:24 +03001539 default:
1540 r = -EINVAL;
1541 break;
1542 }
1543 }
1544
1545 return r;
1546}
1547
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001548int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
1549{
1550 int r;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001551
Christoffer Dallaccb7572017-12-04 21:35:25 +01001552 vcpu_load(vcpu);
1553
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001554 if (vcpu->mmio_needed) {
Bin Lu6f63e812017-02-21 21:12:36 +08001555 vcpu->mmio_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001556 if (!vcpu->mmio_is_write)
1557 kvmppc_complete_mmio_load(vcpu, run);
Bin Lu6f63e812017-02-21 21:12:36 +08001558#ifdef CONFIG_VSX
1559 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1560 vcpu->arch.mmio_vsx_copy_nums--;
1561 vcpu->arch.mmio_vsx_offset++;
1562 }
1563
1564 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1565 r = kvmppc_emulate_mmio_vsx_loadstore(vcpu, run);
1566 if (r == RESUME_HOST) {
1567 vcpu->mmio_needed = 1;
Christoffer Dallaccb7572017-12-04 21:35:25 +01001568 goto out;
Bin Lu6f63e812017-02-21 21:12:36 +08001569 }
1570 }
1571#endif
Jose Ricardo Ziviani09f98492018-02-03 18:24:26 -02001572#ifdef CONFIG_ALTIVEC
1573 if (vcpu->arch.mmio_vmx_copy_nums > 0)
1574 vcpu->arch.mmio_vmx_copy_nums--;
1575
1576 if (vcpu->arch.mmio_vmx_copy_nums > 0) {
1577 r = kvmppc_emulate_mmio_vmx_loadstore(vcpu, run);
1578 if (r == RESUME_HOST) {
1579 vcpu->mmio_needed = 1;
Radim Krčmář1ab03c02018-02-09 21:36:57 +01001580 goto out;
Jose Ricardo Ziviani09f98492018-02-03 18:24:26 -02001581 }
1582 }
1583#endif
Alexander Grafad0a0482010-03-24 21:48:30 +01001584 } else if (vcpu->arch.osi_needed) {
1585 u64 *gprs = run->osi.gprs;
1586 int i;
1587
1588 for (i = 0; i < 32; i++)
1589 kvmppc_set_gpr(vcpu, i, gprs[i]);
1590 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001591 } else if (vcpu->arch.hcall_needed) {
1592 int i;
1593
1594 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
1595 for (i = 0; i < 9; ++i)
1596 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
1597 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +01001598#ifdef CONFIG_BOOKE
1599 } else if (vcpu->arch.epr_needed) {
1600 kvmppc_set_epr(vcpu, run->epr.epr);
1601 vcpu->arch.epr_needed = 0;
1602#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001603 }
1604
Jan H. Schönherr20b70352017-11-24 22:39:01 +01001605 kvm_sigset_activate(vcpu);
Bin Lu6f63e812017-02-21 21:12:36 +08001606
Paolo Bonzini460df4c2017-02-08 11:50:15 +01001607 if (run->immediate_exit)
1608 r = -EINTR;
1609 else
1610 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001611
Jan H. Schönherr20b70352017-11-24 22:39:01 +01001612 kvm_sigset_deactivate(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001613
Paul Mackerrasc662f772018-02-13 15:16:01 +11001614#ifdef CONFIG_ALTIVEC
Christoffer Dallaccb7572017-12-04 21:35:25 +01001615out:
Paul Mackerrasc662f772018-02-13 15:16:01 +11001616#endif
Christoffer Dallaccb7572017-12-04 21:35:25 +01001617 vcpu_put(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001618 return r;
1619}
1620
1621int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
1622{
Paul Mackerras19ccb762011-07-23 17:42:46 +10001623 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +00001624 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001625 return 0;
1626 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -05001627
Paul Mackerras19ccb762011-07-23 17:42:46 +10001628 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -05001629
Scott Wooddfd4d472011-11-17 12:39:59 +00001630 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -05001631
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001632 return 0;
1633}
1634
Alexander Graf71fbfd52010-03-24 21:48:29 +01001635static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
1636 struct kvm_enable_cap *cap)
1637{
1638 int r;
1639
1640 if (cap->flags)
1641 return -EINVAL;
1642
1643 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +01001644 case KVM_CAP_PPC_OSI:
1645 r = 0;
1646 vcpu->arch.osi_enabled = true;
1647 break;
Alexander Graf930b4122011-08-08 17:29:42 +02001648 case KVM_CAP_PPC_PAPR:
1649 r = 0;
1650 vcpu->arch.papr_enabled = true;
1651 break;
Alexander Graf1c810632013-01-04 18:12:48 +01001652 case KVM_CAP_PPC_EPR:
1653 r = 0;
Scott Wood5df554ad2013-04-12 14:08:46 +00001654 if (cap->args[0])
1655 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
1656 else
1657 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +01001658 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +00001659#ifdef CONFIG_BOOKE
1660 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1661 r = 0;
1662 vcpu->arch.watchdog_enabled = true;
1663 break;
1664#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001665#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001666 case KVM_CAP_SW_TLB: {
1667 struct kvm_config_tlb cfg;
1668 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
1669
1670 r = -EFAULT;
1671 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
1672 break;
1673
1674 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
1675 break;
1676 }
1677#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +00001678#ifdef CONFIG_KVM_MPIC
1679 case KVM_CAP_IRQ_MPIC: {
Al Viro70abade2013-08-30 15:04:22 -04001680 struct fd f;
Scott Woodeb1e4f42013-04-12 14:08:47 +00001681 struct kvm_device *dev;
1682
1683 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -04001684 f = fdget(cap->args[0]);
1685 if (!f.file)
Scott Woodeb1e4f42013-04-12 14:08:47 +00001686 break;
1687
1688 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -04001689 dev = kvm_device_from_filp(f.file);
Scott Woodeb1e4f42013-04-12 14:08:47 +00001690 if (dev)
1691 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
1692
Al Viro70abade2013-08-30 15:04:22 -04001693 fdput(f);
Scott Woodeb1e4f42013-04-12 14:08:47 +00001694 break;
1695 }
1696#endif
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001697#ifdef CONFIG_KVM_XICS
1698 case KVM_CAP_IRQ_XICS: {
Al Viro70abade2013-08-30 15:04:22 -04001699 struct fd f;
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001700 struct kvm_device *dev;
1701
1702 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -04001703 f = fdget(cap->args[0]);
1704 if (!f.file)
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001705 break;
1706
1707 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -04001708 dev = kvm_device_from_filp(f.file);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001709 if (dev) {
1710 if (xive_enabled())
1711 r = kvmppc_xive_connect_vcpu(dev, vcpu, cap->args[1]);
1712 else
1713 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
1714 }
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001715
Al Viro70abade2013-08-30 15:04:22 -04001716 fdput(f);
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001717 break;
1718 }
1719#endif /* CONFIG_KVM_XICS */
Aravinda Prasad134764e2017-05-11 16:32:48 +05301720#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
1721 case KVM_CAP_PPC_FWNMI:
1722 r = -EINVAL;
1723 if (!is_kvmppc_hv_enabled(vcpu->kvm))
1724 break;
1725 r = 0;
1726 vcpu->kvm->arch.fwnmi_enabled = true;
1727 break;
1728#endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */
Alexander Graf71fbfd52010-03-24 21:48:29 +01001729 default:
1730 r = -EINVAL;
1731 break;
1732 }
1733
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001734 if (!r)
1735 r = kvmppc_sanity_check(vcpu);
1736
Alexander Graf71fbfd52010-03-24 21:48:29 +01001737 return r;
1738}
1739
Paul Mackerras34a75b02016-08-10 11:27:27 +10001740bool kvm_arch_intc_initialized(struct kvm *kvm)
1741{
1742#ifdef CONFIG_KVM_MPIC
1743 if (kvm->arch.mpic)
1744 return true;
1745#endif
1746#ifdef CONFIG_KVM_XICS
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001747 if (kvm->arch.xics || kvm->arch.xive)
Paul Mackerras34a75b02016-08-10 11:27:27 +10001748 return true;
1749#endif
1750 return false;
1751}
1752
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001753int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
1754 struct kvm_mp_state *mp_state)
1755{
1756 return -EINVAL;
1757}
1758
1759int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
1760 struct kvm_mp_state *mp_state)
1761{
1762 return -EINVAL;
1763}
1764
Paolo Bonzini5cb09442017-12-12 17:41:34 +01001765long kvm_arch_vcpu_async_ioctl(struct file *filp,
1766 unsigned int ioctl, unsigned long arg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001767{
1768 struct kvm_vcpu *vcpu = filp->private_data;
1769 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001770
Christoffer Dall9b0624712017-12-04 21:35:36 +01001771 if (ioctl == KVM_INTERRUPT) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001772 struct kvm_interrupt irq;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001773 if (copy_from_user(&irq, argp, sizeof(irq)))
Christoffer Dall9b0624712017-12-04 21:35:36 +01001774 return -EFAULT;
1775 return kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001776 }
Paolo Bonzini5cb09442017-12-12 17:41:34 +01001777 return -ENOIOCTLCMD;
1778}
1779
1780long kvm_arch_vcpu_ioctl(struct file *filp,
1781 unsigned int ioctl, unsigned long arg)
1782{
1783 struct kvm_vcpu *vcpu = filp->private_data;
1784 void __user *argp = (void __user *)arg;
1785 long r;
Avi Kivity19483d12010-05-13 12:30:43 +03001786
Christoffer Dall9b0624712017-12-04 21:35:36 +01001787 vcpu_load(vcpu);
1788
1789 switch (ioctl) {
Alexander Graf71fbfd52010-03-24 21:48:29 +01001790 case KVM_ENABLE_CAP:
1791 {
1792 struct kvm_enable_cap cap;
1793 r = -EFAULT;
1794 if (copy_from_user(&cap, argp, sizeof(cap)))
1795 goto out;
1796 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1797 break;
1798 }
Scott Wooddc83b8b2011-08-18 15:25:21 -05001799
Alexander Grafe24ed812011-09-14 10:02:41 +02001800 case KVM_SET_ONE_REG:
1801 case KVM_GET_ONE_REG:
1802 {
1803 struct kvm_one_reg reg;
1804 r = -EFAULT;
1805 if (copy_from_user(&reg, argp, sizeof(reg)))
1806 goto out;
1807 if (ioctl == KVM_SET_ONE_REG)
1808 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
1809 else
1810 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
1811 break;
1812 }
1813
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001814#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001815 case KVM_DIRTY_TLB: {
1816 struct kvm_dirty_tlb dirty;
1817 r = -EFAULT;
1818 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1819 goto out;
1820 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1821 break;
1822 }
1823#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001824 default:
1825 r = -EINVAL;
1826 }
1827
1828out:
Christoffer Dall9b0624712017-12-04 21:35:36 +01001829 vcpu_put(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001830 return r;
1831}
1832
Souptick Joarder1499fa82018-04-19 00:49:58 +05301833vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Carsten Otte5b1c1492012-01-04 10:25:23 +01001834{
1835 return VM_FAULT_SIGBUS;
1836}
1837
Alexander Graf15711e92010-07-29 14:48:08 +02001838static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1839{
Stuart Yoder784bafa2012-07-03 05:48:51 +00001840 u32 inst_nop = 0x60000000;
1841#ifdef CONFIG_KVM_BOOKE_HV
1842 u32 inst_sc1 = 0x44000022;
Alexander Graf27431032014-04-24 13:39:16 +02001843 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
1844 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
1845 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
1846 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001847#else
Alexander Graf15711e92010-07-29 14:48:08 +02001848 u32 inst_lis = 0x3c000000;
1849 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +02001850 u32 inst_sc = 0x44000002;
1851 u32 inst_imm_mask = 0xffff;
1852
1853 /*
1854 * The hypercall to get into KVM from within guest context is as
1855 * follows:
1856 *
1857 * lis r0, r0, KVM_SC_MAGIC_R0@h
1858 * ori r0, KVM_SC_MAGIC_R0@l
1859 * sc
1860 * nop
1861 */
Alexander Graf27431032014-04-24 13:39:16 +02001862 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
1863 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
1864 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
1865 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001866#endif
Alexander Graf15711e92010-07-29 14:48:08 +02001867
Liu Yu-B132019202e072012-07-03 05:48:52 +00001868 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1869
Alexander Graf15711e92010-07-29 14:48:08 +02001870 return 0;
1871}
1872
Alexander Graf5efdb4b2013-04-17 00:37:57 +02001873int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1874 bool line_status)
1875{
1876 if (!irqchip_in_kernel(kvm))
1877 return -ENXIO;
1878
1879 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1880 irq_event->irq, irq_event->level,
1881 line_status);
1882 return 0;
1883}
1884
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001885
1886static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1887 struct kvm_enable_cap *cap)
1888{
1889 int r;
1890
1891 if (cap->flags)
1892 return -EINVAL;
1893
1894 switch (cap->cap) {
1895#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1896 case KVM_CAP_PPC_ENABLE_HCALL: {
1897 unsigned long hcall = cap->args[0];
1898
1899 r = -EINVAL;
1900 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
1901 cap->args[1] > 1)
1902 break;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001903 if (!kvmppc_book3s_hcall_implemented(kvm, hcall))
1904 break;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001905 if (cap->args[1])
1906 set_bit(hcall / 4, kvm->arch.enabled_hcalls);
1907 else
1908 clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
1909 r = 0;
1910 break;
1911 }
Paul Mackerras3c313522017-02-06 13:24:41 +11001912 case KVM_CAP_PPC_SMT: {
1913 unsigned long mode = cap->args[0];
1914 unsigned long flags = cap->args[1];
1915
1916 r = -EINVAL;
1917 if (kvm->arch.kvm_ops->set_smt_mode)
1918 r = kvm->arch.kvm_ops->set_smt_mode(kvm, mode, flags);
1919 break;
1920 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001921#endif
1922 default:
1923 r = -EINVAL;
1924 break;
1925 }
1926
1927 return r;
1928}
1929
Paul Mackerras3214d012018-01-15 16:06:47 +11001930#ifdef CONFIG_PPC_BOOK3S_64
1931/*
1932 * These functions check whether the underlying hardware is safe
1933 * against attacks based on observing the effects of speculatively
1934 * executed instructions, and whether it supplies instructions for
1935 * use in workarounds. The information comes from firmware, either
1936 * via the device tree on powernv platforms or from an hcall on
1937 * pseries platforms.
1938 */
1939#ifdef CONFIG_PPC_PSERIES
1940static int pseries_get_cpu_char(struct kvm_ppc_cpu_char *cp)
1941{
1942 struct h_cpu_char_result c;
1943 unsigned long rc;
1944
1945 if (!machine_is(pseries))
1946 return -ENOTTY;
1947
1948 rc = plpar_get_cpu_characteristics(&c);
1949 if (rc == H_SUCCESS) {
1950 cp->character = c.character;
1951 cp->behaviour = c.behaviour;
1952 cp->character_mask = KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31 |
1953 KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED |
1954 KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30 |
1955 KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2 |
1956 KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV |
1957 KVM_PPC_CPU_CHAR_BR_HINT_HONOURED |
1958 KVM_PPC_CPU_CHAR_MTTRIG_THR_RECONF |
1959 KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS;
1960 cp->behaviour_mask = KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY |
1961 KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR |
1962 KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR;
1963 }
1964 return 0;
1965}
1966#else
1967static int pseries_get_cpu_char(struct kvm_ppc_cpu_char *cp)
1968{
1969 return -ENOTTY;
1970}
1971#endif
1972
1973static inline bool have_fw_feat(struct device_node *fw_features,
1974 const char *state, const char *name)
1975{
1976 struct device_node *np;
1977 bool r = false;
1978
1979 np = of_get_child_by_name(fw_features, name);
1980 if (np) {
1981 r = of_property_read_bool(np, state);
1982 of_node_put(np);
1983 }
1984 return r;
1985}
1986
1987static int kvmppc_get_cpu_char(struct kvm_ppc_cpu_char *cp)
1988{
1989 struct device_node *np, *fw_features;
1990 int r;
1991
1992 memset(cp, 0, sizeof(*cp));
1993 r = pseries_get_cpu_char(cp);
1994 if (r != -ENOTTY)
1995 return r;
1996
1997 np = of_find_node_by_name(NULL, "ibm,opal");
1998 if (np) {
1999 fw_features = of_get_child_by_name(np, "fw-features");
2000 of_node_put(np);
2001 if (!fw_features)
2002 return 0;
2003 if (have_fw_feat(fw_features, "enabled",
2004 "inst-spec-barrier-ori31,31,0"))
2005 cp->character |= KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31;
2006 if (have_fw_feat(fw_features, "enabled",
2007 "fw-bcctrl-serialized"))
2008 cp->character |= KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED;
2009 if (have_fw_feat(fw_features, "enabled",
2010 "inst-l1d-flush-ori30,30,0"))
2011 cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30;
2012 if (have_fw_feat(fw_features, "enabled",
2013 "inst-l1d-flush-trig2"))
2014 cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2;
2015 if (have_fw_feat(fw_features, "enabled",
2016 "fw-l1d-thread-split"))
2017 cp->character |= KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV;
2018 if (have_fw_feat(fw_features, "enabled",
2019 "fw-count-cache-disabled"))
2020 cp->character |= KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS;
2021 cp->character_mask = KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31 |
2022 KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED |
2023 KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30 |
2024 KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2 |
2025 KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV |
2026 KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS;
2027
2028 if (have_fw_feat(fw_features, "enabled",
2029 "speculation-policy-favor-security"))
2030 cp->behaviour |= KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY;
2031 if (!have_fw_feat(fw_features, "disabled",
2032 "needs-l1d-flush-msr-pr-0-to-1"))
2033 cp->behaviour |= KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR;
2034 if (!have_fw_feat(fw_features, "disabled",
2035 "needs-spec-barrier-for-bound-checks"))
2036 cp->behaviour |= KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR;
2037 cp->behaviour_mask = KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY |
2038 KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR |
2039 KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR;
2040
2041 of_node_put(fw_features);
2042 }
2043
2044 return 0;
2045}
2046#endif
2047
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05002048long kvm_arch_vm_ioctl(struct file *filp,
2049 unsigned int ioctl, unsigned long arg)
2050{
Scott Wood5df554ad2013-04-12 14:08:46 +00002051 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +02002052 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05002053 long r;
2054
2055 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +02002056 case KVM_PPC_GET_PVINFO: {
2057 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +04002058 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +02002059 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
2060 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
2061 r = -EFAULT;
2062 goto out;
2063 }
2064
2065 break;
2066 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10002067 case KVM_ENABLE_CAP:
2068 {
2069 struct kvm_enable_cap cap;
2070 r = -EFAULT;
2071 if (copy_from_user(&cap, argp, sizeof(cap)))
2072 goto out;
2073 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
2074 break;
2075 }
Paul Mackerras76d837a2017-05-11 14:31:59 +10002076#ifdef CONFIG_SPAPR_TCE_IOMMU
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11002077 case KVM_CREATE_SPAPR_TCE_64: {
2078 struct kvm_create_spapr_tce_64 create_tce_64;
2079
2080 r = -EFAULT;
2081 if (copy_from_user(&create_tce_64, argp, sizeof(create_tce_64)))
2082 goto out;
2083 if (create_tce_64.flags) {
2084 r = -EINVAL;
2085 goto out;
2086 }
2087 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
2088 goto out;
2089 }
David Gibson54738c02011-06-29 00:22:41 +00002090 case KVM_CREATE_SPAPR_TCE: {
2091 struct kvm_create_spapr_tce create_tce;
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11002092 struct kvm_create_spapr_tce_64 create_tce_64;
David Gibson54738c02011-06-29 00:22:41 +00002093
2094 r = -EFAULT;
2095 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
2096 goto out;
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11002097
2098 create_tce_64.liobn = create_tce.liobn;
2099 create_tce_64.page_shift = IOMMU_PAGE_SHIFT_4K;
2100 create_tce_64.offset = 0;
2101 create_tce_64.size = create_tce.window_size >>
2102 IOMMU_PAGE_SHIFT_4K;
2103 create_tce_64.flags = 0;
2104 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
David Gibson54738c02011-06-29 00:22:41 +00002105 goto out;
2106 }
Paul Mackerras76d837a2017-05-11 14:31:59 +10002107#endif
2108#ifdef CONFIG_PPC_BOOK3S_64
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002109 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002110 struct kvm_ppc_smmu_info info;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05302111 struct kvm *kvm = filp->private_data;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002112
2113 memset(&info, 0, sizeof(info));
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05302114 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002115 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
2116 r = -EFAULT;
2117 break;
2118 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00002119 case KVM_PPC_RTAS_DEFINE_TOKEN: {
2120 struct kvm *kvm = filp->private_data;
2121
2122 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
2123 break;
2124 }
Paul Mackerrasc9270132017-01-30 21:21:41 +11002125 case KVM_PPC_CONFIGURE_V3_MMU: {
2126 struct kvm *kvm = filp->private_data;
2127 struct kvm_ppc_mmuv3_cfg cfg;
2128
2129 r = -EINVAL;
2130 if (!kvm->arch.kvm_ops->configure_mmu)
2131 goto out;
2132 r = -EFAULT;
2133 if (copy_from_user(&cfg, argp, sizeof(cfg)))
2134 goto out;
2135 r = kvm->arch.kvm_ops->configure_mmu(kvm, &cfg);
2136 break;
2137 }
2138 case KVM_PPC_GET_RMMU_INFO: {
2139 struct kvm *kvm = filp->private_data;
2140 struct kvm_ppc_rmmu_info info;
2141
2142 r = -EINVAL;
2143 if (!kvm->arch.kvm_ops->get_rmmu_info)
2144 goto out;
2145 r = kvm->arch.kvm_ops->get_rmmu_info(kvm, &info);
2146 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
2147 r = -EFAULT;
2148 break;
2149 }
Paul Mackerras3214d012018-01-15 16:06:47 +11002150 case KVM_PPC_GET_CPU_CHAR: {
2151 struct kvm_ppc_cpu_char cpuchar;
2152
2153 r = kvmppc_get_cpu_char(&cpuchar);
2154 if (r >= 0 && copy_to_user(argp, &cpuchar, sizeof(cpuchar)))
2155 r = -EFAULT;
2156 break;
2157 }
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05302158 default: {
2159 struct kvm *kvm = filp->private_data;
2160 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
2161 }
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302162#else /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05002163 default:
Avi Kivity367e1312009-08-26 14:57:07 +03002164 r = -ENOTTY;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302165#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05002166 }
Alexander Graf15711e92010-07-29 14:48:08 +02002167out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05002168 return r;
2169}
2170
Scott Wood043cc4d2011-12-20 15:34:20 +00002171static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
2172static unsigned long nr_lpids;
2173
2174long kvmppc_alloc_lpid(void)
2175{
2176 long lpid;
2177
2178 do {
2179 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
2180 if (lpid >= nr_lpids) {
2181 pr_err("%s: No LPIDs free\n", __func__);
2182 return -ENOMEM;
2183 }
2184 } while (test_and_set_bit(lpid, lpid_inuse));
2185
2186 return lpid;
2187}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302188EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00002189
2190void kvmppc_claim_lpid(long lpid)
2191{
2192 set_bit(lpid, lpid_inuse);
2193}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302194EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00002195
2196void kvmppc_free_lpid(long lpid)
2197{
2198 clear_bit(lpid, lpid_inuse);
2199}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302200EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00002201
2202void kvmppc_init_lpid(unsigned long nr_lpids_param)
2203{
2204 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
2205 memset(lpid_inuse, 0, sizeof(lpid_inuse));
2206}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302207EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00002208
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05002209int kvm_arch_init(void *opaque)
2210{
2211 return 0;
2212}
2213
Paolo Bonzini478d66862014-08-05 11:29:07 +02002214EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ppc_instr);