blob: efbf9ad872035dee6a364867c5e5e50cdd52da99 [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>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050024#include <linux/vmalloc.h>
Alexander Graf544c6762009-11-02 12:02:31 +000025#include <linux/hrtimer.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050026#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050028#include <asm/cputable.h>
29#include <asm/uaccess.h>
30#include <asm/kvm_ppc.h>
Hollis Blanchard83aae4a2008-07-25 13:54:52 -050031#include <asm/tlbflush.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000032#include <asm/cputhreads.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;
Scott Wooda4cd8b22011-06-14 18:34:41 -050076#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500)
77 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +020078 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
79#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +020080
81 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +020082 break;
83 default:
84 r = HC_EV_UNIMPLEMENTED;
85 break;
86 }
87
Alexander Graf7508e162010-08-03 11:32:56 +020088 kvmppc_set_gpr(vcpu, 4, r2);
89
Alexander Graf2a342ed2010-07-29 14:47:48 +020090 return r;
91}
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050092
Alexander Grafaf8f38b2011-08-10 13:57:08 +020093int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
94{
95 int r = false;
96
97 /* We have to know what CPU to virtualize */
98 if (!vcpu->arch.pvr)
99 goto out;
100
101 /* PAPR only works with book3s_64 */
102 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
103 goto out;
104
105#ifdef CONFIG_KVM_BOOK3S_64_HV
106 /* HV KVM can only do PAPR mode for now */
107 if (!vcpu->arch.papr_enabled)
108 goto out;
109#endif
110
111 r = true;
112
113out:
114 vcpu->arch.sane = r;
115 return r ? 0 : -EINVAL;
116}
117
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500118int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
119{
120 enum emulation_result er;
121 int r;
122
123 er = kvmppc_emulate_instruction(run, vcpu);
124 switch (er) {
125 case EMULATE_DONE:
126 /* Future optimization: only reload non-volatiles if they were
127 * actually modified. */
128 r = RESUME_GUEST_NV;
129 break;
130 case EMULATE_DO_MMIO:
131 run->exit_reason = KVM_EXIT_MMIO;
132 /* We must reload nonvolatiles because "update" load/store
133 * instructions modify register state. */
134 /* Future optimization: only reload non-volatiles if they were
135 * actually modified. */
136 r = RESUME_HOST_NV;
137 break;
138 case EMULATE_FAIL:
139 /* XXX Deliver Program interrupt to guest. */
140 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200141 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500142 r = RESUME_HOST;
143 break;
144 default:
145 BUG();
146 }
147
148 return r;
149}
150
Alexander Graf10474ae2009-09-15 11:37:46 +0200151int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500152{
Alexander Graf10474ae2009-09-15 11:37:46 +0200153 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500154}
155
156void kvm_arch_hardware_disable(void *garbage)
157{
158}
159
160int kvm_arch_hardware_setup(void)
161{
162 return 0;
163}
164
165void kvm_arch_hardware_unsetup(void)
166{
167}
168
169void kvm_arch_check_processor_compat(void *rtn)
170{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600171 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500172}
173
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100174int kvm_arch_init_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500175{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000176 return kvmppc_core_init_vm(kvm);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500177}
178
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100179void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500180{
181 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300182 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500183
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300184 kvm_for_each_vcpu(i, vcpu, kvm)
185 kvm_arch_vcpu_free(vcpu);
186
187 mutex_lock(&kvm->lock);
188 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
189 kvm->vcpus[i] = NULL;
190
191 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000192
193 kvmppc_core_destroy_vm(kvm);
194
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300195 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500196}
197
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800198void kvm_arch_sync_events(struct kvm *kvm)
199{
200}
201
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500202int kvm_dev_ioctl_check_extension(long ext)
203{
204 int r;
205
206 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500207#ifdef CONFIG_BOOKE
208 case KVM_CAP_PPC_BOOKE_SREGS:
209#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000210 case KVM_CAP_PPC_SEGSTATE:
Alexander Grafa15bd352011-08-08 17:17:09 +0200211 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200212 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500213#endif
Alexander Graf18978762010-03-24 21:48:18 +0100214 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200215 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100216 case KVM_CAP_ENABLE_CAP:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000217 r = 1;
218 break;
219#ifndef CONFIG_KVM_BOOK3S_64_HV
220 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100221 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200222 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafe15a1132009-11-30 03:02:02 +0000223 r = 1;
224 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200225 case KVM_CAP_COALESCED_MMIO:
226 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
227 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000228#endif
David Gibson54738c02011-06-29 00:22:41 +0000229#ifdef CONFIG_KVM_BOOK3S_64_HV
230 case KVM_CAP_SPAPR_TCE:
231 r = 1;
232 break;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000233 case KVM_CAP_PPC_SMT:
234 r = threads_per_core;
235 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000236 case KVM_CAP_PPC_RMA:
237 r = 1;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000238 /* PPC970 requires an RMA */
239 if (cpu_has_feature(CPU_FTR_ARCH_201))
240 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000241 break;
David Gibson54738c02011-06-29 00:22:41 +0000242#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500243 default:
244 r = 0;
245 break;
246 }
247 return r;
248
249}
250
251long kvm_arch_dev_ioctl(struct file *filp,
252 unsigned int ioctl, unsigned long arg)
253{
254 return -EINVAL;
255}
256
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200257int kvm_arch_prepare_memory_region(struct kvm *kvm,
258 struct kvm_memory_slot *memslot,
259 struct kvm_memory_slot old,
260 struct kvm_userspace_memory_region *mem,
261 int user_alloc)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500262{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000263 return kvmppc_core_prepare_memory_region(kvm, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500264}
265
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200266void kvm_arch_commit_memory_region(struct kvm *kvm,
267 struct kvm_userspace_memory_region *mem,
268 struct kvm_memory_slot old,
269 int user_alloc)
270{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000271 kvmppc_core_commit_memory_region(kvm, mem);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200272}
273
274
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300275void kvm_arch_flush_shadow(struct kvm *kvm)
276{
277}
278
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500279struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
280{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600281 struct kvm_vcpu *vcpu;
282 vcpu = kvmppc_core_vcpu_create(kvm, id);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000283 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800284 if (!IS_ERR(vcpu))
285 kvmppc_create_vcpu_debugfs(vcpu, id);
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600286 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500287}
288
289void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
290{
Alexander Grafa5954052010-02-22 16:52:14 +0100291 /* Make sure we're not using the vcpu anymore */
292 hrtimer_cancel(&vcpu->arch.dec_timer);
293 tasklet_kill(&vcpu->arch.tasklet);
294
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600295 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600296 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500297}
298
299void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
300{
301 kvm_arch_vcpu_free(vcpu);
302}
303
304int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
305{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600306 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500307}
308
309static void kvmppc_decrementer_func(unsigned long data)
310{
311 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
312
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600313 kvmppc_core_queue_dec(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500314
Paul Mackerras19ccb762011-07-23 17:42:46 +1000315 if (waitqueue_active(vcpu->arch.wqp)) {
316 wake_up_interruptible(vcpu->arch.wqp);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500317 vcpu->stat.halt_wakeup++;
318 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500319}
320
Alexander Graf544c6762009-11-02 12:02:31 +0000321/*
322 * low level hrtimer wake routine. Because this runs in hardirq context
323 * we schedule a tasklet to do the real work.
324 */
325enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
326{
327 struct kvm_vcpu *vcpu;
328
329 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
330 tasklet_schedule(&vcpu->arch.tasklet);
331
332 return HRTIMER_NORESTART;
333}
334
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500335int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
336{
Alexander Graf544c6762009-11-02 12:02:31 +0000337 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
338 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
339 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000340 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500341
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530342#ifdef CONFIG_KVM_EXIT_TIMING
343 mutex_init(&vcpu->arch.exit_timing_lock);
344#endif
345
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500346 return 0;
347}
348
349void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
350{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600351 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500352}
353
354void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
355{
Scott Woodeab17672011-04-27 17:24:10 -0500356#ifdef CONFIG_BOOKE
357 /*
358 * vrsave (formerly usprg0) isn't used by Linux, but may
359 * be used by the guest.
360 *
361 * On non-booke this is associated with Altivec and
362 * is handled by code in book3s.c.
363 */
364 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
365#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600366 kvmppc_core_vcpu_load(vcpu, cpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000367 vcpu->cpu = smp_processor_id();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500368}
369
370void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
371{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600372 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500373#ifdef CONFIG_BOOKE
374 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
375#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +0000376 vcpu->cpu = -1;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500377}
378
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100379int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600380 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500381{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600382 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500383}
384
385static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
386 struct kvm_run *run)
387{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100388 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500389}
390
391static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
392 struct kvm_run *run)
393{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000394 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500395
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100396 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500397 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
398 return;
399 }
400
401 if (vcpu->arch.mmio_is_bigendian) {
402 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100403 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100404 case 4: gpr = *(u32 *)run->mmio.data; break;
405 case 2: gpr = *(u16 *)run->mmio.data; break;
406 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500407 }
408 } else {
409 /* Convert BE data from userland back to LE. */
410 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100411 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
412 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
413 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500414 }
415 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100416
Alexander Graf3587d532010-02-19 11:00:30 +0100417 if (vcpu->arch.mmio_sign_extend) {
418 switch (run->mmio.len) {
419#ifdef CONFIG_PPC64
420 case 4:
421 gpr = (s64)(s32)gpr;
422 break;
423#endif
424 case 2:
425 gpr = (s64)(s16)gpr;
426 break;
427 case 1:
428 gpr = (s64)(s8)gpr;
429 break;
430 }
431 }
432
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100433 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100434
435 switch (vcpu->arch.io_gpr & KVM_REG_EXT_MASK) {
436 case KVM_REG_GPR:
437 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
438 break;
439 case KVM_REG_FPR:
440 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
441 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200442#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb104d062010-02-19 11:00:29 +0100443 case KVM_REG_QPR:
444 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
445 break;
446 case KVM_REG_FQPR:
447 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
448 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
449 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200450#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100451 default:
452 BUG();
453 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500454}
455
456int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
457 unsigned int rt, unsigned int bytes, int is_bigendian)
458{
459 if (bytes > sizeof(run->mmio.data)) {
460 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
461 run->mmio.len);
462 }
463
464 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
465 run->mmio.len = bytes;
466 run->mmio.is_write = 0;
467
468 vcpu->arch.io_gpr = rt;
469 vcpu->arch.mmio_is_bigendian = is_bigendian;
470 vcpu->mmio_needed = 1;
471 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100472 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500473
474 return EMULATE_DO_MMIO;
475}
476
Alexander Graf3587d532010-02-19 11:00:30 +0100477/* Same as above, but sign extends */
478int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
479 unsigned int rt, unsigned int bytes, int is_bigendian)
480{
481 int r;
482
483 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
484 vcpu->arch.mmio_sign_extend = 1;
485
486 return r;
487}
488
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500489int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100490 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500491{
492 void *data = run->mmio.data;
493
494 if (bytes > sizeof(run->mmio.data)) {
495 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
496 run->mmio.len);
497 }
498
499 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
500 run->mmio.len = bytes;
501 run->mmio.is_write = 1;
502 vcpu->mmio_needed = 1;
503 vcpu->mmio_is_write = 1;
504
505 /* Store the value at the lowest bytes in 'data'. */
506 if (is_bigendian) {
507 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100508 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500509 case 4: *(u32 *)data = val; break;
510 case 2: *(u16 *)data = val; break;
511 case 1: *(u8 *)data = val; break;
512 }
513 } else {
514 /* Store LE value into 'data'. */
515 switch (bytes) {
516 case 4: st_le32(data, val); break;
517 case 2: st_le16(data, val); break;
518 case 1: *(u8 *)data = val; break;
519 }
520 }
521
522 return EMULATE_DO_MMIO;
523}
524
525int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
526{
527 int r;
528 sigset_t sigsaved;
529
530 if (vcpu->sigset_active)
531 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
532
533 if (vcpu->mmio_needed) {
534 if (!vcpu->mmio_is_write)
535 kvmppc_complete_mmio_load(vcpu, run);
536 vcpu->mmio_needed = 0;
537 } else if (vcpu->arch.dcr_needed) {
538 if (!vcpu->arch.dcr_is_write)
539 kvmppc_complete_dcr_load(vcpu, run);
540 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100541 } else if (vcpu->arch.osi_needed) {
542 u64 *gprs = run->osi.gprs;
543 int i;
544
545 for (i = 0; i < 32; i++)
546 kvmppc_set_gpr(vcpu, i, gprs[i]);
547 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000548 } else if (vcpu->arch.hcall_needed) {
549 int i;
550
551 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
552 for (i = 0; i < 9; ++i)
553 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
554 vcpu->arch.hcall_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500555 }
556
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600557 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500558
Paul Mackerrasdf6909e2011-06-29 00:19:50 +0000559 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500560
561 if (vcpu->sigset_active)
562 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
563
564 return r;
565}
566
567int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
568{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000569 if (irq->irq == KVM_INTERRUPT_UNSET) {
Alexander Graf18978762010-03-24 21:48:18 +0100570 kvmppc_core_dequeue_external(vcpu, irq);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000571 return 0;
572 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500573
Paul Mackerras19ccb762011-07-23 17:42:46 +1000574 kvmppc_core_queue_external(vcpu, irq);
575
576 if (waitqueue_active(vcpu->arch.wqp)) {
577 wake_up_interruptible(vcpu->arch.wqp);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500578 vcpu->stat.halt_wakeup++;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000579 } else if (vcpu->cpu != -1) {
580 smp_send_reschedule(vcpu->cpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500581 }
582
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500583 return 0;
584}
585
Alexander Graf71fbfd52010-03-24 21:48:29 +0100586static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
587 struct kvm_enable_cap *cap)
588{
589 int r;
590
591 if (cap->flags)
592 return -EINVAL;
593
594 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100595 case KVM_CAP_PPC_OSI:
596 r = 0;
597 vcpu->arch.osi_enabled = true;
598 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200599 case KVM_CAP_PPC_PAPR:
600 r = 0;
601 vcpu->arch.papr_enabled = true;
602 break;
Alexander Graf71fbfd52010-03-24 21:48:29 +0100603 default:
604 r = -EINVAL;
605 break;
606 }
607
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200608 if (!r)
609 r = kvmppc_sanity_check(vcpu);
610
Alexander Graf71fbfd52010-03-24 21:48:29 +0100611 return r;
612}
613
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500614int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
615 struct kvm_mp_state *mp_state)
616{
617 return -EINVAL;
618}
619
620int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
621 struct kvm_mp_state *mp_state)
622{
623 return -EINVAL;
624}
625
626long kvm_arch_vcpu_ioctl(struct file *filp,
627 unsigned int ioctl, unsigned long arg)
628{
629 struct kvm_vcpu *vcpu = filp->private_data;
630 void __user *argp = (void __user *)arg;
631 long r;
632
Avi Kivity93736622010-05-13 12:35:17 +0300633 switch (ioctl) {
634 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500635 struct kvm_interrupt irq;
636 r = -EFAULT;
637 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300638 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500639 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300640 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500641 }
Avi Kivity19483d12010-05-13 12:30:43 +0300642
Alexander Graf71fbfd52010-03-24 21:48:29 +0100643 case KVM_ENABLE_CAP:
644 {
645 struct kvm_enable_cap cap;
646 r = -EFAULT;
647 if (copy_from_user(&cap, argp, sizeof(cap)))
648 goto out;
649 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
650 break;
651 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500652 default:
653 r = -EINVAL;
654 }
655
656out:
657 return r;
658}
659
Alexander Graf15711e92010-07-29 14:48:08 +0200660static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
661{
662 u32 inst_lis = 0x3c000000;
663 u32 inst_ori = 0x60000000;
664 u32 inst_nop = 0x60000000;
665 u32 inst_sc = 0x44000002;
666 u32 inst_imm_mask = 0xffff;
667
668 /*
669 * The hypercall to get into KVM from within guest context is as
670 * follows:
671 *
672 * lis r0, r0, KVM_SC_MAGIC_R0@h
673 * ori r0, KVM_SC_MAGIC_R0@l
674 * sc
675 * nop
676 */
677 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
678 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
679 pvinfo->hcall[2] = inst_sc;
680 pvinfo->hcall[3] = inst_nop;
681
682 return 0;
683}
684
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500685long kvm_arch_vm_ioctl(struct file *filp,
686 unsigned int ioctl, unsigned long arg)
687{
Alexander Graf15711e92010-07-29 14:48:08 +0200688 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500689 long r;
690
691 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +0200692 case KVM_PPC_GET_PVINFO: {
693 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +0400694 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +0200695 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
696 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
697 r = -EFAULT;
698 goto out;
699 }
700
701 break;
702 }
David Gibson54738c02011-06-29 00:22:41 +0000703#ifdef CONFIG_KVM_BOOK3S_64_HV
704 case KVM_CREATE_SPAPR_TCE: {
705 struct kvm_create_spapr_tce create_tce;
706 struct kvm *kvm = filp->private_data;
707
708 r = -EFAULT;
709 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
710 goto out;
711 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
712 goto out;
713 }
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000714
715 case KVM_ALLOCATE_RMA: {
716 struct kvm *kvm = filp->private_data;
717 struct kvm_allocate_rma rma;
718
719 r = kvm_vm_ioctl_allocate_rma(kvm, &rma);
720 if (r >= 0 && copy_to_user(argp, &rma, sizeof(rma)))
721 r = -EFAULT;
722 break;
723 }
David Gibson54738c02011-06-29 00:22:41 +0000724#endif /* CONFIG_KVM_BOOK3S_64_HV */
725
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500726 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300727 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500728 }
729
Alexander Graf15711e92010-07-29 14:48:08 +0200730out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500731 return r;
732}
733
734int kvm_arch_init(void *opaque)
735{
736 return 0;
737}
738
739void kvm_arch_exit(void)
740{
741}