blob: 0d843c6ba3154fe21a0abd4f857d32ee0250e2b4 [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{
Alexander Graf666e7252010-07-29 14:47:43 +020042 return !(v->arch.shared->msr & MSR_WE) ||
43 !!(v->arch.pending_exceptions);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050044}
45
Alexander Graf2a342ed2010-07-29 14:47:48 +020046int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
47{
48 int nr = kvmppc_get_gpr(vcpu, 11);
49 int r;
50 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
51 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
52 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
53 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
54 unsigned long r2 = 0;
55
56 if (!(vcpu->arch.shared->msr & MSR_SF)) {
57 /* 32 bit mode */
58 param1 &= 0xffffffff;
59 param2 &= 0xffffffff;
60 param3 &= 0xffffffff;
61 param4 &= 0xffffffff;
62 }
63
64 switch (nr) {
Alexander Graf5fc87402010-07-29 14:47:55 +020065 case HC_VENDOR_KVM | KVM_HC_PPC_MAP_MAGIC_PAGE:
66 {
67 vcpu->arch.magic_page_pa = param1;
68 vcpu->arch.magic_page_ea = param2;
69
Alexander Grafdf1bfa22010-08-03 02:29:27 +020070 r2 = KVM_MAGIC_FEAT_SR;
Alexander Graf7508e162010-08-03 11:32:56 +020071
Alexander Graf5fc87402010-07-29 14:47:55 +020072 r = HC_EV_SUCCESS;
73 break;
74 }
Alexander Graf2a342ed2010-07-29 14:47:48 +020075 case HC_VENDOR_KVM | KVM_HC_FEATURES:
76 r = HC_EV_SUCCESS;
Scott Wooda4cd8b22011-06-14 18:34:41 -050077#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500)
78 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +020079 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
80#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +020081
82 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +020083 break;
84 default:
85 r = HC_EV_UNIMPLEMENTED;
86 break;
87 }
88
Alexander Graf7508e162010-08-03 11:32:56 +020089 kvmppc_set_gpr(vcpu, 4, r2);
90
Alexander Graf2a342ed2010-07-29 14:47:48 +020091 return r;
92}
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050093
Alexander Grafaf8f38b2011-08-10 13:57:08 +020094int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
95{
96 int r = false;
97
98 /* We have to know what CPU to virtualize */
99 if (!vcpu->arch.pvr)
100 goto out;
101
102 /* PAPR only works with book3s_64 */
103 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
104 goto out;
105
106#ifdef CONFIG_KVM_BOOK3S_64_HV
107 /* HV KVM can only do PAPR mode for now */
108 if (!vcpu->arch.papr_enabled)
109 goto out;
110#endif
111
112 r = true;
113
114out:
115 vcpu->arch.sane = r;
116 return r ? 0 : -EINVAL;
117}
118
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500119int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
120{
121 enum emulation_result er;
122 int r;
123
124 er = kvmppc_emulate_instruction(run, vcpu);
125 switch (er) {
126 case EMULATE_DONE:
127 /* Future optimization: only reload non-volatiles if they were
128 * actually modified. */
129 r = RESUME_GUEST_NV;
130 break;
131 case EMULATE_DO_MMIO:
132 run->exit_reason = KVM_EXIT_MMIO;
133 /* We must reload nonvolatiles because "update" load/store
134 * instructions modify register state. */
135 /* Future optimization: only reload non-volatiles if they were
136 * actually modified. */
137 r = RESUME_HOST_NV;
138 break;
139 case EMULATE_FAIL:
140 /* XXX Deliver Program interrupt to guest. */
141 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200142 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500143 r = RESUME_HOST;
144 break;
145 default:
146 BUG();
147 }
148
149 return r;
150}
151
Alexander Graf10474ae2009-09-15 11:37:46 +0200152int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500153{
Alexander Graf10474ae2009-09-15 11:37:46 +0200154 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500155}
156
157void kvm_arch_hardware_disable(void *garbage)
158{
159}
160
161int kvm_arch_hardware_setup(void)
162{
163 return 0;
164}
165
166void kvm_arch_hardware_unsetup(void)
167{
168}
169
170void kvm_arch_check_processor_compat(void *rtn)
171{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600172 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500173}
174
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100175int kvm_arch_init_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500176{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000177 return kvmppc_core_init_vm(kvm);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500178}
179
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100180void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500181{
182 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300183 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500184
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300185 kvm_for_each_vcpu(i, vcpu, kvm)
186 kvm_arch_vcpu_free(vcpu);
187
188 mutex_lock(&kvm->lock);
189 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
190 kvm->vcpus[i] = NULL;
191
192 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000193
194 kvmppc_core_destroy_vm(kvm);
195
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300196 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500197}
198
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800199void kvm_arch_sync_events(struct kvm *kvm)
200{
201}
202
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500203int kvm_dev_ioctl_check_extension(long ext)
204{
205 int r;
206
207 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500208#ifdef CONFIG_BOOKE
209 case KVM_CAP_PPC_BOOKE_SREGS:
210#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000211 case KVM_CAP_PPC_SEGSTATE:
Alexander Grafa15bd352011-08-08 17:17:09 +0200212 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200213 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500214#endif
Alexander Graf18978762010-03-24 21:48:18 +0100215 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200216 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100217 case KVM_CAP_ENABLE_CAP:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000218 r = 1;
219 break;
220#ifndef CONFIG_KVM_BOOK3S_64_HV
221 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100222 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200223 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafe15a1132009-11-30 03:02:02 +0000224 r = 1;
225 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200226 case KVM_CAP_COALESCED_MMIO:
227 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
228 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000229#endif
David Gibson54738c02011-06-29 00:22:41 +0000230#ifdef CONFIG_KVM_BOOK3S_64_HV
231 case KVM_CAP_SPAPR_TCE:
232 r = 1;
233 break;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000234 case KVM_CAP_PPC_SMT:
235 r = threads_per_core;
236 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000237 case KVM_CAP_PPC_RMA:
238 r = 1;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000239 /* PPC970 requires an RMA */
240 if (cpu_has_feature(CPU_FTR_ARCH_201))
241 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000242 break;
David Gibson54738c02011-06-29 00:22:41 +0000243#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500244 default:
245 r = 0;
246 break;
247 }
248 return r;
249
250}
251
252long kvm_arch_dev_ioctl(struct file *filp,
253 unsigned int ioctl, unsigned long arg)
254{
255 return -EINVAL;
256}
257
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200258int kvm_arch_prepare_memory_region(struct kvm *kvm,
259 struct kvm_memory_slot *memslot,
260 struct kvm_memory_slot old,
261 struct kvm_userspace_memory_region *mem,
262 int user_alloc)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500263{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000264 return kvmppc_core_prepare_memory_region(kvm, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500265}
266
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200267void kvm_arch_commit_memory_region(struct kvm *kvm,
268 struct kvm_userspace_memory_region *mem,
269 struct kvm_memory_slot old,
270 int user_alloc)
271{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000272 kvmppc_core_commit_memory_region(kvm, mem);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200273}
274
275
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300276void kvm_arch_flush_shadow(struct kvm *kvm)
277{
278}
279
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500280struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
281{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600282 struct kvm_vcpu *vcpu;
283 vcpu = kvmppc_core_vcpu_create(kvm, id);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000284 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800285 if (!IS_ERR(vcpu))
286 kvmppc_create_vcpu_debugfs(vcpu, id);
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600287 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500288}
289
290void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
291{
Alexander Grafa5954052010-02-22 16:52:14 +0100292 /* Make sure we're not using the vcpu anymore */
293 hrtimer_cancel(&vcpu->arch.dec_timer);
294 tasklet_kill(&vcpu->arch.tasklet);
295
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600296 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600297 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500298}
299
300void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
301{
302 kvm_arch_vcpu_free(vcpu);
303}
304
305int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
306{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600307 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500308}
309
310static void kvmppc_decrementer_func(unsigned long data)
311{
312 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
313
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600314 kvmppc_core_queue_dec(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500315
Paul Mackerras19ccb762011-07-23 17:42:46 +1000316 if (waitqueue_active(vcpu->arch.wqp)) {
317 wake_up_interruptible(vcpu->arch.wqp);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500318 vcpu->stat.halt_wakeup++;
319 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500320}
321
Alexander Graf544c6762009-11-02 12:02:31 +0000322/*
323 * low level hrtimer wake routine. Because this runs in hardirq context
324 * we schedule a tasklet to do the real work.
325 */
326enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
327{
328 struct kvm_vcpu *vcpu;
329
330 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
331 tasklet_schedule(&vcpu->arch.tasklet);
332
333 return HRTIMER_NORESTART;
334}
335
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500336int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
337{
Alexander Graf544c6762009-11-02 12:02:31 +0000338 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
339 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
340 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000341 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500342
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530343#ifdef CONFIG_KVM_EXIT_TIMING
344 mutex_init(&vcpu->arch.exit_timing_lock);
345#endif
346
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500347 return 0;
348}
349
350void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
351{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600352 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500353}
354
355void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
356{
Scott Woodeab17672011-04-27 17:24:10 -0500357#ifdef CONFIG_BOOKE
358 /*
359 * vrsave (formerly usprg0) isn't used by Linux, but may
360 * be used by the guest.
361 *
362 * On non-booke this is associated with Altivec and
363 * is handled by code in book3s.c.
364 */
365 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
366#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600367 kvmppc_core_vcpu_load(vcpu, cpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000368 vcpu->cpu = smp_processor_id();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500369}
370
371void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
372{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600373 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500374#ifdef CONFIG_BOOKE
375 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
376#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +0000377 vcpu->cpu = -1;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500378}
379
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100380int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600381 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500382{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600383 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500384}
385
386static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
387 struct kvm_run *run)
388{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100389 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500390}
391
392static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
393 struct kvm_run *run)
394{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000395 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500396
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100397 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500398 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
399 return;
400 }
401
402 if (vcpu->arch.mmio_is_bigendian) {
403 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100404 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100405 case 4: gpr = *(u32 *)run->mmio.data; break;
406 case 2: gpr = *(u16 *)run->mmio.data; break;
407 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500408 }
409 } else {
410 /* Convert BE data from userland back to LE. */
411 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100412 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
413 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
414 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500415 }
416 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100417
Alexander Graf3587d532010-02-19 11:00:30 +0100418 if (vcpu->arch.mmio_sign_extend) {
419 switch (run->mmio.len) {
420#ifdef CONFIG_PPC64
421 case 4:
422 gpr = (s64)(s32)gpr;
423 break;
424#endif
425 case 2:
426 gpr = (s64)(s16)gpr;
427 break;
428 case 1:
429 gpr = (s64)(s8)gpr;
430 break;
431 }
432 }
433
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100434 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100435
436 switch (vcpu->arch.io_gpr & KVM_REG_EXT_MASK) {
437 case KVM_REG_GPR:
438 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
439 break;
440 case KVM_REG_FPR:
441 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
442 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200443#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb104d062010-02-19 11:00:29 +0100444 case KVM_REG_QPR:
445 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
446 break;
447 case KVM_REG_FQPR:
448 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
449 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
450 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200451#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100452 default:
453 BUG();
454 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500455}
456
457int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
458 unsigned int rt, unsigned int bytes, int is_bigendian)
459{
460 if (bytes > sizeof(run->mmio.data)) {
461 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
462 run->mmio.len);
463 }
464
465 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
466 run->mmio.len = bytes;
467 run->mmio.is_write = 0;
468
469 vcpu->arch.io_gpr = rt;
470 vcpu->arch.mmio_is_bigendian = is_bigendian;
471 vcpu->mmio_needed = 1;
472 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100473 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500474
475 return EMULATE_DO_MMIO;
476}
477
Alexander Graf3587d532010-02-19 11:00:30 +0100478/* Same as above, but sign extends */
479int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
480 unsigned int rt, unsigned int bytes, int is_bigendian)
481{
482 int r;
483
484 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
485 vcpu->arch.mmio_sign_extend = 1;
486
487 return r;
488}
489
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500490int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100491 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500492{
493 void *data = run->mmio.data;
494
495 if (bytes > sizeof(run->mmio.data)) {
496 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
497 run->mmio.len);
498 }
499
500 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
501 run->mmio.len = bytes;
502 run->mmio.is_write = 1;
503 vcpu->mmio_needed = 1;
504 vcpu->mmio_is_write = 1;
505
506 /* Store the value at the lowest bytes in 'data'. */
507 if (is_bigendian) {
508 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100509 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500510 case 4: *(u32 *)data = val; break;
511 case 2: *(u16 *)data = val; break;
512 case 1: *(u8 *)data = val; break;
513 }
514 } else {
515 /* Store LE value into 'data'. */
516 switch (bytes) {
517 case 4: st_le32(data, val); break;
518 case 2: st_le16(data, val); break;
519 case 1: *(u8 *)data = val; break;
520 }
521 }
522
523 return EMULATE_DO_MMIO;
524}
525
526int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
527{
528 int r;
529 sigset_t sigsaved;
530
531 if (vcpu->sigset_active)
532 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
533
534 if (vcpu->mmio_needed) {
535 if (!vcpu->mmio_is_write)
536 kvmppc_complete_mmio_load(vcpu, run);
537 vcpu->mmio_needed = 0;
538 } else if (vcpu->arch.dcr_needed) {
539 if (!vcpu->arch.dcr_is_write)
540 kvmppc_complete_dcr_load(vcpu, run);
541 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100542 } else if (vcpu->arch.osi_needed) {
543 u64 *gprs = run->osi.gprs;
544 int i;
545
546 for (i = 0; i < 32; i++)
547 kvmppc_set_gpr(vcpu, i, gprs[i]);
548 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000549 } else if (vcpu->arch.hcall_needed) {
550 int i;
551
552 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
553 for (i = 0; i < 9; ++i)
554 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
555 vcpu->arch.hcall_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500556 }
557
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600558 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500559
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000560 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500561
562 if (vcpu->sigset_active)
563 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
564
565 return r;
566}
567
568int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
569{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000570 if (irq->irq == KVM_INTERRUPT_UNSET) {
Alexander Graf18978762010-03-24 21:48:18 +0100571 kvmppc_core_dequeue_external(vcpu, irq);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000572 return 0;
573 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500574
Paul Mackerras19ccb762011-07-23 17:42:46 +1000575 kvmppc_core_queue_external(vcpu, irq);
576
577 if (waitqueue_active(vcpu->arch.wqp)) {
578 wake_up_interruptible(vcpu->arch.wqp);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500579 vcpu->stat.halt_wakeup++;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000580 } else if (vcpu->cpu != -1) {
581 smp_send_reschedule(vcpu->cpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500582 }
583
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500584 return 0;
585}
586
Alexander Graf71fbfd52010-03-24 21:48:29 +0100587static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
588 struct kvm_enable_cap *cap)
589{
590 int r;
591
592 if (cap->flags)
593 return -EINVAL;
594
595 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100596 case KVM_CAP_PPC_OSI:
597 r = 0;
598 vcpu->arch.osi_enabled = true;
599 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200600 case KVM_CAP_PPC_PAPR:
601 r = 0;
602 vcpu->arch.papr_enabled = true;
603 break;
Alexander Graf71fbfd52010-03-24 21:48:29 +0100604 default:
605 r = -EINVAL;
606 break;
607 }
608
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200609 if (!r)
610 r = kvmppc_sanity_check(vcpu);
611
Alexander Graf71fbfd52010-03-24 21:48:29 +0100612 return r;
613}
614
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500615int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
616 struct kvm_mp_state *mp_state)
617{
618 return -EINVAL;
619}
620
621int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
622 struct kvm_mp_state *mp_state)
623{
624 return -EINVAL;
625}
626
627long kvm_arch_vcpu_ioctl(struct file *filp,
628 unsigned int ioctl, unsigned long arg)
629{
630 struct kvm_vcpu *vcpu = filp->private_data;
631 void __user *argp = (void __user *)arg;
632 long r;
633
Avi Kivity93736622010-05-13 12:35:17 +0300634 switch (ioctl) {
635 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500636 struct kvm_interrupt irq;
637 r = -EFAULT;
638 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300639 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500640 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300641 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500642 }
Avi Kivity19483d12010-05-13 12:30:43 +0300643
Alexander Graf71fbfd52010-03-24 21:48:29 +0100644 case KVM_ENABLE_CAP:
645 {
646 struct kvm_enable_cap cap;
647 r = -EFAULT;
648 if (copy_from_user(&cap, argp, sizeof(cap)))
649 goto out;
650 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
651 break;
652 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500653 default:
654 r = -EINVAL;
655 }
656
657out:
658 return r;
659}
660
Alexander Graf15711e92010-07-29 14:48:08 +0200661static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
662{
663 u32 inst_lis = 0x3c000000;
664 u32 inst_ori = 0x60000000;
665 u32 inst_nop = 0x60000000;
666 u32 inst_sc = 0x44000002;
667 u32 inst_imm_mask = 0xffff;
668
669 /*
670 * The hypercall to get into KVM from within guest context is as
671 * follows:
672 *
673 * lis r0, r0, KVM_SC_MAGIC_R0@h
674 * ori r0, KVM_SC_MAGIC_R0@l
675 * sc
676 * nop
677 */
678 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
679 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
680 pvinfo->hcall[2] = inst_sc;
681 pvinfo->hcall[3] = inst_nop;
682
683 return 0;
684}
685
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500686long kvm_arch_vm_ioctl(struct file *filp,
687 unsigned int ioctl, unsigned long arg)
688{
Alexander Graf15711e92010-07-29 14:48:08 +0200689 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500690 long r;
691
692 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +0200693 case KVM_PPC_GET_PVINFO: {
694 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +0400695 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +0200696 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
697 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
698 r = -EFAULT;
699 goto out;
700 }
701
702 break;
703 }
David Gibson54738c02011-06-29 00:22:41 +0000704#ifdef CONFIG_KVM_BOOK3S_64_HV
705 case KVM_CREATE_SPAPR_TCE: {
706 struct kvm_create_spapr_tce create_tce;
707 struct kvm *kvm = filp->private_data;
708
709 r = -EFAULT;
710 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
711 goto out;
712 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
713 goto out;
714 }
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000715
716 case KVM_ALLOCATE_RMA: {
717 struct kvm *kvm = filp->private_data;
718 struct kvm_allocate_rma rma;
719
720 r = kvm_vm_ioctl_allocate_rma(kvm, &rma);
721 if (r >= 0 && copy_to_user(argp, &rma, sizeof(rma)))
722 r = -EFAULT;
723 break;
724 }
David Gibson54738c02011-06-29 00:22:41 +0000725#endif /* CONFIG_KVM_BOOK3S_64_HV */
726
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500727 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300728 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500729 }
730
Alexander Graf15711e92010-07-29 14:48:08 +0200731out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500732 return r;
733}
734
735int kvm_arch_init(void *opaque)
736{
737 return 0;
738}
739
740void kvm_arch_exit(void)
741{
742}