blob: 72a4ad86ee91f4f8900149f925df0eac755bcd10 [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{
Gleb Natapova1b37102009-07-09 15:33:52 +030041 return !(v->arch.msr & MSR_WE) || !!(v->arch.pending_exceptions);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050042}
43
44
45int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
46{
47 enum emulation_result er;
48 int r;
49
50 er = kvmppc_emulate_instruction(run, vcpu);
51 switch (er) {
52 case EMULATE_DONE:
53 /* Future optimization: only reload non-volatiles if they were
54 * actually modified. */
55 r = RESUME_GUEST_NV;
56 break;
57 case EMULATE_DO_MMIO:
58 run->exit_reason = KVM_EXIT_MMIO;
59 /* We must reload nonvolatiles because "update" load/store
60 * instructions modify register state. */
61 /* Future optimization: only reload non-volatiles if they were
62 * actually modified. */
63 r = RESUME_HOST_NV;
64 break;
65 case EMULATE_FAIL:
66 /* XXX Deliver Program interrupt to guest. */
67 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +020068 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050069 r = RESUME_HOST;
70 break;
71 default:
72 BUG();
73 }
74
75 return r;
76}
77
Alexander Graf10474ae2009-09-15 11:37:46 +020078int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050079{
Alexander Graf10474ae2009-09-15 11:37:46 +020080 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050081}
82
83void kvm_arch_hardware_disable(void *garbage)
84{
85}
86
87int kvm_arch_hardware_setup(void)
88{
89 return 0;
90}
91
92void kvm_arch_hardware_unsetup(void)
93{
94}
95
96void kvm_arch_check_processor_compat(void *rtn)
97{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060098 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050099}
100
101struct kvm *kvm_arch_create_vm(void)
102{
103 struct kvm *kvm;
104
105 kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
106 if (!kvm)
107 return ERR_PTR(-ENOMEM);
108
109 return kvm;
110}
111
112static void kvmppc_free_vcpus(struct kvm *kvm)
113{
114 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300115 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500116
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300117 kvm_for_each_vcpu(i, vcpu, kvm)
118 kvm_arch_vcpu_free(vcpu);
119
120 mutex_lock(&kvm->lock);
121 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
122 kvm->vcpus[i] = NULL;
123
124 atomic_set(&kvm->online_vcpus, 0);
125 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500126}
127
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800128void kvm_arch_sync_events(struct kvm *kvm)
129{
130}
131
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500132void kvm_arch_destroy_vm(struct kvm *kvm)
133{
134 kvmppc_free_vcpus(kvm);
135 kvm_free_physmem(kvm);
Marcelo Tosatti64749202010-01-19 12:45:23 -0200136 cleanup_srcu_struct(&kvm->srcu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500137 kfree(kvm);
138}
139
140int kvm_dev_ioctl_check_extension(long ext)
141{
142 int r;
143
144 switch (ext) {
Alexander Grafe15a1132009-11-30 03:02:02 +0000145 case KVM_CAP_PPC_SEGSTATE:
Alexander Grafc10207f2010-02-19 11:00:45 +0100146 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Graf18978762010-03-24 21:48:18 +0100147 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100148 case KVM_CAP_ENABLE_CAP:
Alexander Grafad0a0482010-03-24 21:48:30 +0100149 case KVM_CAP_PPC_OSI:
Alexander Grafe15a1132009-11-30 03:02:02 +0000150 r = 1;
151 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200152 case KVM_CAP_COALESCED_MMIO:
153 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
154 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500155 default:
156 r = 0;
157 break;
158 }
159 return r;
160
161}
162
163long kvm_arch_dev_ioctl(struct file *filp,
164 unsigned int ioctl, unsigned long arg)
165{
166 return -EINVAL;
167}
168
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200169int kvm_arch_prepare_memory_region(struct kvm *kvm,
170 struct kvm_memory_slot *memslot,
171 struct kvm_memory_slot old,
172 struct kvm_userspace_memory_region *mem,
173 int user_alloc)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500174{
175 return 0;
176}
177
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200178void kvm_arch_commit_memory_region(struct kvm *kvm,
179 struct kvm_userspace_memory_region *mem,
180 struct kvm_memory_slot old,
181 int user_alloc)
182{
183 return;
184}
185
186
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300187void kvm_arch_flush_shadow(struct kvm *kvm)
188{
189}
190
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500191struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
192{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600193 struct kvm_vcpu *vcpu;
194 vcpu = kvmppc_core_vcpu_create(kvm, id);
Wei Yongjun06056bf2010-03-09 14:13:43 +0800195 if (!IS_ERR(vcpu))
196 kvmppc_create_vcpu_debugfs(vcpu, id);
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600197 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500198}
199
200void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
201{
Alexander Grafa5954052010-02-22 16:52:14 +0100202 /* Make sure we're not using the vcpu anymore */
203 hrtimer_cancel(&vcpu->arch.dec_timer);
204 tasklet_kill(&vcpu->arch.tasklet);
205
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600206 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600207 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500208}
209
210void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
211{
212 kvm_arch_vcpu_free(vcpu);
213}
214
215int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
216{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600217 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500218}
219
220static void kvmppc_decrementer_func(unsigned long data)
221{
222 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
223
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600224 kvmppc_core_queue_dec(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500225
226 if (waitqueue_active(&vcpu->wq)) {
227 wake_up_interruptible(&vcpu->wq);
228 vcpu->stat.halt_wakeup++;
229 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500230}
231
Alexander Graf544c6762009-11-02 12:02:31 +0000232/*
233 * low level hrtimer wake routine. Because this runs in hardirq context
234 * we schedule a tasklet to do the real work.
235 */
236enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
237{
238 struct kvm_vcpu *vcpu;
239
240 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
241 tasklet_schedule(&vcpu->arch.tasklet);
242
243 return HRTIMER_NORESTART;
244}
245
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500246int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
247{
Alexander Graf544c6762009-11-02 12:02:31 +0000248 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
249 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
250 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500251
252 return 0;
253}
254
255void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
256{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600257 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500258}
259
260void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
261{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600262 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500263}
264
265void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
266{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600267 kvmppc_core_vcpu_put(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500268}
269
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100270int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600271 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500272{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600273 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500274}
275
276static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
277 struct kvm_run *run)
278{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100279 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500280}
281
282static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
283 struct kvm_run *run)
284{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000285 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500286
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100287 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500288 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
289 return;
290 }
291
292 if (vcpu->arch.mmio_is_bigendian) {
293 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100294 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100295 case 4: gpr = *(u32 *)run->mmio.data; break;
296 case 2: gpr = *(u16 *)run->mmio.data; break;
297 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500298 }
299 } else {
300 /* Convert BE data from userland back to LE. */
301 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100302 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
303 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
304 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500305 }
306 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100307
Alexander Graf3587d532010-02-19 11:00:30 +0100308 if (vcpu->arch.mmio_sign_extend) {
309 switch (run->mmio.len) {
310#ifdef CONFIG_PPC64
311 case 4:
312 gpr = (s64)(s32)gpr;
313 break;
314#endif
315 case 2:
316 gpr = (s64)(s16)gpr;
317 break;
318 case 1:
319 gpr = (s64)(s8)gpr;
320 break;
321 }
322 }
323
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100324 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100325
326 switch (vcpu->arch.io_gpr & KVM_REG_EXT_MASK) {
327 case KVM_REG_GPR:
328 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
329 break;
330 case KVM_REG_FPR:
331 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
332 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200333#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb104d062010-02-19 11:00:29 +0100334 case KVM_REG_QPR:
335 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
336 break;
337 case KVM_REG_FQPR:
338 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
339 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
340 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200341#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100342 default:
343 BUG();
344 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500345}
346
347int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
348 unsigned int rt, unsigned int bytes, int is_bigendian)
349{
350 if (bytes > sizeof(run->mmio.data)) {
351 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
352 run->mmio.len);
353 }
354
355 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
356 run->mmio.len = bytes;
357 run->mmio.is_write = 0;
358
359 vcpu->arch.io_gpr = rt;
360 vcpu->arch.mmio_is_bigendian = is_bigendian;
361 vcpu->mmio_needed = 1;
362 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100363 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500364
365 return EMULATE_DO_MMIO;
366}
367
Alexander Graf3587d532010-02-19 11:00:30 +0100368/* Same as above, but sign extends */
369int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
370 unsigned int rt, unsigned int bytes, int is_bigendian)
371{
372 int r;
373
374 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
375 vcpu->arch.mmio_sign_extend = 1;
376
377 return r;
378}
379
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500380int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100381 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500382{
383 void *data = run->mmio.data;
384
385 if (bytes > sizeof(run->mmio.data)) {
386 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
387 run->mmio.len);
388 }
389
390 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
391 run->mmio.len = bytes;
392 run->mmio.is_write = 1;
393 vcpu->mmio_needed = 1;
394 vcpu->mmio_is_write = 1;
395
396 /* Store the value at the lowest bytes in 'data'. */
397 if (is_bigendian) {
398 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100399 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500400 case 4: *(u32 *)data = val; break;
401 case 2: *(u16 *)data = val; break;
402 case 1: *(u8 *)data = val; break;
403 }
404 } else {
405 /* Store LE value into 'data'. */
406 switch (bytes) {
407 case 4: st_le32(data, val); break;
408 case 2: st_le16(data, val); break;
409 case 1: *(u8 *)data = val; break;
410 }
411 }
412
413 return EMULATE_DO_MMIO;
414}
415
416int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
417{
418 int r;
419 sigset_t sigsaved;
420
421 if (vcpu->sigset_active)
422 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
423
424 if (vcpu->mmio_needed) {
425 if (!vcpu->mmio_is_write)
426 kvmppc_complete_mmio_load(vcpu, run);
427 vcpu->mmio_needed = 0;
428 } else if (vcpu->arch.dcr_needed) {
429 if (!vcpu->arch.dcr_is_write)
430 kvmppc_complete_dcr_load(vcpu, run);
431 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100432 } else if (vcpu->arch.osi_needed) {
433 u64 *gprs = run->osi.gprs;
434 int i;
435
436 for (i = 0; i < 32; i++)
437 kvmppc_set_gpr(vcpu, i, gprs[i]);
438 vcpu->arch.osi_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500439 }
440
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600441 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500442
443 local_irq_disable();
444 kvm_guest_enter();
445 r = __kvmppc_vcpu_run(run, vcpu);
446 kvm_guest_exit();
447 local_irq_enable();
448
449 if (vcpu->sigset_active)
450 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
451
452 return r;
453}
454
455int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
456{
Alexander Graf18978762010-03-24 21:48:18 +0100457 if (irq->irq == KVM_INTERRUPT_UNSET)
458 kvmppc_core_dequeue_external(vcpu, irq);
459 else
460 kvmppc_core_queue_external(vcpu, irq);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500461
462 if (waitqueue_active(&vcpu->wq)) {
463 wake_up_interruptible(&vcpu->wq);
464 vcpu->stat.halt_wakeup++;
465 }
466
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500467 return 0;
468}
469
Alexander Graf71fbfd52010-03-24 21:48:29 +0100470static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
471 struct kvm_enable_cap *cap)
472{
473 int r;
474
475 if (cap->flags)
476 return -EINVAL;
477
478 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100479 case KVM_CAP_PPC_OSI:
480 r = 0;
481 vcpu->arch.osi_enabled = true;
482 break;
Alexander Graf71fbfd52010-03-24 21:48:29 +0100483 default:
484 r = -EINVAL;
485 break;
486 }
487
488 return r;
489}
490
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500491int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
492 struct kvm_mp_state *mp_state)
493{
494 return -EINVAL;
495}
496
497int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
498 struct kvm_mp_state *mp_state)
499{
500 return -EINVAL;
501}
502
503long kvm_arch_vcpu_ioctl(struct file *filp,
504 unsigned int ioctl, unsigned long arg)
505{
506 struct kvm_vcpu *vcpu = filp->private_data;
507 void __user *argp = (void __user *)arg;
508 long r;
509
Avi Kivity93736622010-05-13 12:35:17 +0300510 switch (ioctl) {
511 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500512 struct kvm_interrupt irq;
513 r = -EFAULT;
514 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300515 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500516 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300517 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500518 }
Avi Kivity19483d12010-05-13 12:30:43 +0300519
Alexander Graf71fbfd52010-03-24 21:48:29 +0100520 case KVM_ENABLE_CAP:
521 {
522 struct kvm_enable_cap cap;
523 r = -EFAULT;
524 if (copy_from_user(&cap, argp, sizeof(cap)))
525 goto out;
526 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
527 break;
528 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500529 default:
530 r = -EINVAL;
531 }
532
533out:
534 return r;
535}
536
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500537long kvm_arch_vm_ioctl(struct file *filp,
538 unsigned int ioctl, unsigned long arg)
539{
540 long r;
541
542 switch (ioctl) {
543 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300544 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500545 }
546
547 return r;
548}
549
550int kvm_arch_init(void *opaque)
551{
552 return 0;
553}
554
555void kvm_arch_exit(void)
556{
557}