blob: a107c9be0fb1c01a9cdbe5488706f91ef35732c9 [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>
Paul Mackerras371fefd2011-06-29 00:23:08 +000033#include <asm/cputhreads.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060034#include "timing.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110035#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050036
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030037#define CREATE_TRACE_POINTS
38#include "trace.h"
39
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050040int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
41{
Paul Mackerrasde56a942011-06-29 00:21:34 +000042#ifndef CONFIG_KVM_BOOK3S_64_HV
Alexander Graf666e7252010-07-29 14:47:43 +020043 return !(v->arch.shared->msr & MSR_WE) ||
44 !!(v->arch.pending_exceptions);
Paul Mackerrasde56a942011-06-29 00:21:34 +000045#else
Paul Mackerrasa8606e22011-06-29 00:22:05 +000046 return !(v->arch.ceded) || !!(v->arch.pending_exceptions);
Paul Mackerrasde56a942011-06-29 00:21:34 +000047#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050048}
49
Alexander Graf2a342ed2010-07-29 14:47:48 +020050int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
51{
52 int nr = kvmppc_get_gpr(vcpu, 11);
53 int r;
54 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
55 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
56 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
57 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
58 unsigned long r2 = 0;
59
60 if (!(vcpu->arch.shared->msr & MSR_SF)) {
61 /* 32 bit mode */
62 param1 &= 0xffffffff;
63 param2 &= 0xffffffff;
64 param3 &= 0xffffffff;
65 param4 &= 0xffffffff;
66 }
67
68 switch (nr) {
Alexander Graf5fc87402010-07-29 14:47:55 +020069 case HC_VENDOR_KVM | KVM_HC_PPC_MAP_MAGIC_PAGE:
70 {
71 vcpu->arch.magic_page_pa = param1;
72 vcpu->arch.magic_page_ea = param2;
73
Alexander Grafdf1bfa22010-08-03 02:29:27 +020074 r2 = KVM_MAGIC_FEAT_SR;
Alexander Graf7508e162010-08-03 11:32:56 +020075
Alexander Graf5fc87402010-07-29 14:47:55 +020076 r = HC_EV_SUCCESS;
77 break;
78 }
Alexander Graf2a342ed2010-07-29 14:47:48 +020079 case HC_VENDOR_KVM | KVM_HC_FEATURES:
80 r = HC_EV_SUCCESS;
Scott Wooda4cd8b22011-06-14 18:34:41 -050081#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500)
82 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +020083 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
84#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +020085
86 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +020087 break;
88 default:
89 r = HC_EV_UNIMPLEMENTED;
90 break;
91 }
92
Alexander Graf7508e162010-08-03 11:32:56 +020093 kvmppc_set_gpr(vcpu, 4, r2);
94
Alexander Graf2a342ed2010-07-29 14:47:48 +020095 return r;
96}
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050097
98int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
99{
100 enum emulation_result er;
101 int r;
102
103 er = kvmppc_emulate_instruction(run, vcpu);
104 switch (er) {
105 case EMULATE_DONE:
106 /* Future optimization: only reload non-volatiles if they were
107 * actually modified. */
108 r = RESUME_GUEST_NV;
109 break;
110 case EMULATE_DO_MMIO:
111 run->exit_reason = KVM_EXIT_MMIO;
112 /* We must reload nonvolatiles because "update" load/store
113 * instructions modify register state. */
114 /* Future optimization: only reload non-volatiles if they were
115 * actually modified. */
116 r = RESUME_HOST_NV;
117 break;
118 case EMULATE_FAIL:
119 /* XXX Deliver Program interrupt to guest. */
120 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200121 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500122 r = RESUME_HOST;
123 break;
124 default:
125 BUG();
126 }
127
128 return r;
129}
130
Alexander Graf10474ae2009-09-15 11:37:46 +0200131int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500132{
Alexander Graf10474ae2009-09-15 11:37:46 +0200133 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500134}
135
136void kvm_arch_hardware_disable(void *garbage)
137{
138}
139
140int kvm_arch_hardware_setup(void)
141{
142 return 0;
143}
144
145void kvm_arch_hardware_unsetup(void)
146{
147}
148
149void kvm_arch_check_processor_compat(void *rtn)
150{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600151 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500152}
153
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100154int kvm_arch_init_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500155{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000156 return kvmppc_core_init_vm(kvm);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500157}
158
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100159void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500160{
161 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300162 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500163
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300164 kvm_for_each_vcpu(i, vcpu, kvm)
165 kvm_arch_vcpu_free(vcpu);
166
167 mutex_lock(&kvm->lock);
168 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
169 kvm->vcpus[i] = NULL;
170
171 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000172
173 kvmppc_core_destroy_vm(kvm);
174
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300175 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500176}
177
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800178void kvm_arch_sync_events(struct kvm *kvm)
179{
180}
181
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500182int kvm_dev_ioctl_check_extension(long ext)
183{
184 int r;
185
186 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500187#ifdef CONFIG_BOOKE
188 case KVM_CAP_PPC_BOOKE_SREGS:
189#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000190 case KVM_CAP_PPC_SEGSTATE:
Scott Wood5ce941e2011-04-27 17:24:21 -0500191#endif
Alexander Graf18978762010-03-24 21:48:18 +0100192 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200193 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100194 case KVM_CAP_ENABLE_CAP:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000195 r = 1;
196 break;
197#ifndef CONFIG_KVM_BOOK3S_64_HV
198 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100199 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200200 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafe15a1132009-11-30 03:02:02 +0000201 r = 1;
202 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200203 case KVM_CAP_COALESCED_MMIO:
204 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
205 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000206#endif
David Gibson54738c02011-06-29 00:22:41 +0000207#ifdef CONFIG_KVM_BOOK3S_64_HV
208 case KVM_CAP_SPAPR_TCE:
209 r = 1;
210 break;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000211 case KVM_CAP_PPC_SMT:
212 r = threads_per_core;
213 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000214 case KVM_CAP_PPC_RMA:
215 r = 1;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000216 /* PPC970 requires an RMA */
217 if (cpu_has_feature(CPU_FTR_ARCH_201))
218 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000219 break;
David Gibson54738c02011-06-29 00:22:41 +0000220#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500221 default:
222 r = 0;
223 break;
224 }
225 return r;
226
227}
228
229long kvm_arch_dev_ioctl(struct file *filp,
230 unsigned int ioctl, unsigned long arg)
231{
232 return -EINVAL;
233}
234
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200235int kvm_arch_prepare_memory_region(struct kvm *kvm,
236 struct kvm_memory_slot *memslot,
237 struct kvm_memory_slot old,
238 struct kvm_userspace_memory_region *mem,
239 int user_alloc)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500240{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000241 return kvmppc_core_prepare_memory_region(kvm, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500242}
243
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200244void kvm_arch_commit_memory_region(struct kvm *kvm,
245 struct kvm_userspace_memory_region *mem,
246 struct kvm_memory_slot old,
247 int user_alloc)
248{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000249 kvmppc_core_commit_memory_region(kvm, mem);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200250}
251
252
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300253void kvm_arch_flush_shadow(struct kvm *kvm)
254{
255}
256
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500257struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
258{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600259 struct kvm_vcpu *vcpu;
260 vcpu = kvmppc_core_vcpu_create(kvm, id);
Wei Yongjun06056bf2010-03-09 14:13:43 +0800261 if (!IS_ERR(vcpu))
262 kvmppc_create_vcpu_debugfs(vcpu, id);
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600263 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500264}
265
266void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
267{
Alexander Grafa5954052010-02-22 16:52:14 +0100268 /* Make sure we're not using the vcpu anymore */
269 hrtimer_cancel(&vcpu->arch.dec_timer);
270 tasklet_kill(&vcpu->arch.tasklet);
271
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600272 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600273 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500274}
275
276void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
277{
278 kvm_arch_vcpu_free(vcpu);
279}
280
281int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
282{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600283 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500284}
285
286static void kvmppc_decrementer_func(unsigned long data)
287{
288 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
289
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600290 kvmppc_core_queue_dec(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500291
292 if (waitqueue_active(&vcpu->wq)) {
293 wake_up_interruptible(&vcpu->wq);
294 vcpu->stat.halt_wakeup++;
295 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500296}
297
Alexander Graf544c6762009-11-02 12:02:31 +0000298/*
299 * low level hrtimer wake routine. Because this runs in hardirq context
300 * we schedule a tasklet to do the real work.
301 */
302enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
303{
304 struct kvm_vcpu *vcpu;
305
306 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
307 tasklet_schedule(&vcpu->arch.tasklet);
308
309 return HRTIMER_NORESTART;
310}
311
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500312int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
313{
Alexander Graf544c6762009-11-02 12:02:31 +0000314 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
315 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
316 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000317 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500318
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530319#ifdef CONFIG_KVM_EXIT_TIMING
320 mutex_init(&vcpu->arch.exit_timing_lock);
321#endif
322
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500323 return 0;
324}
325
326void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
327{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600328 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500329}
330
331void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
332{
Scott Woodeab17672011-04-27 17:24:10 -0500333#ifdef CONFIG_BOOKE
334 /*
335 * vrsave (formerly usprg0) isn't used by Linux, but may
336 * be used by the guest.
337 *
338 * On non-booke this is associated with Altivec and
339 * is handled by code in book3s.c.
340 */
341 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
342#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600343 kvmppc_core_vcpu_load(vcpu, cpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000344 vcpu->cpu = smp_processor_id();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500345}
346
347void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
348{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600349 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500350#ifdef CONFIG_BOOKE
351 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
352#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +0000353 vcpu->cpu = -1;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500354}
355
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100356int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600357 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500358{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600359 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500360}
361
362static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
363 struct kvm_run *run)
364{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100365 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500366}
367
368static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
369 struct kvm_run *run)
370{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000371 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500372
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100373 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500374 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
375 return;
376 }
377
378 if (vcpu->arch.mmio_is_bigendian) {
379 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100380 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100381 case 4: gpr = *(u32 *)run->mmio.data; break;
382 case 2: gpr = *(u16 *)run->mmio.data; break;
383 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500384 }
385 } else {
386 /* Convert BE data from userland back to LE. */
387 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100388 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
389 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
390 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500391 }
392 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100393
Alexander Graf3587d532010-02-19 11:00:30 +0100394 if (vcpu->arch.mmio_sign_extend) {
395 switch (run->mmio.len) {
396#ifdef CONFIG_PPC64
397 case 4:
398 gpr = (s64)(s32)gpr;
399 break;
400#endif
401 case 2:
402 gpr = (s64)(s16)gpr;
403 break;
404 case 1:
405 gpr = (s64)(s8)gpr;
406 break;
407 }
408 }
409
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100410 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100411
412 switch (vcpu->arch.io_gpr & KVM_REG_EXT_MASK) {
413 case KVM_REG_GPR:
414 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
415 break;
416 case KVM_REG_FPR:
417 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
418 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200419#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb104d062010-02-19 11:00:29 +0100420 case KVM_REG_QPR:
421 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
422 break;
423 case KVM_REG_FQPR:
424 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
425 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
426 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200427#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100428 default:
429 BUG();
430 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500431}
432
433int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
434 unsigned int rt, unsigned int bytes, int is_bigendian)
435{
436 if (bytes > sizeof(run->mmio.data)) {
437 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
438 run->mmio.len);
439 }
440
441 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
442 run->mmio.len = bytes;
443 run->mmio.is_write = 0;
444
445 vcpu->arch.io_gpr = rt;
446 vcpu->arch.mmio_is_bigendian = is_bigendian;
447 vcpu->mmio_needed = 1;
448 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100449 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500450
451 return EMULATE_DO_MMIO;
452}
453
Alexander Graf3587d532010-02-19 11:00:30 +0100454/* Same as above, but sign extends */
455int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
456 unsigned int rt, unsigned int bytes, int is_bigendian)
457{
458 int r;
459
460 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
461 vcpu->arch.mmio_sign_extend = 1;
462
463 return r;
464}
465
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500466int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100467 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500468{
469 void *data = run->mmio.data;
470
471 if (bytes > sizeof(run->mmio.data)) {
472 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
473 run->mmio.len);
474 }
475
476 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
477 run->mmio.len = bytes;
478 run->mmio.is_write = 1;
479 vcpu->mmio_needed = 1;
480 vcpu->mmio_is_write = 1;
481
482 /* Store the value at the lowest bytes in 'data'. */
483 if (is_bigendian) {
484 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100485 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500486 case 4: *(u32 *)data = val; break;
487 case 2: *(u16 *)data = val; break;
488 case 1: *(u8 *)data = val; break;
489 }
490 } else {
491 /* Store LE value into 'data'. */
492 switch (bytes) {
493 case 4: st_le32(data, val); break;
494 case 2: st_le16(data, val); break;
495 case 1: *(u8 *)data = val; break;
496 }
497 }
498
499 return EMULATE_DO_MMIO;
500}
501
502int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
503{
504 int r;
505 sigset_t sigsaved;
506
507 if (vcpu->sigset_active)
508 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
509
510 if (vcpu->mmio_needed) {
511 if (!vcpu->mmio_is_write)
512 kvmppc_complete_mmio_load(vcpu, run);
513 vcpu->mmio_needed = 0;
514 } else if (vcpu->arch.dcr_needed) {
515 if (!vcpu->arch.dcr_is_write)
516 kvmppc_complete_dcr_load(vcpu, run);
517 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100518 } else if (vcpu->arch.osi_needed) {
519 u64 *gprs = run->osi.gprs;
520 int i;
521
522 for (i = 0; i < 32; i++)
523 kvmppc_set_gpr(vcpu, i, gprs[i]);
524 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000525 } else if (vcpu->arch.hcall_needed) {
526 int i;
527
528 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
529 for (i = 0; i < 9; ++i)
530 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
531 vcpu->arch.hcall_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500532 }
533
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600534 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500535
Paul Mackerrasdf6909e2011-06-29 00:19:50 +0000536 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500537
538 if (vcpu->sigset_active)
539 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
540
541 return r;
542}
543
544int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
545{
Alexander Graf18978762010-03-24 21:48:18 +0100546 if (irq->irq == KVM_INTERRUPT_UNSET)
547 kvmppc_core_dequeue_external(vcpu, irq);
548 else
549 kvmppc_core_queue_external(vcpu, irq);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500550
551 if (waitqueue_active(&vcpu->wq)) {
552 wake_up_interruptible(&vcpu->wq);
553 vcpu->stat.halt_wakeup++;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000554 } else if (vcpu->cpu != -1) {
555 smp_send_reschedule(vcpu->cpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500556 }
557
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500558 return 0;
559}
560
Alexander Graf71fbfd52010-03-24 21:48:29 +0100561static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
562 struct kvm_enable_cap *cap)
563{
564 int r;
565
566 if (cap->flags)
567 return -EINVAL;
568
569 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100570 case KVM_CAP_PPC_OSI:
571 r = 0;
572 vcpu->arch.osi_enabled = true;
573 break;
Alexander Graf71fbfd52010-03-24 21:48:29 +0100574 default:
575 r = -EINVAL;
576 break;
577 }
578
579 return r;
580}
581
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500582int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
583 struct kvm_mp_state *mp_state)
584{
585 return -EINVAL;
586}
587
588int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
589 struct kvm_mp_state *mp_state)
590{
591 return -EINVAL;
592}
593
594long kvm_arch_vcpu_ioctl(struct file *filp,
595 unsigned int ioctl, unsigned long arg)
596{
597 struct kvm_vcpu *vcpu = filp->private_data;
598 void __user *argp = (void __user *)arg;
599 long r;
600
Avi Kivity93736622010-05-13 12:35:17 +0300601 switch (ioctl) {
602 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500603 struct kvm_interrupt irq;
604 r = -EFAULT;
605 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300606 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500607 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300608 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500609 }
Avi Kivity19483d12010-05-13 12:30:43 +0300610
Alexander Graf71fbfd52010-03-24 21:48:29 +0100611 case KVM_ENABLE_CAP:
612 {
613 struct kvm_enable_cap cap;
614 r = -EFAULT;
615 if (copy_from_user(&cap, argp, sizeof(cap)))
616 goto out;
617 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
618 break;
619 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500620 default:
621 r = -EINVAL;
622 }
623
624out:
625 return r;
626}
627
Alexander Graf15711e92010-07-29 14:48:08 +0200628static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
629{
630 u32 inst_lis = 0x3c000000;
631 u32 inst_ori = 0x60000000;
632 u32 inst_nop = 0x60000000;
633 u32 inst_sc = 0x44000002;
634 u32 inst_imm_mask = 0xffff;
635
636 /*
637 * The hypercall to get into KVM from within guest context is as
638 * follows:
639 *
640 * lis r0, r0, KVM_SC_MAGIC_R0@h
641 * ori r0, KVM_SC_MAGIC_R0@l
642 * sc
643 * nop
644 */
645 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
646 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
647 pvinfo->hcall[2] = inst_sc;
648 pvinfo->hcall[3] = inst_nop;
649
650 return 0;
651}
652
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500653long kvm_arch_vm_ioctl(struct file *filp,
654 unsigned int ioctl, unsigned long arg)
655{
Alexander Graf15711e92010-07-29 14:48:08 +0200656 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500657 long r;
658
659 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +0200660 case KVM_PPC_GET_PVINFO: {
661 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +0400662 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +0200663 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
664 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
665 r = -EFAULT;
666 goto out;
667 }
668
669 break;
670 }
David Gibson54738c02011-06-29 00:22:41 +0000671#ifdef CONFIG_KVM_BOOK3S_64_HV
672 case KVM_CREATE_SPAPR_TCE: {
673 struct kvm_create_spapr_tce create_tce;
674 struct kvm *kvm = filp->private_data;
675
676 r = -EFAULT;
677 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
678 goto out;
679 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
680 goto out;
681 }
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000682
683 case KVM_ALLOCATE_RMA: {
684 struct kvm *kvm = filp->private_data;
685 struct kvm_allocate_rma rma;
686
687 r = kvm_vm_ioctl_allocate_rma(kvm, &rma);
688 if (r >= 0 && copy_to_user(argp, &rma, sizeof(rma)))
689 r = -EFAULT;
690 break;
691 }
David Gibson54738c02011-06-29 00:22:41 +0000692#endif /* CONFIG_KVM_BOOK3S_64_HV */
693
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500694 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300695 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500696 }
697
Alexander Graf15711e92010-07-29 14:48:08 +0200698out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500699 return r;
700}
701
702int kvm_arch_init(void *opaque)
703{
704 return 0;
705}
706
707void kvm_arch_exit(void)
708{
709}