]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/powerpc/kvm/powerpc.c
KVM: PPC: Pass init/destroy vm and prepare/commit memory region ops down
[mirror_ubuntu-zesty-kernel.git] / arch / powerpc / kvm / powerpc.c
CommitLineData
bbf45ba5
HB
1/*
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>
24#include <linux/module.h>
25#include <linux/vmalloc.h>
544c6761 26#include <linux/hrtimer.h>
bbf45ba5 27#include <linux/fs.h>
5a0e3ad6 28#include <linux/slab.h>
bbf45ba5
HB
29#include <asm/cputable.h>
30#include <asm/uaccess.h>
31#include <asm/kvm_ppc.h>
83aae4a8 32#include <asm/tlbflush.h>
73e75b41 33#include "timing.h"
fad7b9b5 34#include "../mm/mmu_decl.h"
bbf45ba5 35
46f43c6e
MT
36#define CREATE_TRACE_POINTS
37#include "trace.h"
38
bbf45ba5
HB
39int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
40{
666e7252
AG
41 return !(v->arch.shared->msr & MSR_WE) ||
42 !!(v->arch.pending_exceptions);
bbf45ba5
HB
43}
44
2a342ed5
AG
45int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
46{
47 int nr = kvmppc_get_gpr(vcpu, 11);
48 int r;
49 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
50 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
51 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
52 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
53 unsigned long r2 = 0;
54
55 if (!(vcpu->arch.shared->msr & MSR_SF)) {
56 /* 32 bit mode */
57 param1 &= 0xffffffff;
58 param2 &= 0xffffffff;
59 param3 &= 0xffffffff;
60 param4 &= 0xffffffff;
61 }
62
63 switch (nr) {
5fc87407
AG
64 case HC_VENDOR_KVM | KVM_HC_PPC_MAP_MAGIC_PAGE:
65 {
66 vcpu->arch.magic_page_pa = param1;
67 vcpu->arch.magic_page_ea = param2;
68
df1bfa25 69 r2 = KVM_MAGIC_FEAT_SR;
7508e16c 70
5fc87407
AG
71 r = HC_EV_SUCCESS;
72 break;
73 }
2a342ed5
AG
74 case HC_VENDOR_KVM | KVM_HC_FEATURES:
75 r = HC_EV_SUCCESS;
a4cd8b23
SW
76#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500)
77 /* XXX Missing magic page on 44x */
5fc87407
AG
78 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
79#endif
2a342ed5
AG
80
81 /* Second return value is in r4 */
2a342ed5
AG
82 break;
83 default:
84 r = HC_EV_UNIMPLEMENTED;
85 break;
86 }
87
7508e16c
AG
88 kvmppc_set_gpr(vcpu, 4, r2);
89
2a342ed5
AG
90 return r;
91}
bbf45ba5
HB
92
93int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
94{
95 enum emulation_result er;
96 int r;
97
98 er = kvmppc_emulate_instruction(run, vcpu);
99 switch (er) {
100 case EMULATE_DONE:
101 /* Future optimization: only reload non-volatiles if they were
102 * actually modified. */
103 r = RESUME_GUEST_NV;
104 break;
105 case EMULATE_DO_MMIO:
106 run->exit_reason = KVM_EXIT_MMIO;
107 /* We must reload nonvolatiles because "update" load/store
108 * instructions modify register state. */
109 /* Future optimization: only reload non-volatiles if they were
110 * actually modified. */
111 r = RESUME_HOST_NV;
112 break;
113 case EMULATE_FAIL:
114 /* XXX Deliver Program interrupt to guest. */
115 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
c7f38f46 116 kvmppc_get_last_inst(vcpu));
bbf45ba5
HB
117 r = RESUME_HOST;
118 break;
119 default:
120 BUG();
121 }
122
123 return r;
124}
125
10474ae8 126int kvm_arch_hardware_enable(void *garbage)
bbf45ba5 127{
10474ae8 128 return 0;
bbf45ba5
HB
129}
130
131void kvm_arch_hardware_disable(void *garbage)
132{
133}
134
135int kvm_arch_hardware_setup(void)
136{
137 return 0;
138}
139
140void kvm_arch_hardware_unsetup(void)
141{
142}
143
144void kvm_arch_check_processor_compat(void *rtn)
145{
9dd921cf 146 *(int *)rtn = kvmppc_core_check_processor_compat();
bbf45ba5
HB
147}
148
d89f5eff 149int kvm_arch_init_vm(struct kvm *kvm)
bbf45ba5 150{
f9e0554d 151 return kvmppc_core_init_vm(kvm);
bbf45ba5
HB
152}
153
d89f5eff 154void kvm_arch_destroy_vm(struct kvm *kvm)
bbf45ba5
HB
155{
156 unsigned int i;
988a2cae 157 struct kvm_vcpu *vcpu;
bbf45ba5 158
988a2cae
GN
159 kvm_for_each_vcpu(i, vcpu, kvm)
160 kvm_arch_vcpu_free(vcpu);
161
162 mutex_lock(&kvm->lock);
163 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
164 kvm->vcpus[i] = NULL;
165
166 atomic_set(&kvm->online_vcpus, 0);
f9e0554d
PM
167
168 kvmppc_core_destroy_vm(kvm);
169
988a2cae 170 mutex_unlock(&kvm->lock);
bbf45ba5
HB
171}
172
ad8ba2cd
SY
173void kvm_arch_sync_events(struct kvm *kvm)
174{
175}
176
bbf45ba5
HB
177int kvm_dev_ioctl_check_extension(long ext)
178{
179 int r;
180
181 switch (ext) {
5ce941ee
SW
182#ifdef CONFIG_BOOKE
183 case KVM_CAP_PPC_BOOKE_SREGS:
184#else
e15a1137 185 case KVM_CAP_PPC_SEGSTATE:
5ce941ee 186#endif
c10207fe 187 case KVM_CAP_PPC_PAIRED_SINGLES:
18978768 188 case KVM_CAP_PPC_UNSET_IRQ:
7b4203e8 189 case KVM_CAP_PPC_IRQ_LEVEL:
71fbfd5f 190 case KVM_CAP_ENABLE_CAP:
ad0a048b 191 case KVM_CAP_PPC_OSI:
15711e9c 192 case KVM_CAP_PPC_GET_PVINFO:
e15a1137
AG
193 r = 1;
194 break;
588968b6
LV
195 case KVM_CAP_COALESCED_MMIO:
196 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
197 break;
bbf45ba5
HB
198 default:
199 r = 0;
200 break;
201 }
202 return r;
203
204}
205
206long kvm_arch_dev_ioctl(struct file *filp,
207 unsigned int ioctl, unsigned long arg)
208{
209 return -EINVAL;
210}
211
f7784b8e
MT
212int kvm_arch_prepare_memory_region(struct kvm *kvm,
213 struct kvm_memory_slot *memslot,
214 struct kvm_memory_slot old,
215 struct kvm_userspace_memory_region *mem,
216 int user_alloc)
bbf45ba5 217{
f9e0554d 218 return kvmppc_core_prepare_memory_region(kvm, mem);
bbf45ba5
HB
219}
220
f7784b8e
MT
221void kvm_arch_commit_memory_region(struct kvm *kvm,
222 struct kvm_userspace_memory_region *mem,
223 struct kvm_memory_slot old,
224 int user_alloc)
225{
f9e0554d 226 kvmppc_core_commit_memory_region(kvm, mem);
f7784b8e
MT
227}
228
229
34d4cb8f
MT
230void kvm_arch_flush_shadow(struct kvm *kvm)
231{
232}
233
bbf45ba5
HB
234struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
235{
73e75b41
HB
236 struct kvm_vcpu *vcpu;
237 vcpu = kvmppc_core_vcpu_create(kvm, id);
06056bfb
WY
238 if (!IS_ERR(vcpu))
239 kvmppc_create_vcpu_debugfs(vcpu, id);
73e75b41 240 return vcpu;
bbf45ba5
HB
241}
242
243void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
244{
a595405d
AG
245 /* Make sure we're not using the vcpu anymore */
246 hrtimer_cancel(&vcpu->arch.dec_timer);
247 tasklet_kill(&vcpu->arch.tasklet);
248
73e75b41 249 kvmppc_remove_vcpu_debugfs(vcpu);
db93f574 250 kvmppc_core_vcpu_free(vcpu);
bbf45ba5
HB
251}
252
253void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
254{
255 kvm_arch_vcpu_free(vcpu);
256}
257
258int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
259{
9dd921cf 260 return kvmppc_core_pending_dec(vcpu);
bbf45ba5
HB
261}
262
263static void kvmppc_decrementer_func(unsigned long data)
264{
265 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
266
9dd921cf 267 kvmppc_core_queue_dec(vcpu);
45c5eb67
HB
268
269 if (waitqueue_active(&vcpu->wq)) {
270 wake_up_interruptible(&vcpu->wq);
271 vcpu->stat.halt_wakeup++;
272 }
bbf45ba5
HB
273}
274
544c6761
AG
275/*
276 * low level hrtimer wake routine. Because this runs in hardirq context
277 * we schedule a tasklet to do the real work.
278 */
279enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
280{
281 struct kvm_vcpu *vcpu;
282
283 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
284 tasklet_schedule(&vcpu->arch.tasklet);
285
286 return HRTIMER_NORESTART;
287}
288
bbf45ba5
HB
289int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
290{
544c6761
AG
291 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
292 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
293 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
bbf45ba5 294
09000adb
BB
295#ifdef CONFIG_KVM_EXIT_TIMING
296 mutex_init(&vcpu->arch.exit_timing_lock);
297#endif
298
bbf45ba5
HB
299 return 0;
300}
301
302void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
303{
ecc0981f 304 kvmppc_mmu_destroy(vcpu);
bbf45ba5
HB
305}
306
307void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
308{
eab17672
SW
309#ifdef CONFIG_BOOKE
310 /*
311 * vrsave (formerly usprg0) isn't used by Linux, but may
312 * be used by the guest.
313 *
314 * On non-booke this is associated with Altivec and
315 * is handled by code in book3s.c.
316 */
317 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
318#endif
9dd921cf 319 kvmppc_core_vcpu_load(vcpu, cpu);
bbf45ba5
HB
320}
321
322void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
323{
9dd921cf 324 kvmppc_core_vcpu_put(vcpu);
eab17672
SW
325#ifdef CONFIG_BOOKE
326 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
327#endif
bbf45ba5
HB
328}
329
d0bfb940 330int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
f5d0906b 331 struct kvm_guest_debug *dbg)
bbf45ba5 332{
f5d0906b 333 return -EINVAL;
bbf45ba5
HB
334}
335
336static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
337 struct kvm_run *run)
338{
8e5b26b5 339 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
bbf45ba5
HB
340}
341
342static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
343 struct kvm_run *run)
344{
69b61833 345 u64 uninitialized_var(gpr);
bbf45ba5 346
8e5b26b5 347 if (run->mmio.len > sizeof(gpr)) {
bbf45ba5
HB
348 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
349 return;
350 }
351
352 if (vcpu->arch.mmio_is_bigendian) {
353 switch (run->mmio.len) {
b104d066 354 case 8: gpr = *(u64 *)run->mmio.data; break;
8e5b26b5
AG
355 case 4: gpr = *(u32 *)run->mmio.data; break;
356 case 2: gpr = *(u16 *)run->mmio.data; break;
357 case 1: gpr = *(u8 *)run->mmio.data; break;
bbf45ba5
HB
358 }
359 } else {
360 /* Convert BE data from userland back to LE. */
361 switch (run->mmio.len) {
8e5b26b5
AG
362 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
363 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
364 case 1: gpr = *(u8 *)run->mmio.data; break;
bbf45ba5
HB
365 }
366 }
8e5b26b5 367
3587d534
AG
368 if (vcpu->arch.mmio_sign_extend) {
369 switch (run->mmio.len) {
370#ifdef CONFIG_PPC64
371 case 4:
372 gpr = (s64)(s32)gpr;
373 break;
374#endif
375 case 2:
376 gpr = (s64)(s16)gpr;
377 break;
378 case 1:
379 gpr = (s64)(s8)gpr;
380 break;
381 }
382 }
383
8e5b26b5 384 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
b104d066
AG
385
386 switch (vcpu->arch.io_gpr & KVM_REG_EXT_MASK) {
387 case KVM_REG_GPR:
388 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
389 break;
390 case KVM_REG_FPR:
391 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
392 break;
287d5611 393#ifdef CONFIG_PPC_BOOK3S
b104d066
AG
394 case KVM_REG_QPR:
395 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
396 break;
397 case KVM_REG_FQPR:
398 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
399 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
400 break;
287d5611 401#endif
b104d066
AG
402 default:
403 BUG();
404 }
bbf45ba5
HB
405}
406
407int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
408 unsigned int rt, unsigned int bytes, int is_bigendian)
409{
410 if (bytes > sizeof(run->mmio.data)) {
411 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
412 run->mmio.len);
413 }
414
415 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
416 run->mmio.len = bytes;
417 run->mmio.is_write = 0;
418
419 vcpu->arch.io_gpr = rt;
420 vcpu->arch.mmio_is_bigendian = is_bigendian;
421 vcpu->mmio_needed = 1;
422 vcpu->mmio_is_write = 0;
3587d534 423 vcpu->arch.mmio_sign_extend = 0;
bbf45ba5
HB
424
425 return EMULATE_DO_MMIO;
426}
427
3587d534
AG
428/* Same as above, but sign extends */
429int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
430 unsigned int rt, unsigned int bytes, int is_bigendian)
431{
432 int r;
433
434 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
435 vcpu->arch.mmio_sign_extend = 1;
436
437 return r;
438}
439
bbf45ba5 440int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
b104d066 441 u64 val, unsigned int bytes, int is_bigendian)
bbf45ba5
HB
442{
443 void *data = run->mmio.data;
444
445 if (bytes > sizeof(run->mmio.data)) {
446 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
447 run->mmio.len);
448 }
449
450 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
451 run->mmio.len = bytes;
452 run->mmio.is_write = 1;
453 vcpu->mmio_needed = 1;
454 vcpu->mmio_is_write = 1;
455
456 /* Store the value at the lowest bytes in 'data'. */
457 if (is_bigendian) {
458 switch (bytes) {
b104d066 459 case 8: *(u64 *)data = val; break;
bbf45ba5
HB
460 case 4: *(u32 *)data = val; break;
461 case 2: *(u16 *)data = val; break;
462 case 1: *(u8 *)data = val; break;
463 }
464 } else {
465 /* Store LE value into 'data'. */
466 switch (bytes) {
467 case 4: st_le32(data, val); break;
468 case 2: st_le16(data, val); break;
469 case 1: *(u8 *)data = val; break;
470 }
471 }
472
473 return EMULATE_DO_MMIO;
474}
475
476int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
477{
478 int r;
479 sigset_t sigsaved;
480
481 if (vcpu->sigset_active)
482 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
483
484 if (vcpu->mmio_needed) {
485 if (!vcpu->mmio_is_write)
486 kvmppc_complete_mmio_load(vcpu, run);
487 vcpu->mmio_needed = 0;
488 } else if (vcpu->arch.dcr_needed) {
489 if (!vcpu->arch.dcr_is_write)
490 kvmppc_complete_dcr_load(vcpu, run);
491 vcpu->arch.dcr_needed = 0;
ad0a048b
AG
492 } else if (vcpu->arch.osi_needed) {
493 u64 *gprs = run->osi.gprs;
494 int i;
495
496 for (i = 0; i < 32; i++)
497 kvmppc_set_gpr(vcpu, i, gprs[i]);
498 vcpu->arch.osi_needed = 0;
bbf45ba5
HB
499 }
500
9dd921cf 501 kvmppc_core_deliver_interrupts(vcpu);
bbf45ba5
HB
502
503 local_irq_disable();
504 kvm_guest_enter();
505 r = __kvmppc_vcpu_run(run, vcpu);
506 kvm_guest_exit();
507 local_irq_enable();
508
509 if (vcpu->sigset_active)
510 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
511
512 return r;
513}
514
515int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
516{
18978768
AG
517 if (irq->irq == KVM_INTERRUPT_UNSET)
518 kvmppc_core_dequeue_external(vcpu, irq);
519 else
520 kvmppc_core_queue_external(vcpu, irq);
45c5eb67
HB
521
522 if (waitqueue_active(&vcpu->wq)) {
523 wake_up_interruptible(&vcpu->wq);
524 vcpu->stat.halt_wakeup++;
525 }
526
bbf45ba5
HB
527 return 0;
528}
529
71fbfd5f
AG
530static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
531 struct kvm_enable_cap *cap)
532{
533 int r;
534
535 if (cap->flags)
536 return -EINVAL;
537
538 switch (cap->cap) {
ad0a048b
AG
539 case KVM_CAP_PPC_OSI:
540 r = 0;
541 vcpu->arch.osi_enabled = true;
542 break;
71fbfd5f
AG
543 default:
544 r = -EINVAL;
545 break;
546 }
547
548 return r;
549}
550
bbf45ba5
HB
551int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
552 struct kvm_mp_state *mp_state)
553{
554 return -EINVAL;
555}
556
557int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
558 struct kvm_mp_state *mp_state)
559{
560 return -EINVAL;
561}
562
563long kvm_arch_vcpu_ioctl(struct file *filp,
564 unsigned int ioctl, unsigned long arg)
565{
566 struct kvm_vcpu *vcpu = filp->private_data;
567 void __user *argp = (void __user *)arg;
568 long r;
569
93736624
AK
570 switch (ioctl) {
571 case KVM_INTERRUPT: {
bbf45ba5
HB
572 struct kvm_interrupt irq;
573 r = -EFAULT;
574 if (copy_from_user(&irq, argp, sizeof(irq)))
93736624 575 goto out;
bbf45ba5 576 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
93736624 577 goto out;
bbf45ba5 578 }
19483d14 579
71fbfd5f
AG
580 case KVM_ENABLE_CAP:
581 {
582 struct kvm_enable_cap cap;
583 r = -EFAULT;
584 if (copy_from_user(&cap, argp, sizeof(cap)))
585 goto out;
586 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
587 break;
588 }
bbf45ba5
HB
589 default:
590 r = -EINVAL;
591 }
592
593out:
594 return r;
595}
596
15711e9c
AG
597static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
598{
599 u32 inst_lis = 0x3c000000;
600 u32 inst_ori = 0x60000000;
601 u32 inst_nop = 0x60000000;
602 u32 inst_sc = 0x44000002;
603 u32 inst_imm_mask = 0xffff;
604
605 /*
606 * The hypercall to get into KVM from within guest context is as
607 * follows:
608 *
609 * lis r0, r0, KVM_SC_MAGIC_R0@h
610 * ori r0, KVM_SC_MAGIC_R0@l
611 * sc
612 * nop
613 */
614 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
615 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
616 pvinfo->hcall[2] = inst_sc;
617 pvinfo->hcall[3] = inst_nop;
618
619 return 0;
620}
621
bbf45ba5
HB
622long kvm_arch_vm_ioctl(struct file *filp,
623 unsigned int ioctl, unsigned long arg)
624{
15711e9c 625 void __user *argp = (void __user *)arg;
bbf45ba5
HB
626 long r;
627
628 switch (ioctl) {
15711e9c
AG
629 case KVM_PPC_GET_PVINFO: {
630 struct kvm_ppc_pvinfo pvinfo;
d8cdddcd 631 memset(&pvinfo, 0, sizeof(pvinfo));
15711e9c
AG
632 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
633 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
634 r = -EFAULT;
635 goto out;
636 }
637
638 break;
639 }
bbf45ba5 640 default:
367e1319 641 r = -ENOTTY;
bbf45ba5
HB
642 }
643
15711e9c 644out:
bbf45ba5
HB
645 return r;
646}
647
648int kvm_arch_init(void *opaque)
649{
650 return 0;
651}
652
653void kvm_arch_exit(void)
654{
655}