blob: 8a26126db482db137b0a78589d6f42f33a33a61c [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>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050026#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Scott Woodeb1e4f42013-04-12 14:08:47 +000028#include <linux/file.h>
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +053029#include <linux/module.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050030#include <asm/cputable.h>
31#include <asm/uaccess.h>
32#include <asm/kvm_ppc.h>
Hollis Blanchard83aae4a2008-07-25 13:54:52 -050033#include <asm/tlbflush.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000034#include <asm/cputhreads.h>
Alexander Grafbd2be682012-08-13 01:04:19 +020035#include <asm/irqflags.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060036#include "timing.h"
Alexander Graf5efdb4b2013-04-17 00:37:57 +020037#include "irq.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110038#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050039
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030040#define CREATE_TRACE_POINTS
41#include "trace.h"
42
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +053043struct kvmppc_ops *kvmppc_hv_ops;
44EXPORT_SYMBOL_GPL(kvmppc_hv_ops);
45struct kvmppc_ops *kvmppc_pr_ops;
46EXPORT_SYMBOL_GPL(kvmppc_pr_ops);
47
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053048
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050049int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
50{
Liu Yu-B132019202e072012-07-03 05:48:52 +000051 return !!(v->arch.pending_exceptions) ||
Scott Wooddfd4d472011-11-17 12:39:59 +000052 v->requests;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050053}
54
Christoffer Dallb6d33832012-03-08 16:44:24 -050055int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
56{
57 return 1;
58}
59
Alexander Graf03d25c52012-08-10 12:28:50 +020060/*
61 * Common checks before entering the guest world. Call with interrupts
62 * disabled.
63 *
Alexander Graf7ee78852012-08-13 12:44:41 +020064 * returns:
65 *
66 * == 1 if we're ready to go into guest state
67 * <= 0 if we need to go back to the host with return value
Alexander Graf03d25c52012-08-10 12:28:50 +020068 */
69int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
70{
Scott Wood6c85f522014-01-09 19:18:40 -060071 int r;
Alexander Graf03d25c52012-08-10 12:28:50 +020072
Scott Wood6c85f522014-01-09 19:18:40 -060073 WARN_ON(irqs_disabled());
74 hard_irq_disable();
75
Alexander Graf03d25c52012-08-10 12:28:50 +020076 while (true) {
77 if (need_resched()) {
78 local_irq_enable();
79 cond_resched();
Scott Wood6c85f522014-01-09 19:18:40 -060080 hard_irq_disable();
Alexander Graf03d25c52012-08-10 12:28:50 +020081 continue;
82 }
83
84 if (signal_pending(current)) {
Alexander Graf7ee78852012-08-13 12:44:41 +020085 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
86 vcpu->run->exit_reason = KVM_EXIT_INTR;
87 r = -EINTR;
Alexander Graf03d25c52012-08-10 12:28:50 +020088 break;
89 }
90
Scott Wood5bd1cf12012-08-22 15:03:50 +000091 vcpu->mode = IN_GUEST_MODE;
92
93 /*
94 * Reading vcpu->requests must happen after setting vcpu->mode,
95 * so we don't miss a request because the requester sees
96 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
97 * before next entering the guest (and thus doesn't IPI).
98 */
Alexander Graf03d25c52012-08-10 12:28:50 +020099 smp_mb();
Scott Wood5bd1cf12012-08-22 15:03:50 +0000100
Alexander Graf03d25c52012-08-10 12:28:50 +0200101 if (vcpu->requests) {
102 /* Make sure we process requests preemptable */
103 local_irq_enable();
104 trace_kvm_check_requests(vcpu);
Alexander Graf7c973a22012-08-13 12:50:35 +0200105 r = kvmppc_core_check_requests(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -0600106 hard_irq_disable();
Alexander Graf7c973a22012-08-13 12:50:35 +0200107 if (r > 0)
108 continue;
109 break;
Alexander Graf03d25c52012-08-10 12:28:50 +0200110 }
111
112 if (kvmppc_core_prepare_to_enter(vcpu)) {
113 /* interrupts got enabled in between, so we
114 are back at square 1 */
115 continue;
116 }
117
Alexander Graf3766a4c2012-08-13 01:24:01 +0200118 kvm_guest_enter();
Scott Wood6c85f522014-01-09 19:18:40 -0600119 return 1;
Alexander Graf03d25c52012-08-10 12:28:50 +0200120 }
121
Scott Wood6c85f522014-01-09 19:18:40 -0600122 /* return to host */
123 local_irq_enable();
Alexander Graf03d25c52012-08-10 12:28:50 +0200124 return r;
125}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530126EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
Alexander Graf03d25c52012-08-10 12:28:50 +0200127
Alexander Graf5deb8e72014-04-24 13:46:24 +0200128#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
129static void kvmppc_swab_shared(struct kvm_vcpu *vcpu)
130{
131 struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared;
132 int i;
133
134 shared->sprg0 = swab64(shared->sprg0);
135 shared->sprg1 = swab64(shared->sprg1);
136 shared->sprg2 = swab64(shared->sprg2);
137 shared->sprg3 = swab64(shared->sprg3);
138 shared->srr0 = swab64(shared->srr0);
139 shared->srr1 = swab64(shared->srr1);
140 shared->dar = swab64(shared->dar);
141 shared->msr = swab64(shared->msr);
142 shared->dsisr = swab32(shared->dsisr);
143 shared->int_pending = swab32(shared->int_pending);
144 for (i = 0; i < ARRAY_SIZE(shared->sr); i++)
145 shared->sr[i] = swab32(shared->sr[i]);
146}
147#endif
148
Alexander Graf2a342ed2010-07-29 14:47:48 +0200149int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
150{
151 int nr = kvmppc_get_gpr(vcpu, 11);
152 int r;
153 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
154 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
155 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
156 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
157 unsigned long r2 = 0;
158
Alexander Graf5deb8e72014-04-24 13:46:24 +0200159 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
Alexander Graf2a342ed2010-07-29 14:47:48 +0200160 /* 32 bit mode */
161 param1 &= 0xffffffff;
162 param2 &= 0xffffffff;
163 param3 &= 0xffffffff;
164 param4 &= 0xffffffff;
165 }
166
167 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000168 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200169 {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200170#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
171 /* Book3S can be little endian, find it out here */
172 int shared_big_endian = true;
173 if (vcpu->arch.intr_msr & MSR_LE)
174 shared_big_endian = false;
175 if (shared_big_endian != vcpu->arch.shared_big_endian)
176 kvmppc_swab_shared(vcpu);
177 vcpu->arch.shared_big_endian = shared_big_endian;
178#endif
179
Alexander Graff3383cf2014-05-12 01:08:32 +0200180 if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) {
181 /*
182 * Older versions of the Linux magic page code had
183 * a bug where they would map their trampoline code
184 * NX. If that's the case, remove !PR NX capability.
185 */
186 vcpu->arch.disable_kernel_nx = true;
187 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
188 }
189
190 vcpu->arch.magic_page_pa = param1 & ~0xfffULL;
191 vcpu->arch.magic_page_ea = param2 & ~0xfffULL;
Alexander Graf5fc87402010-07-29 14:47:55 +0200192
Alexander Graf89b68c92014-07-13 16:37:12 +0200193#ifdef CONFIG_PPC_64K_PAGES
194 /*
195 * Make sure our 4k magic page is in the same window of a 64k
196 * page within the guest and within the host's page.
197 */
198 if ((vcpu->arch.magic_page_pa & 0xf000) !=
199 ((ulong)vcpu->arch.shared & 0xf000)) {
200 void *old_shared = vcpu->arch.shared;
201 ulong shared = (ulong)vcpu->arch.shared;
202 void *new_shared;
203
204 shared &= PAGE_MASK;
205 shared |= vcpu->arch.magic_page_pa & 0xf000;
206 new_shared = (void*)shared;
207 memcpy(new_shared, old_shared, 0x1000);
208 vcpu->arch.shared = new_shared;
209 }
210#endif
211
Scott Woodb5904972011-11-08 18:23:30 -0600212 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200213
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000214 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200215 break;
216 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000217 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
218 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000219#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Alexander Graf5fc87402010-07-29 14:47:55 +0200220 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
221#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200222
223 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200224 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000225 case EV_HCALL_TOKEN(EV_IDLE):
226 r = EV_SUCCESS;
227 kvm_vcpu_block(vcpu);
228 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
229 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200230 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000231 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200232 break;
233 }
234
Alexander Graf7508e162010-08-03 11:32:56 +0200235 kvmppc_set_gpr(vcpu, 4, r2);
236
Alexander Graf2a342ed2010-07-29 14:47:48 +0200237 return r;
238}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530239EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500240
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200241int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
242{
243 int r = false;
244
245 /* We have to know what CPU to virtualize */
246 if (!vcpu->arch.pvr)
247 goto out;
248
249 /* PAPR only works with book3s_64 */
250 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
251 goto out;
252
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200253 /* HV KVM can only do PAPR mode for now */
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530254 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200255 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200256
Scott Woodd30f6e42011-12-20 15:34:43 +0000257#ifdef CONFIG_KVM_BOOKE_HV
258 if (!cpu_has_feature(CPU_FTR_EMB_HV))
259 goto out;
260#endif
261
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200262 r = true;
263
264out:
265 vcpu->arch.sane = r;
266 return r ? 0 : -EINVAL;
267}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530268EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200269
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500270int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
271{
272 enum emulation_result er;
273 int r;
274
Alexander Grafd69614a2014-06-18 14:53:49 +0200275 er = kvmppc_emulate_loadstore(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500276 switch (er) {
277 case EMULATE_DONE:
278 /* Future optimization: only reload non-volatiles if they were
279 * actually modified. */
280 r = RESUME_GUEST_NV;
281 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300282 case EMULATE_AGAIN:
283 r = RESUME_GUEST;
284 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500285 case EMULATE_DO_MMIO:
286 run->exit_reason = KVM_EXIT_MMIO;
287 /* We must reload nonvolatiles because "update" load/store
288 * instructions modify register state. */
289 /* Future optimization: only reload non-volatiles if they were
290 * actually modified. */
291 r = RESUME_HOST_NV;
292 break;
293 case EMULATE_FAIL:
Mihai Caraman51f04722014-07-23 19:06:21 +0300294 {
295 u32 last_inst;
296
297 kvmppc_get_last_inst(vcpu, false, &last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500298 /* XXX Deliver Program interrupt to guest. */
Mihai Caraman51f04722014-07-23 19:06:21 +0300299 pr_emerg("%s: emulation failed (%08x)\n", __func__, last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500300 r = RESUME_HOST;
301 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300302 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500303 default:
Alexander Graf5a331692012-12-14 23:46:03 +0100304 WARN_ON(1);
305 r = RESUME_GUEST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500306 }
307
308 return r;
309}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530310EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500311
Alexander Graf35c4a732014-06-20 13:58:16 +0200312int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
313 bool data)
314{
Alexander Grafc12fb432014-06-20 14:43:36 +0200315 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
Alexander Graf35c4a732014-06-20 13:58:16 +0200316 struct kvmppc_pte pte;
317 int r;
318
319 vcpu->stat.st++;
320
321 r = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
322 XLATE_WRITE, &pte);
323 if (r < 0)
324 return r;
325
326 *eaddr = pte.raddr;
327
328 if (!pte.may_write)
329 return -EPERM;
330
Alexander Grafc12fb432014-06-20 14:43:36 +0200331 /* Magic page override */
332 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
333 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
334 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
335 void *magic = vcpu->arch.shared;
336 magic += pte.eaddr & 0xfff;
337 memcpy(magic, ptr, size);
338 return EMULATE_DONE;
339 }
340
Alexander Graf35c4a732014-06-20 13:58:16 +0200341 if (kvm_write_guest(vcpu->kvm, pte.raddr, ptr, size))
342 return EMULATE_DO_MMIO;
343
344 return EMULATE_DONE;
345}
346EXPORT_SYMBOL_GPL(kvmppc_st);
347
348int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
349 bool data)
350{
Alexander Grafc12fb432014-06-20 14:43:36 +0200351 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
Alexander Graf35c4a732014-06-20 13:58:16 +0200352 struct kvmppc_pte pte;
Alexander Graf35c4a732014-06-20 13:58:16 +0200353 int rc;
354
355 vcpu->stat.ld++;
356
357 rc = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
358 XLATE_READ, &pte);
359 if (rc)
360 return rc;
361
362 *eaddr = pte.raddr;
363
364 if (!pte.may_read)
365 return -EPERM;
366
367 if (!data && !pte.may_execute)
368 return -ENOEXEC;
369
Alexander Grafc12fb432014-06-20 14:43:36 +0200370 /* Magic page override */
371 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
372 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
373 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
374 void *magic = vcpu->arch.shared;
375 magic += pte.eaddr & 0xfff;
376 memcpy(ptr, magic, size);
377 return EMULATE_DONE;
378 }
379
Alexander Grafc45c5512014-06-20 14:17:30 +0200380 if (kvm_read_guest(vcpu->kvm, pte.raddr, ptr, size))
381 return EMULATE_DO_MMIO;
Alexander Graf35c4a732014-06-20 13:58:16 +0200382
383 return EMULATE_DONE;
Alexander Graf35c4a732014-06-20 13:58:16 +0200384}
385EXPORT_SYMBOL_GPL(kvmppc_ld);
386
Radim Krčmář13a34e02014-08-28 15:13:03 +0200387int kvm_arch_hardware_enable(void)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500388{
Alexander Graf10474ae2009-09-15 11:37:46 +0200389 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500390}
391
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500392int kvm_arch_hardware_setup(void)
393{
394 return 0;
395}
396
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500397void kvm_arch_check_processor_compat(void *rtn)
398{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600399 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500400}
401
Carsten Ottee08b9632012-01-04 10:25:20 +0100402int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500403{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530404 struct kvmppc_ops *kvm_ops = NULL;
405 /*
406 * if we have both HV and PR enabled, default is HV
407 */
408 if (type == 0) {
409 if (kvmppc_hv_ops)
410 kvm_ops = kvmppc_hv_ops;
411 else
412 kvm_ops = kvmppc_pr_ops;
413 if (!kvm_ops)
414 goto err_out;
415 } else if (type == KVM_VM_PPC_HV) {
416 if (!kvmppc_hv_ops)
417 goto err_out;
418 kvm_ops = kvmppc_hv_ops;
419 } else if (type == KVM_VM_PPC_PR) {
420 if (!kvmppc_pr_ops)
421 goto err_out;
422 kvm_ops = kvmppc_pr_ops;
423 } else
424 goto err_out;
Carsten Ottee08b9632012-01-04 10:25:20 +0100425
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530426 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
427 return -ENOENT;
428
429 kvm->arch.kvm_ops = kvm_ops;
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000430 return kvmppc_core_init_vm(kvm);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530431err_out:
432 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500433}
434
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100435void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500436{
437 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300438 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500439
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300440 kvm_for_each_vcpu(i, vcpu, kvm)
441 kvm_arch_vcpu_free(vcpu);
442
443 mutex_lock(&kvm->lock);
444 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
445 kvm->vcpus[i] = NULL;
446
447 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000448
449 kvmppc_core_destroy_vm(kvm);
450
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300451 mutex_unlock(&kvm->lock);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530452
453 /* drop the module reference */
454 module_put(kvm->arch.kvm_ops->owner);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500455}
456
Alexander Graf784aa3d2014-07-14 18:27:35 +0200457int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500458{
459 int r;
Alexander Graf7a587772014-07-14 18:55:19 +0200460 /* Assume we're using HV mode when the HV module is loaded */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530461 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500462
Alexander Graf7a587772014-07-14 18:55:19 +0200463 if (kvm) {
464 /*
465 * Hooray - we know which VM type we're running on. Depend on
466 * that rather than the guess above.
467 */
468 hv_enabled = is_kvmppc_hv_enabled(kvm);
469 }
470
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500471 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500472#ifdef CONFIG_BOOKE
473 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000474 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Alexander Graf1c810632013-01-04 18:12:48 +0100475 case KVM_CAP_PPC_EPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500476#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000477 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200478 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200479 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500480#endif
Alexander Graf18978762010-03-24 21:48:18 +0100481 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200482 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100483 case KVM_CAP_ENABLE_CAP:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000484 case KVM_CAP_ENABLE_CAP_VM:
Alexander Grafe24ed812011-09-14 10:02:41 +0200485 case KVM_CAP_ONE_REG:
Alexander Graf0e673fb2012-10-09 00:06:20 +0200486 case KVM_CAP_IOEVENTFD:
Scott Wood5df554a2013-04-12 14:08:46 +0000487 case KVM_CAP_DEVICE_CTRL:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000488 r = 1;
489 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000490 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100491 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200492 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000493#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500494 case KVM_CAP_SW_TLB:
495#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530496 /* We support this only for PR */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530497 r = !hv_enabled;
Alexander Grafe15a1132009-11-30 03:02:02 +0000498 break;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530499#ifdef CONFIG_KVM_MMIO
Laurent Vivier588968b2008-05-30 16:05:56 +0200500 case KVM_CAP_COALESCED_MMIO:
501 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
502 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000503#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530504#ifdef CONFIG_KVM_MPIC
505 case KVM_CAP_IRQ_MPIC:
506 r = 1;
507 break;
508#endif
509
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000510#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000511 case KVM_CAP_SPAPR_TCE:
Paul Mackerras32fad282012-05-04 02:32:53 +0000512 case KVM_CAP_PPC_ALLOC_HTAB:
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000513 case KVM_CAP_PPC_RTAS:
Alexander Graff2e91042014-05-22 17:40:15 +0200514 case KVM_CAP_PPC_FIXUP_HCALL:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000515 case KVM_CAP_PPC_ENABLE_HCALL:
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000516#ifdef CONFIG_KVM_XICS
517 case KVM_CAP_IRQ_XICS:
518#endif
David Gibson54738c02011-06-29 00:22:41 +0000519 r = 1;
520 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000521#endif /* CONFIG_PPC_BOOK3S_64 */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530522#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras371fefd2011-06-29 00:23:08 +0000523 case KVM_CAP_PPC_SMT:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530524 if (hv_enabled)
Michael Ellerman3102f782014-05-23 18:15:29 +1000525 r = threads_per_subcore;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530526 else
527 r = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000528 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000529 case KVM_CAP_PPC_RMA:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530530 r = hv_enabled;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000531 /* PPC970 requires an RMA */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530532 if (r && cpu_has_feature(CPU_FTR_ARCH_201))
Paul Mackerras9e368f22011-06-29 00:40:08 +0000533 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000534 break;
David Gibson54738c02011-06-29 00:22:41 +0000535#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200536 case KVM_CAP_SYNC_MMU:
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530537#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530538 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530539 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
540 else
541 r = 0;
Alexander Graff4800b12012-08-07 10:24:14 +0200542#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
543 r = 1;
544#else
545 r = 0;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000546#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530547 break;
548#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasa2932922012-11-19 22:57:20 +0000549 case KVM_CAP_PPC_HTAB_FD:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530550 r = hv_enabled;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000551 break;
Alexander Graff4800b12012-08-07 10:24:14 +0200552#endif
Matt Evansb5434032011-12-07 16:55:57 +0000553 case KVM_CAP_NR_VCPUS:
554 /*
555 * Recommending a number of CPUs is somewhat arbitrary; we
556 * return the number of present CPUs for -HV (since a host
557 * will have secondary threads "offline"), and for other KVM
558 * implementations just count online CPUs.
559 */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530560 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530561 r = num_present_cpus();
562 else
563 r = num_online_cpus();
Matt Evansb5434032011-12-07 16:55:57 +0000564 break;
565 case KVM_CAP_MAX_VCPUS:
566 r = KVM_MAX_VCPUS;
567 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000568#ifdef CONFIG_PPC_BOOK3S_64
569 case KVM_CAP_PPC_GET_SMMU_INFO:
570 r = 1;
571 break;
572#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500573 default:
574 r = 0;
575 break;
576 }
577 return r;
578
579}
580
581long kvm_arch_dev_ioctl(struct file *filp,
582 unsigned int ioctl, unsigned long arg)
583{
584 return -EINVAL;
585}
586
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530587void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900588 struct kvm_memory_slot *dont)
589{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530590 kvmppc_core_free_memslot(kvm, free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900591}
592
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530593int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
594 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900595{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530596 return kvmppc_core_create_memslot(kvm, slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900597}
598
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200599int kvm_arch_prepare_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900600 struct kvm_memory_slot *memslot,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900601 struct kvm_userspace_memory_region *mem,
602 enum kvm_mr_change change)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500603{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000604 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500605}
606
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200607void kvm_arch_commit_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900608 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900609 const struct kvm_memory_slot *old,
610 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200611{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000612 kvmppc_core_commit_memory_region(kvm, mem, old);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200613}
614
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300615void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
616 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300617{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000618 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300619}
620
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500621struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
622{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600623 struct kvm_vcpu *vcpu;
624 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000625 if (!IS_ERR(vcpu)) {
626 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800627 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000628 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600629 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500630}
631
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200632int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
633{
634 return 0;
635}
636
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500637void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
638{
Alexander Grafa5954052010-02-22 16:52:14 +0100639 /* Make sure we're not using the vcpu anymore */
640 hrtimer_cancel(&vcpu->arch.dec_timer);
641 tasklet_kill(&vcpu->arch.tasklet);
642
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600643 kvmppc_remove_vcpu_debugfs(vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000644
645 switch (vcpu->arch.irq_type) {
646 case KVMPPC_IRQ_MPIC:
647 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
648 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000649 case KVMPPC_IRQ_XICS:
650 kvmppc_xics_free_icp(vcpu);
651 break;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000652 }
653
Hollis Blancharddb93f572008-11-05 09:36:18 -0600654 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500655}
656
657void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
658{
659 kvm_arch_vcpu_free(vcpu);
660}
661
662int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
663{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600664 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500665}
666
Alexander Graf544c6762009-11-02 12:02:31 +0000667/*
668 * low level hrtimer wake routine. Because this runs in hardirq context
669 * we schedule a tasklet to do the real work.
670 */
671enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
672{
673 struct kvm_vcpu *vcpu;
674
675 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
676 tasklet_schedule(&vcpu->arch.tasklet);
677
678 return HRTIMER_NORESTART;
679}
680
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500681int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
682{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000683 int ret;
684
Alexander Graf544c6762009-11-02 12:02:31 +0000685 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
686 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
687 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000688 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500689
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530690#ifdef CONFIG_KVM_EXIT_TIMING
691 mutex_init(&vcpu->arch.exit_timing_lock);
692#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000693 ret = kvmppc_subarch_vcpu_init(vcpu);
694 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500695}
696
697void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
698{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600699 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000700 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500701}
702
703void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
704{
Scott Woodeab17672011-04-27 17:24:10 -0500705#ifdef CONFIG_BOOKE
706 /*
707 * vrsave (formerly usprg0) isn't used by Linux, but may
708 * be used by the guest.
709 *
710 * On non-booke this is associated with Altivec and
711 * is handled by code in book3s.c.
712 */
713 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
714#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600715 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500716}
717
718void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
719{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600720 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500721#ifdef CONFIG_BOOKE
722 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
723#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500724}
725
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500726static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
727 struct kvm_run *run)
728{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000729 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500730
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100731 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500732 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
733 return;
734 }
735
736 if (vcpu->arch.mmio_is_bigendian) {
737 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100738 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100739 case 4: gpr = *(u32 *)run->mmio.data; break;
740 case 2: gpr = *(u16 *)run->mmio.data; break;
741 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500742 }
743 } else {
744 /* Convert BE data from userland back to LE. */
745 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100746 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
747 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
748 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500749 }
750 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100751
Alexander Graf3587d532010-02-19 11:00:30 +0100752 if (vcpu->arch.mmio_sign_extend) {
753 switch (run->mmio.len) {
754#ifdef CONFIG_PPC64
755 case 4:
756 gpr = (s64)(s32)gpr;
757 break;
758#endif
759 case 2:
760 gpr = (s64)(s16)gpr;
761 break;
762 case 1:
763 gpr = (s64)(s8)gpr;
764 break;
765 }
766 }
767
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100768 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100769
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100770 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
771 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +0100772 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
773 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100774 case KVM_MMIO_REG_FPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100775 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100776 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200777#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100778 case KVM_MMIO_REG_QPR:
779 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100780 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100781 case KVM_MMIO_REG_FQPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100782 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100783 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100784 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200785#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100786 default:
787 BUG();
788 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500789}
790
791int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100792 unsigned int rt, unsigned int bytes,
793 int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500794{
Scott Wooded840ee2013-04-26 14:53:39 +0000795 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100796 int is_bigendian;
797
798 if (kvmppc_need_byteswap(vcpu)) {
799 /* Default endianness is "little endian". */
800 is_bigendian = !is_default_endian;
801 } else {
802 /* Default endianness is "big endian". */
803 is_bigendian = is_default_endian;
804 }
Scott Wooded840ee2013-04-26 14:53:39 +0000805
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500806 if (bytes > sizeof(run->mmio.data)) {
807 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
808 run->mmio.len);
809 }
810
811 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
812 run->mmio.len = bytes;
813 run->mmio.is_write = 0;
814
815 vcpu->arch.io_gpr = rt;
816 vcpu->arch.mmio_is_bigendian = is_bigendian;
817 vcpu->mmio_needed = 1;
818 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100819 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500820
Scott Wooded840ee2013-04-26 14:53:39 +0000821 idx = srcu_read_lock(&vcpu->kvm->srcu);
822
823 ret = kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
824 bytes, &run->mmio.data);
825
826 srcu_read_unlock(&vcpu->kvm->srcu, idx);
827
828 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200829 kvmppc_complete_mmio_load(vcpu, run);
830 vcpu->mmio_needed = 0;
831 return EMULATE_DONE;
832 }
833
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500834 return EMULATE_DO_MMIO;
835}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530836EXPORT_SYMBOL_GPL(kvmppc_handle_load);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500837
Alexander Graf3587d532010-02-19 11:00:30 +0100838/* Same as above, but sign extends */
839int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100840 unsigned int rt, unsigned int bytes,
841 int is_default_endian)
Alexander Graf3587d532010-02-19 11:00:30 +0100842{
843 int r;
844
Alexander Graf3587d532010-02-19 11:00:30 +0100845 vcpu->arch.mmio_sign_extend = 1;
Cédric Le Goater73601772014-01-09 11:51:16 +0100846 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian);
Alexander Graf3587d532010-02-19 11:00:30 +0100847
848 return r;
849}
850
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500851int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100852 u64 val, unsigned int bytes, int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500853{
854 void *data = run->mmio.data;
Scott Wooded840ee2013-04-26 14:53:39 +0000855 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100856 int is_bigendian;
857
858 if (kvmppc_need_byteswap(vcpu)) {
859 /* Default endianness is "little endian". */
860 is_bigendian = !is_default_endian;
861 } else {
862 /* Default endianness is "big endian". */
863 is_bigendian = is_default_endian;
864 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500865
866 if (bytes > sizeof(run->mmio.data)) {
867 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
868 run->mmio.len);
869 }
870
871 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
872 run->mmio.len = bytes;
873 run->mmio.is_write = 1;
874 vcpu->mmio_needed = 1;
875 vcpu->mmio_is_write = 1;
876
877 /* Store the value at the lowest bytes in 'data'. */
878 if (is_bigendian) {
879 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100880 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500881 case 4: *(u32 *)data = val; break;
882 case 2: *(u16 *)data = val; break;
883 case 1: *(u8 *)data = val; break;
884 }
885 } else {
886 /* Store LE value into 'data'. */
887 switch (bytes) {
888 case 4: st_le32(data, val); break;
889 case 2: st_le16(data, val); break;
890 case 1: *(u8 *)data = val; break;
891 }
892 }
893
Scott Wooded840ee2013-04-26 14:53:39 +0000894 idx = srcu_read_lock(&vcpu->kvm->srcu);
895
896 ret = kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
897 bytes, &run->mmio.data);
898
899 srcu_read_unlock(&vcpu->kvm->srcu, idx);
900
901 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200902 vcpu->mmio_needed = 0;
903 return EMULATE_DONE;
904 }
905
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500906 return EMULATE_DO_MMIO;
907}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530908EXPORT_SYMBOL_GPL(kvmppc_handle_store);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500909
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300910int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
911{
912 int r = 0;
913 union kvmppc_one_reg val;
914 int size;
915
916 size = one_reg_size(reg->id);
917 if (size > sizeof(val))
918 return -EINVAL;
919
920 r = kvmppc_get_one_reg(vcpu, reg->id, &val);
921 if (r == -EINVAL) {
922 r = 0;
923 switch (reg->id) {
924 default:
925 r = -EINVAL;
926 break;
927 }
928 }
929
930 if (r)
931 return r;
932
933 if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size))
934 r = -EFAULT;
935
936 return r;
937}
938
939int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
940{
941 int r;
942 union kvmppc_one_reg val;
943 int size;
944
945 size = one_reg_size(reg->id);
946 if (size > sizeof(val))
947 return -EINVAL;
948
949 if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size))
950 return -EFAULT;
951
952 r = kvmppc_set_one_reg(vcpu, reg->id, &val);
953 if (r == -EINVAL) {
954 r = 0;
955 switch (reg->id) {
956 default:
957 r = -EINVAL;
958 break;
959 }
960 }
961
962 return r;
963}
964
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500965int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
966{
967 int r;
968 sigset_t sigsaved;
969
970 if (vcpu->sigset_active)
971 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
972
973 if (vcpu->mmio_needed) {
974 if (!vcpu->mmio_is_write)
975 kvmppc_complete_mmio_load(vcpu, run);
976 vcpu->mmio_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100977 } else if (vcpu->arch.osi_needed) {
978 u64 *gprs = run->osi.gprs;
979 int i;
980
981 for (i = 0; i < 32; i++)
982 kvmppc_set_gpr(vcpu, i, gprs[i]);
983 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000984 } else if (vcpu->arch.hcall_needed) {
985 int i;
986
987 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
988 for (i = 0; i < 9; ++i)
989 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
990 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +0100991#ifdef CONFIG_BOOKE
992 } else if (vcpu->arch.epr_needed) {
993 kvmppc_set_epr(vcpu, run->epr.epr);
994 vcpu->arch.epr_needed = 0;
995#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500996 }
997
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000998 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500999
1000 if (vcpu->sigset_active)
1001 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1002
1003 return r;
1004}
1005
1006int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
1007{
Paul Mackerras19ccb762011-07-23 17:42:46 +10001008 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +00001009 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001010 return 0;
1011 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -05001012
Paul Mackerras19ccb762011-07-23 17:42:46 +10001013 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -05001014
Scott Wooddfd4d472011-11-17 12:39:59 +00001015 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -05001016
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001017 return 0;
1018}
1019
Alexander Graf71fbfd52010-03-24 21:48:29 +01001020static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
1021 struct kvm_enable_cap *cap)
1022{
1023 int r;
1024
1025 if (cap->flags)
1026 return -EINVAL;
1027
1028 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +01001029 case KVM_CAP_PPC_OSI:
1030 r = 0;
1031 vcpu->arch.osi_enabled = true;
1032 break;
Alexander Graf930b4122011-08-08 17:29:42 +02001033 case KVM_CAP_PPC_PAPR:
1034 r = 0;
1035 vcpu->arch.papr_enabled = true;
1036 break;
Alexander Graf1c810632013-01-04 18:12:48 +01001037 case KVM_CAP_PPC_EPR:
1038 r = 0;
Scott Wood5df554a2013-04-12 14:08:46 +00001039 if (cap->args[0])
1040 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
1041 else
1042 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +01001043 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +00001044#ifdef CONFIG_BOOKE
1045 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1046 r = 0;
1047 vcpu->arch.watchdog_enabled = true;
1048 break;
1049#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001050#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001051 case KVM_CAP_SW_TLB: {
1052 struct kvm_config_tlb cfg;
1053 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
1054
1055 r = -EFAULT;
1056 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
1057 break;
1058
1059 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
1060 break;
1061 }
1062#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +00001063#ifdef CONFIG_KVM_MPIC
1064 case KVM_CAP_IRQ_MPIC: {
Al Viro70abade2013-08-30 15:04:22 -04001065 struct fd f;
Scott Woodeb1e4f42013-04-12 14:08:47 +00001066 struct kvm_device *dev;
1067
1068 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -04001069 f = fdget(cap->args[0]);
1070 if (!f.file)
Scott Woodeb1e4f42013-04-12 14:08:47 +00001071 break;
1072
1073 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -04001074 dev = kvm_device_from_filp(f.file);
Scott Woodeb1e4f42013-04-12 14:08:47 +00001075 if (dev)
1076 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
1077
Al Viro70abade2013-08-30 15:04:22 -04001078 fdput(f);
Scott Woodeb1e4f42013-04-12 14:08:47 +00001079 break;
1080 }
1081#endif
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001082#ifdef CONFIG_KVM_XICS
1083 case KVM_CAP_IRQ_XICS: {
Al Viro70abade2013-08-30 15:04:22 -04001084 struct fd f;
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001085 struct kvm_device *dev;
1086
1087 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -04001088 f = fdget(cap->args[0]);
1089 if (!f.file)
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001090 break;
1091
1092 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -04001093 dev = kvm_device_from_filp(f.file);
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001094 if (dev)
1095 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
1096
Al Viro70abade2013-08-30 15:04:22 -04001097 fdput(f);
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001098 break;
1099 }
1100#endif /* CONFIG_KVM_XICS */
Alexander Graf71fbfd52010-03-24 21:48:29 +01001101 default:
1102 r = -EINVAL;
1103 break;
1104 }
1105
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001106 if (!r)
1107 r = kvmppc_sanity_check(vcpu);
1108
Alexander Graf71fbfd52010-03-24 21:48:29 +01001109 return r;
1110}
1111
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001112int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
1113 struct kvm_mp_state *mp_state)
1114{
1115 return -EINVAL;
1116}
1117
1118int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
1119 struct kvm_mp_state *mp_state)
1120{
1121 return -EINVAL;
1122}
1123
1124long kvm_arch_vcpu_ioctl(struct file *filp,
1125 unsigned int ioctl, unsigned long arg)
1126{
1127 struct kvm_vcpu *vcpu = filp->private_data;
1128 void __user *argp = (void __user *)arg;
1129 long r;
1130
Avi Kivity93736622010-05-13 12:35:17 +03001131 switch (ioctl) {
1132 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001133 struct kvm_interrupt irq;
1134 r = -EFAULT;
1135 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +03001136 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001137 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +03001138 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001139 }
Avi Kivity19483d12010-05-13 12:30:43 +03001140
Alexander Graf71fbfd52010-03-24 21:48:29 +01001141 case KVM_ENABLE_CAP:
1142 {
1143 struct kvm_enable_cap cap;
1144 r = -EFAULT;
1145 if (copy_from_user(&cap, argp, sizeof(cap)))
1146 goto out;
1147 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1148 break;
1149 }
Scott Wooddc83b8b2011-08-18 15:25:21 -05001150
Alexander Grafe24ed812011-09-14 10:02:41 +02001151 case KVM_SET_ONE_REG:
1152 case KVM_GET_ONE_REG:
1153 {
1154 struct kvm_one_reg reg;
1155 r = -EFAULT;
1156 if (copy_from_user(&reg, argp, sizeof(reg)))
1157 goto out;
1158 if (ioctl == KVM_SET_ONE_REG)
1159 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
1160 else
1161 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
1162 break;
1163 }
1164
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001165#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001166 case KVM_DIRTY_TLB: {
1167 struct kvm_dirty_tlb dirty;
1168 r = -EFAULT;
1169 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1170 goto out;
1171 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1172 break;
1173 }
1174#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001175 default:
1176 r = -EINVAL;
1177 }
1178
1179out:
1180 return r;
1181}
1182
Carsten Otte5b1c1492012-01-04 10:25:23 +01001183int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1184{
1185 return VM_FAULT_SIGBUS;
1186}
1187
Alexander Graf15711e92010-07-29 14:48:08 +02001188static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1189{
Stuart Yoder784bafa2012-07-03 05:48:51 +00001190 u32 inst_nop = 0x60000000;
1191#ifdef CONFIG_KVM_BOOKE_HV
1192 u32 inst_sc1 = 0x44000022;
Alexander Graf27431032014-04-24 13:39:16 +02001193 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
1194 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
1195 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
1196 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001197#else
Alexander Graf15711e92010-07-29 14:48:08 +02001198 u32 inst_lis = 0x3c000000;
1199 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +02001200 u32 inst_sc = 0x44000002;
1201 u32 inst_imm_mask = 0xffff;
1202
1203 /*
1204 * The hypercall to get into KVM from within guest context is as
1205 * follows:
1206 *
1207 * lis r0, r0, KVM_SC_MAGIC_R0@h
1208 * ori r0, KVM_SC_MAGIC_R0@l
1209 * sc
1210 * nop
1211 */
Alexander Graf27431032014-04-24 13:39:16 +02001212 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
1213 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
1214 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
1215 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001216#endif
Alexander Graf15711e92010-07-29 14:48:08 +02001217
Liu Yu-B132019202e072012-07-03 05:48:52 +00001218 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1219
Alexander Graf15711e92010-07-29 14:48:08 +02001220 return 0;
1221}
1222
Alexander Graf5efdb4b2013-04-17 00:37:57 +02001223int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1224 bool line_status)
1225{
1226 if (!irqchip_in_kernel(kvm))
1227 return -ENXIO;
1228
1229 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1230 irq_event->irq, irq_event->level,
1231 line_status);
1232 return 0;
1233}
1234
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001235
1236static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1237 struct kvm_enable_cap *cap)
1238{
1239 int r;
1240
1241 if (cap->flags)
1242 return -EINVAL;
1243
1244 switch (cap->cap) {
1245#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1246 case KVM_CAP_PPC_ENABLE_HCALL: {
1247 unsigned long hcall = cap->args[0];
1248
1249 r = -EINVAL;
1250 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
1251 cap->args[1] > 1)
1252 break;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001253 if (!kvmppc_book3s_hcall_implemented(kvm, hcall))
1254 break;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001255 if (cap->args[1])
1256 set_bit(hcall / 4, kvm->arch.enabled_hcalls);
1257 else
1258 clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
1259 r = 0;
1260 break;
1261 }
1262#endif
1263 default:
1264 r = -EINVAL;
1265 break;
1266 }
1267
1268 return r;
1269}
1270
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001271long kvm_arch_vm_ioctl(struct file *filp,
1272 unsigned int ioctl, unsigned long arg)
1273{
Scott Wood5df554a2013-04-12 14:08:46 +00001274 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +02001275 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001276 long r;
1277
1278 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +02001279 case KVM_PPC_GET_PVINFO: {
1280 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +04001281 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +02001282 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1283 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1284 r = -EFAULT;
1285 goto out;
1286 }
1287
1288 break;
1289 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001290 case KVM_ENABLE_CAP:
1291 {
1292 struct kvm_enable_cap cap;
1293 r = -EFAULT;
1294 if (copy_from_user(&cap, argp, sizeof(cap)))
1295 goto out;
1296 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1297 break;
1298 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001299#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +00001300 case KVM_CREATE_SPAPR_TCE: {
1301 struct kvm_create_spapr_tce create_tce;
David Gibson54738c02011-06-29 00:22:41 +00001302
1303 r = -EFAULT;
1304 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1305 goto out;
1306 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
1307 goto out;
1308 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001309 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001310 struct kvm_ppc_smmu_info info;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301311 struct kvm *kvm = filp->private_data;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001312
1313 memset(&info, 0, sizeof(info));
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301314 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001315 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1316 r = -EFAULT;
1317 break;
1318 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001319 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1320 struct kvm *kvm = filp->private_data;
1321
1322 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1323 break;
1324 }
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301325 default: {
1326 struct kvm *kvm = filp->private_data;
1327 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1328 }
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301329#else /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001330 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001331 r = -ENOTTY;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301332#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001333 }
Alexander Graf15711e92010-07-29 14:48:08 +02001334out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001335 return r;
1336}
1337
Scott Wood043cc4d2011-12-20 15:34:20 +00001338static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1339static unsigned long nr_lpids;
1340
1341long kvmppc_alloc_lpid(void)
1342{
1343 long lpid;
1344
1345 do {
1346 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1347 if (lpid >= nr_lpids) {
1348 pr_err("%s: No LPIDs free\n", __func__);
1349 return -ENOMEM;
1350 }
1351 } while (test_and_set_bit(lpid, lpid_inuse));
1352
1353 return lpid;
1354}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301355EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001356
1357void kvmppc_claim_lpid(long lpid)
1358{
1359 set_bit(lpid, lpid_inuse);
1360}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301361EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001362
1363void kvmppc_free_lpid(long lpid)
1364{
1365 clear_bit(lpid, lpid_inuse);
1366}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301367EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001368
1369void kvmppc_init_lpid(unsigned long nr_lpids_param)
1370{
1371 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1372 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1373}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301374EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001375
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001376int kvm_arch_init(void *opaque)
1377{
1378 return 0;
1379}
1380
Paolo Bonzini478d66862014-08-05 11:29:07 +02001381EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ppc_instr);