blob: 22f6fa2982f28fb865bc09f60cacfafe9a2b0cb1 [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>
24#include <linux/module.h>
25#include <linux/vmalloc.h>
Alexander Graf544c6762009-11-02 12:02:31 +000026#include <linux/hrtimer.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>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050029#include <asm/cputable.h>
30#include <asm/uaccess.h>
31#include <asm/kvm_ppc.h>
Hollis Blanchard83aae4a2008-07-25 13:54:52 -050032#include <asm/tlbflush.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060033#include "timing.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110034#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050035
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030036#define CREATE_TRACE_POINTS
37#include "trace.h"
38
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050039int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
40{
Alexander Graf666e7252010-07-29 14:47:43 +020041 return !(v->arch.shared->msr & MSR_WE) ||
42 !!(v->arch.pending_exceptions);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050043}
44
45
46int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
47{
48 enum emulation_result er;
49 int r;
50
51 er = kvmppc_emulate_instruction(run, vcpu);
52 switch (er) {
53 case EMULATE_DONE:
54 /* Future optimization: only reload non-volatiles if they were
55 * actually modified. */
56 r = RESUME_GUEST_NV;
57 break;
58 case EMULATE_DO_MMIO:
59 run->exit_reason = KVM_EXIT_MMIO;
60 /* We must reload nonvolatiles because "update" load/store
61 * instructions modify register state. */
62 /* Future optimization: only reload non-volatiles if they were
63 * actually modified. */
64 r = RESUME_HOST_NV;
65 break;
66 case EMULATE_FAIL:
67 /* XXX Deliver Program interrupt to guest. */
68 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +020069 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050070 r = RESUME_HOST;
71 break;
72 default:
73 BUG();
74 }
75
76 return r;
77}
78
Alexander Graf10474ae2009-09-15 11:37:46 +020079int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050080{
Alexander Graf10474ae2009-09-15 11:37:46 +020081 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050082}
83
84void kvm_arch_hardware_disable(void *garbage)
85{
86}
87
88int kvm_arch_hardware_setup(void)
89{
90 return 0;
91}
92
93void kvm_arch_hardware_unsetup(void)
94{
95}
96
97void kvm_arch_check_processor_compat(void *rtn)
98{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060099 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500100}
101
102struct kvm *kvm_arch_create_vm(void)
103{
104 struct kvm *kvm;
105
106 kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
107 if (!kvm)
108 return ERR_PTR(-ENOMEM);
109
110 return kvm;
111}
112
113static void kvmppc_free_vcpus(struct kvm *kvm)
114{
115 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300116 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500117
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300118 kvm_for_each_vcpu(i, vcpu, kvm)
119 kvm_arch_vcpu_free(vcpu);
120
121 mutex_lock(&kvm->lock);
122 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
123 kvm->vcpus[i] = NULL;
124
125 atomic_set(&kvm->online_vcpus, 0);
126 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500127}
128
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800129void kvm_arch_sync_events(struct kvm *kvm)
130{
131}
132
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500133void kvm_arch_destroy_vm(struct kvm *kvm)
134{
135 kvmppc_free_vcpus(kvm);
136 kvm_free_physmem(kvm);
Marcelo Tosatti64749202010-01-19 12:45:23 -0200137 cleanup_srcu_struct(&kvm->srcu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500138 kfree(kvm);
139}
140
141int kvm_dev_ioctl_check_extension(long ext)
142{
143 int r;
144
145 switch (ext) {
Alexander Grafe15a1132009-11-30 03:02:02 +0000146 case KVM_CAP_PPC_SEGSTATE:
Alexander Grafc10207f2010-02-19 11:00:45 +0100147 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Graf18978762010-03-24 21:48:18 +0100148 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100149 case KVM_CAP_ENABLE_CAP:
Alexander Grafad0a0482010-03-24 21:48:30 +0100150 case KVM_CAP_PPC_OSI:
Alexander Grafe15a1132009-11-30 03:02:02 +0000151 r = 1;
152 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200153 case KVM_CAP_COALESCED_MMIO:
154 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
155 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500156 default:
157 r = 0;
158 break;
159 }
160 return r;
161
162}
163
164long kvm_arch_dev_ioctl(struct file *filp,
165 unsigned int ioctl, unsigned long arg)
166{
167 return -EINVAL;
168}
169
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200170int kvm_arch_prepare_memory_region(struct kvm *kvm,
171 struct kvm_memory_slot *memslot,
172 struct kvm_memory_slot old,
173 struct kvm_userspace_memory_region *mem,
174 int user_alloc)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500175{
176 return 0;
177}
178
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200179void kvm_arch_commit_memory_region(struct kvm *kvm,
180 struct kvm_userspace_memory_region *mem,
181 struct kvm_memory_slot old,
182 int user_alloc)
183{
184 return;
185}
186
187
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300188void kvm_arch_flush_shadow(struct kvm *kvm)
189{
190}
191
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500192struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
193{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600194 struct kvm_vcpu *vcpu;
195 vcpu = kvmppc_core_vcpu_create(kvm, id);
Wei Yongjun06056bf2010-03-09 14:13:43 +0800196 if (!IS_ERR(vcpu))
197 kvmppc_create_vcpu_debugfs(vcpu, id);
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600198 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500199}
200
201void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
202{
Alexander Grafa5954052010-02-22 16:52:14 +0100203 /* Make sure we're not using the vcpu anymore */
204 hrtimer_cancel(&vcpu->arch.dec_timer);
205 tasklet_kill(&vcpu->arch.tasklet);
206
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600207 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600208 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500209}
210
211void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
212{
213 kvm_arch_vcpu_free(vcpu);
214}
215
216int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
217{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600218 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500219}
220
221static void kvmppc_decrementer_func(unsigned long data)
222{
223 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
224
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600225 kvmppc_core_queue_dec(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500226
227 if (waitqueue_active(&vcpu->wq)) {
228 wake_up_interruptible(&vcpu->wq);
229 vcpu->stat.halt_wakeup++;
230 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500231}
232
Alexander Graf544c6762009-11-02 12:02:31 +0000233/*
234 * low level hrtimer wake routine. Because this runs in hardirq context
235 * we schedule a tasklet to do the real work.
236 */
237enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
238{
239 struct kvm_vcpu *vcpu;
240
241 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
242 tasklet_schedule(&vcpu->arch.tasklet);
243
244 return HRTIMER_NORESTART;
245}
246
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500247int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
248{
Alexander Graf544c6762009-11-02 12:02:31 +0000249 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
250 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
251 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500252
253 return 0;
254}
255
256void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
257{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600258 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500259}
260
261void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
262{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600263 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500264}
265
266void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
267{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600268 kvmppc_core_vcpu_put(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500269}
270
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100271int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600272 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500273{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600274 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500275}
276
277static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
278 struct kvm_run *run)
279{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100280 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500281}
282
283static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
284 struct kvm_run *run)
285{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000286 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500287
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100288 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500289 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
290 return;
291 }
292
293 if (vcpu->arch.mmio_is_bigendian) {
294 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100295 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100296 case 4: gpr = *(u32 *)run->mmio.data; break;
297 case 2: gpr = *(u16 *)run->mmio.data; break;
298 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500299 }
300 } else {
301 /* Convert BE data from userland back to LE. */
302 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100303 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
304 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
305 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500306 }
307 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100308
Alexander Graf3587d532010-02-19 11:00:30 +0100309 if (vcpu->arch.mmio_sign_extend) {
310 switch (run->mmio.len) {
311#ifdef CONFIG_PPC64
312 case 4:
313 gpr = (s64)(s32)gpr;
314 break;
315#endif
316 case 2:
317 gpr = (s64)(s16)gpr;
318 break;
319 case 1:
320 gpr = (s64)(s8)gpr;
321 break;
322 }
323 }
324
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100325 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100326
327 switch (vcpu->arch.io_gpr & KVM_REG_EXT_MASK) {
328 case KVM_REG_GPR:
329 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
330 break;
331 case KVM_REG_FPR:
332 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
333 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200334#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb104d062010-02-19 11:00:29 +0100335 case KVM_REG_QPR:
336 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
337 break;
338 case KVM_REG_FQPR:
339 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
340 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
341 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200342#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100343 default:
344 BUG();
345 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500346}
347
348int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
349 unsigned int rt, unsigned int bytes, int is_bigendian)
350{
351 if (bytes > sizeof(run->mmio.data)) {
352 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
353 run->mmio.len);
354 }
355
356 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
357 run->mmio.len = bytes;
358 run->mmio.is_write = 0;
359
360 vcpu->arch.io_gpr = rt;
361 vcpu->arch.mmio_is_bigendian = is_bigendian;
362 vcpu->mmio_needed = 1;
363 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100364 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500365
366 return EMULATE_DO_MMIO;
367}
368
Alexander Graf3587d532010-02-19 11:00:30 +0100369/* Same as above, but sign extends */
370int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
371 unsigned int rt, unsigned int bytes, int is_bigendian)
372{
373 int r;
374
375 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
376 vcpu->arch.mmio_sign_extend = 1;
377
378 return r;
379}
380
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500381int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100382 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500383{
384 void *data = run->mmio.data;
385
386 if (bytes > sizeof(run->mmio.data)) {
387 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
388 run->mmio.len);
389 }
390
391 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
392 run->mmio.len = bytes;
393 run->mmio.is_write = 1;
394 vcpu->mmio_needed = 1;
395 vcpu->mmio_is_write = 1;
396
397 /* Store the value at the lowest bytes in 'data'. */
398 if (is_bigendian) {
399 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100400 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500401 case 4: *(u32 *)data = val; break;
402 case 2: *(u16 *)data = val; break;
403 case 1: *(u8 *)data = val; break;
404 }
405 } else {
406 /* Store LE value into 'data'. */
407 switch (bytes) {
408 case 4: st_le32(data, val); break;
409 case 2: st_le16(data, val); break;
410 case 1: *(u8 *)data = val; break;
411 }
412 }
413
414 return EMULATE_DO_MMIO;
415}
416
417int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
418{
419 int r;
420 sigset_t sigsaved;
421
422 if (vcpu->sigset_active)
423 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
424
425 if (vcpu->mmio_needed) {
426 if (!vcpu->mmio_is_write)
427 kvmppc_complete_mmio_load(vcpu, run);
428 vcpu->mmio_needed = 0;
429 } else if (vcpu->arch.dcr_needed) {
430 if (!vcpu->arch.dcr_is_write)
431 kvmppc_complete_dcr_load(vcpu, run);
432 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100433 } else if (vcpu->arch.osi_needed) {
434 u64 *gprs = run->osi.gprs;
435 int i;
436
437 for (i = 0; i < 32; i++)
438 kvmppc_set_gpr(vcpu, i, gprs[i]);
439 vcpu->arch.osi_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500440 }
441
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600442 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500443
444 local_irq_disable();
445 kvm_guest_enter();
446 r = __kvmppc_vcpu_run(run, vcpu);
447 kvm_guest_exit();
448 local_irq_enable();
449
450 if (vcpu->sigset_active)
451 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
452
453 return r;
454}
455
456int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
457{
Alexander Graf18978762010-03-24 21:48:18 +0100458 if (irq->irq == KVM_INTERRUPT_UNSET)
459 kvmppc_core_dequeue_external(vcpu, irq);
460 else
461 kvmppc_core_queue_external(vcpu, irq);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500462
463 if (waitqueue_active(&vcpu->wq)) {
464 wake_up_interruptible(&vcpu->wq);
465 vcpu->stat.halt_wakeup++;
466 }
467
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500468 return 0;
469}
470
Alexander Graf71fbfd52010-03-24 21:48:29 +0100471static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
472 struct kvm_enable_cap *cap)
473{
474 int r;
475
476 if (cap->flags)
477 return -EINVAL;
478
479 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100480 case KVM_CAP_PPC_OSI:
481 r = 0;
482 vcpu->arch.osi_enabled = true;
483 break;
Alexander Graf71fbfd52010-03-24 21:48:29 +0100484 default:
485 r = -EINVAL;
486 break;
487 }
488
489 return r;
490}
491
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500492int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
493 struct kvm_mp_state *mp_state)
494{
495 return -EINVAL;
496}
497
498int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
499 struct kvm_mp_state *mp_state)
500{
501 return -EINVAL;
502}
503
504long kvm_arch_vcpu_ioctl(struct file *filp,
505 unsigned int ioctl, unsigned long arg)
506{
507 struct kvm_vcpu *vcpu = filp->private_data;
508 void __user *argp = (void __user *)arg;
509 long r;
510
Avi Kivity93736622010-05-13 12:35:17 +0300511 switch (ioctl) {
512 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500513 struct kvm_interrupt irq;
514 r = -EFAULT;
515 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300516 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500517 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300518 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500519 }
Avi Kivity19483d12010-05-13 12:30:43 +0300520
Alexander Graf71fbfd52010-03-24 21:48:29 +0100521 case KVM_ENABLE_CAP:
522 {
523 struct kvm_enable_cap cap;
524 r = -EFAULT;
525 if (copy_from_user(&cap, argp, sizeof(cap)))
526 goto out;
527 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
528 break;
529 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500530 default:
531 r = -EINVAL;
532 }
533
534out:
535 return r;
536}
537
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500538long kvm_arch_vm_ioctl(struct file *filp,
539 unsigned int ioctl, unsigned long arg)
540{
541 long r;
542
543 switch (ioctl) {
544 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300545 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500546 }
547
548 return r;
549}
550
551int kvm_arch_init(void *opaque)
552{
553 return 0;
554}
555
556void kvm_arch_exit(void)
557{
558}