blob: 9e6aa8bfd160438099daa44d80ff8a49a11d062e [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
Alexander Graf2a342ed2010-07-29 14:47:48 +020045int 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) {
Alexander Graf5fc87402010-07-29 14:47:55 +020064 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
Alexander Grafdf1bfa22010-08-03 02:29:27 +020069 r2 = KVM_MAGIC_FEAT_SR;
Alexander Graf7508e162010-08-03 11:32:56 +020070
Alexander Graf5fc87402010-07-29 14:47:55 +020071 r = HC_EV_SUCCESS;
72 break;
73 }
Alexander Graf2a342ed2010-07-29 14:47:48 +020074 case HC_VENDOR_KVM | KVM_HC_FEATURES:
75 r = HC_EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +020076#if defined(CONFIG_PPC_BOOK3S) /* XXX Missing magic page on BookE */
77 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
78#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +020079
80 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +020081 break;
82 default:
83 r = HC_EV_UNIMPLEMENTED;
84 break;
85 }
86
Alexander Graf7508e162010-08-03 11:32:56 +020087 kvmppc_set_gpr(vcpu, 4, r2);
88
Alexander Graf2a342ed2010-07-29 14:47:48 +020089 return r;
90}
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050091
92int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
93{
94 enum emulation_result er;
95 int r;
96
97 er = kvmppc_emulate_instruction(run, vcpu);
98 switch (er) {
99 case EMULATE_DONE:
100 /* Future optimization: only reload non-volatiles if they were
101 * actually modified. */
102 r = RESUME_GUEST_NV;
103 break;
104 case EMULATE_DO_MMIO:
105 run->exit_reason = KVM_EXIT_MMIO;
106 /* We must reload nonvolatiles because "update" load/store
107 * instructions modify register state. */
108 /* Future optimization: only reload non-volatiles if they were
109 * actually modified. */
110 r = RESUME_HOST_NV;
111 break;
112 case EMULATE_FAIL:
113 /* XXX Deliver Program interrupt to guest. */
114 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200115 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500116 r = RESUME_HOST;
117 break;
118 default:
119 BUG();
120 }
121
122 return r;
123}
124
Alexander Graf10474ae2009-09-15 11:37:46 +0200125int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500126{
Alexander Graf10474ae2009-09-15 11:37:46 +0200127 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500128}
129
130void kvm_arch_hardware_disable(void *garbage)
131{
132}
133
134int kvm_arch_hardware_setup(void)
135{
136 return 0;
137}
138
139void kvm_arch_hardware_unsetup(void)
140{
141}
142
143void kvm_arch_check_processor_compat(void *rtn)
144{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600145 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500146}
147
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100148int kvm_arch_init_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500149{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100150 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500151}
152
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100153void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500154{
155 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300156 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500157
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300158 kvm_for_each_vcpu(i, vcpu, kvm)
159 kvm_arch_vcpu_free(vcpu);
160
161 mutex_lock(&kvm->lock);
162 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
163 kvm->vcpus[i] = NULL;
164
165 atomic_set(&kvm->online_vcpus, 0);
166 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500167}
168
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800169void kvm_arch_sync_events(struct kvm *kvm)
170{
171}
172
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500173int kvm_dev_ioctl_check_extension(long ext)
174{
175 int r;
176
177 switch (ext) {
Alexander Grafe15a1132009-11-30 03:02:02 +0000178 case KVM_CAP_PPC_SEGSTATE:
Alexander Grafc10207f2010-02-19 11:00:45 +0100179 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Graf18978762010-03-24 21:48:18 +0100180 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200181 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100182 case KVM_CAP_ENABLE_CAP:
Alexander Grafad0a0482010-03-24 21:48:30 +0100183 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200184 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafe15a1132009-11-30 03:02:02 +0000185 r = 1;
186 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200187 case KVM_CAP_COALESCED_MMIO:
188 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
189 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500190 default:
191 r = 0;
192 break;
193 }
194 return r;
195
196}
197
198long kvm_arch_dev_ioctl(struct file *filp,
199 unsigned int ioctl, unsigned long arg)
200{
201 return -EINVAL;
202}
203
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200204int kvm_arch_prepare_memory_region(struct kvm *kvm,
205 struct kvm_memory_slot *memslot,
206 struct kvm_memory_slot old,
207 struct kvm_userspace_memory_region *mem,
208 int user_alloc)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500209{
210 return 0;
211}
212
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200213void kvm_arch_commit_memory_region(struct kvm *kvm,
214 struct kvm_userspace_memory_region *mem,
215 struct kvm_memory_slot old,
216 int user_alloc)
217{
218 return;
219}
220
221
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300222void kvm_arch_flush_shadow(struct kvm *kvm)
223{
224}
225
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500226struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
227{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600228 struct kvm_vcpu *vcpu;
229 vcpu = kvmppc_core_vcpu_create(kvm, id);
Wei Yongjun06056bf2010-03-09 14:13:43 +0800230 if (!IS_ERR(vcpu))
231 kvmppc_create_vcpu_debugfs(vcpu, id);
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600232 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500233}
234
235void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
236{
Alexander Grafa5954052010-02-22 16:52:14 +0100237 /* Make sure we're not using the vcpu anymore */
238 hrtimer_cancel(&vcpu->arch.dec_timer);
239 tasklet_kill(&vcpu->arch.tasklet);
240
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600241 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600242 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500243}
244
245void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
246{
247 kvm_arch_vcpu_free(vcpu);
248}
249
250int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
251{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600252 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500253}
254
255static void kvmppc_decrementer_func(unsigned long data)
256{
257 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
258
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600259 kvmppc_core_queue_dec(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500260
261 if (waitqueue_active(&vcpu->wq)) {
262 wake_up_interruptible(&vcpu->wq);
263 vcpu->stat.halt_wakeup++;
264 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500265}
266
Alexander Graf544c6762009-11-02 12:02:31 +0000267/*
268 * low level hrtimer wake routine. Because this runs in hardirq context
269 * we schedule a tasklet to do the real work.
270 */
271enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
272{
273 struct kvm_vcpu *vcpu;
274
275 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
276 tasklet_schedule(&vcpu->arch.tasklet);
277
278 return HRTIMER_NORESTART;
279}
280
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500281int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
282{
Alexander Graf544c6762009-11-02 12:02:31 +0000283 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
284 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
285 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500286
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530287#ifdef CONFIG_KVM_EXIT_TIMING
288 mutex_init(&vcpu->arch.exit_timing_lock);
289#endif
290
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500291 return 0;
292}
293
294void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
295{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600296 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500297}
298
299void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
300{
Scott Woodeab17672011-04-27 17:24:10 -0500301#ifdef CONFIG_BOOKE
302 /*
303 * vrsave (formerly usprg0) isn't used by Linux, but may
304 * be used by the guest.
305 *
306 * On non-booke this is associated with Altivec and
307 * is handled by code in book3s.c.
308 */
309 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
310#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600311 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500312}
313
314void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
315{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600316 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500317#ifdef CONFIG_BOOKE
318 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
319#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500320}
321
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100322int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600323 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500324{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600325 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500326}
327
328static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
329 struct kvm_run *run)
330{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100331 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500332}
333
334static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
335 struct kvm_run *run)
336{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000337 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500338
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100339 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500340 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
341 return;
342 }
343
344 if (vcpu->arch.mmio_is_bigendian) {
345 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100346 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100347 case 4: gpr = *(u32 *)run->mmio.data; break;
348 case 2: gpr = *(u16 *)run->mmio.data; break;
349 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500350 }
351 } else {
352 /* Convert BE data from userland back to LE. */
353 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100354 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
355 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
356 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500357 }
358 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100359
Alexander Graf3587d532010-02-19 11:00:30 +0100360 if (vcpu->arch.mmio_sign_extend) {
361 switch (run->mmio.len) {
362#ifdef CONFIG_PPC64
363 case 4:
364 gpr = (s64)(s32)gpr;
365 break;
366#endif
367 case 2:
368 gpr = (s64)(s16)gpr;
369 break;
370 case 1:
371 gpr = (s64)(s8)gpr;
372 break;
373 }
374 }
375
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100376 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100377
378 switch (vcpu->arch.io_gpr & KVM_REG_EXT_MASK) {
379 case KVM_REG_GPR:
380 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
381 break;
382 case KVM_REG_FPR:
383 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
384 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200385#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb104d062010-02-19 11:00:29 +0100386 case KVM_REG_QPR:
387 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
388 break;
389 case KVM_REG_FQPR:
390 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
391 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
392 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200393#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100394 default:
395 BUG();
396 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500397}
398
399int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
400 unsigned int rt, unsigned int bytes, int is_bigendian)
401{
402 if (bytes > sizeof(run->mmio.data)) {
403 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
404 run->mmio.len);
405 }
406
407 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
408 run->mmio.len = bytes;
409 run->mmio.is_write = 0;
410
411 vcpu->arch.io_gpr = rt;
412 vcpu->arch.mmio_is_bigendian = is_bigendian;
413 vcpu->mmio_needed = 1;
414 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100415 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500416
417 return EMULATE_DO_MMIO;
418}
419
Alexander Graf3587d532010-02-19 11:00:30 +0100420/* Same as above, but sign extends */
421int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
422 unsigned int rt, unsigned int bytes, int is_bigendian)
423{
424 int r;
425
426 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
427 vcpu->arch.mmio_sign_extend = 1;
428
429 return r;
430}
431
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500432int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100433 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500434{
435 void *data = run->mmio.data;
436
437 if (bytes > sizeof(run->mmio.data)) {
438 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
439 run->mmio.len);
440 }
441
442 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
443 run->mmio.len = bytes;
444 run->mmio.is_write = 1;
445 vcpu->mmio_needed = 1;
446 vcpu->mmio_is_write = 1;
447
448 /* Store the value at the lowest bytes in 'data'. */
449 if (is_bigendian) {
450 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100451 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500452 case 4: *(u32 *)data = val; break;
453 case 2: *(u16 *)data = val; break;
454 case 1: *(u8 *)data = val; break;
455 }
456 } else {
457 /* Store LE value into 'data'. */
458 switch (bytes) {
459 case 4: st_le32(data, val); break;
460 case 2: st_le16(data, val); break;
461 case 1: *(u8 *)data = val; break;
462 }
463 }
464
465 return EMULATE_DO_MMIO;
466}
467
468int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
469{
470 int r;
471 sigset_t sigsaved;
472
473 if (vcpu->sigset_active)
474 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
475
476 if (vcpu->mmio_needed) {
477 if (!vcpu->mmio_is_write)
478 kvmppc_complete_mmio_load(vcpu, run);
479 vcpu->mmio_needed = 0;
480 } else if (vcpu->arch.dcr_needed) {
481 if (!vcpu->arch.dcr_is_write)
482 kvmppc_complete_dcr_load(vcpu, run);
483 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100484 } else if (vcpu->arch.osi_needed) {
485 u64 *gprs = run->osi.gprs;
486 int i;
487
488 for (i = 0; i < 32; i++)
489 kvmppc_set_gpr(vcpu, i, gprs[i]);
490 vcpu->arch.osi_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500491 }
492
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600493 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500494
495 local_irq_disable();
496 kvm_guest_enter();
497 r = __kvmppc_vcpu_run(run, vcpu);
498 kvm_guest_exit();
499 local_irq_enable();
500
501 if (vcpu->sigset_active)
502 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
503
504 return r;
505}
506
507int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
508{
Alexander Graf18978762010-03-24 21:48:18 +0100509 if (irq->irq == KVM_INTERRUPT_UNSET)
510 kvmppc_core_dequeue_external(vcpu, irq);
511 else
512 kvmppc_core_queue_external(vcpu, irq);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500513
514 if (waitqueue_active(&vcpu->wq)) {
515 wake_up_interruptible(&vcpu->wq);
516 vcpu->stat.halt_wakeup++;
517 }
518
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500519 return 0;
520}
521
Alexander Graf71fbfd52010-03-24 21:48:29 +0100522static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
523 struct kvm_enable_cap *cap)
524{
525 int r;
526
527 if (cap->flags)
528 return -EINVAL;
529
530 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100531 case KVM_CAP_PPC_OSI:
532 r = 0;
533 vcpu->arch.osi_enabled = true;
534 break;
Alexander Graf71fbfd52010-03-24 21:48:29 +0100535 default:
536 r = -EINVAL;
537 break;
538 }
539
540 return r;
541}
542
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500543int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
544 struct kvm_mp_state *mp_state)
545{
546 return -EINVAL;
547}
548
549int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
550 struct kvm_mp_state *mp_state)
551{
552 return -EINVAL;
553}
554
555long kvm_arch_vcpu_ioctl(struct file *filp,
556 unsigned int ioctl, unsigned long arg)
557{
558 struct kvm_vcpu *vcpu = filp->private_data;
559 void __user *argp = (void __user *)arg;
560 long r;
561
Avi Kivity93736622010-05-13 12:35:17 +0300562 switch (ioctl) {
563 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500564 struct kvm_interrupt irq;
565 r = -EFAULT;
566 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300567 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500568 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300569 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500570 }
Avi Kivity19483d12010-05-13 12:30:43 +0300571
Alexander Graf71fbfd52010-03-24 21:48:29 +0100572 case KVM_ENABLE_CAP:
573 {
574 struct kvm_enable_cap cap;
575 r = -EFAULT;
576 if (copy_from_user(&cap, argp, sizeof(cap)))
577 goto out;
578 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
579 break;
580 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500581 default:
582 r = -EINVAL;
583 }
584
585out:
586 return r;
587}
588
Alexander Graf15711e92010-07-29 14:48:08 +0200589static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
590{
591 u32 inst_lis = 0x3c000000;
592 u32 inst_ori = 0x60000000;
593 u32 inst_nop = 0x60000000;
594 u32 inst_sc = 0x44000002;
595 u32 inst_imm_mask = 0xffff;
596
597 /*
598 * The hypercall to get into KVM from within guest context is as
599 * follows:
600 *
601 * lis r0, r0, KVM_SC_MAGIC_R0@h
602 * ori r0, KVM_SC_MAGIC_R0@l
603 * sc
604 * nop
605 */
606 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
607 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
608 pvinfo->hcall[2] = inst_sc;
609 pvinfo->hcall[3] = inst_nop;
610
611 return 0;
612}
613
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500614long kvm_arch_vm_ioctl(struct file *filp,
615 unsigned int ioctl, unsigned long arg)
616{
Alexander Graf15711e92010-07-29 14:48:08 +0200617 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500618 long r;
619
620 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +0200621 case KVM_PPC_GET_PVINFO: {
622 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +0400623 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +0200624 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
625 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
626 r = -EFAULT;
627 goto out;
628 }
629
630 break;
631 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500632 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300633 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500634 }
635
Alexander Graf15711e92010-07-29 14:48:08 +0200636out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500637 return r;
638}
639
640int kvm_arch_init(void *opaque)
641{
642 return 0;
643}
644
645void kvm_arch_exit(void)
646{
647}