blob: 3cf6fba513ac311b61fdc3137b7e9196e0359347 [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
Carsten Ottee08b9632012-01-04 10:25:20 +0100174int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500175{
Carsten Ottee08b9632012-01-04 10:25:20 +0100176 if (type)
177 return -EINVAL;
178
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000179 return kvmppc_core_init_vm(kvm);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500180}
181
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100182void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500183{
184 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300185 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500186
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300187 kvm_for_each_vcpu(i, vcpu, kvm)
188 kvm_arch_vcpu_free(vcpu);
189
190 mutex_lock(&kvm->lock);
191 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
192 kvm->vcpus[i] = NULL;
193
194 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000195
196 kvmppc_core_destroy_vm(kvm);
197
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300198 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500199}
200
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800201void kvm_arch_sync_events(struct kvm *kvm)
202{
203}
204
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500205int kvm_dev_ioctl_check_extension(long ext)
206{
207 int r;
208
209 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500210#ifdef CONFIG_BOOKE
211 case KVM_CAP_PPC_BOOKE_SREGS:
212#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000213 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf930b4122011-08-08 17:29:42 +0200214 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500215#endif
Alexander Graf18978762010-03-24 21:48:18 +0100216 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200217 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100218 case KVM_CAP_ENABLE_CAP:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000219 r = 1;
220 break;
221#ifndef CONFIG_KVM_BOOK3S_64_HV
222 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100223 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200224 case KVM_CAP_PPC_GET_PVINFO:
Scott Wooddc83b8b2011-08-18 15:25:21 -0500225#ifdef CONFIG_KVM_E500
226 case KVM_CAP_SW_TLB:
227#endif
Alexander Grafe15a1132009-11-30 03:02:02 +0000228 r = 1;
229 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200230 case KVM_CAP_COALESCED_MMIO:
231 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
232 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000233#endif
David Gibson54738c02011-06-29 00:22:41 +0000234#ifdef CONFIG_KVM_BOOK3S_64_HV
235 case KVM_CAP_SPAPR_TCE:
236 r = 1;
237 break;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000238 case KVM_CAP_PPC_SMT:
239 r = threads_per_core;
240 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000241 case KVM_CAP_PPC_RMA:
242 r = 1;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000243 /* PPC970 requires an RMA */
244 if (cpu_has_feature(CPU_FTR_ARCH_201))
245 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000246 break;
David Gibson54738c02011-06-29 00:22:41 +0000247#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500248 default:
249 r = 0;
250 break;
251 }
252 return r;
253
254}
255
256long kvm_arch_dev_ioctl(struct file *filp,
257 unsigned int ioctl, unsigned long arg)
258{
259 return -EINVAL;
260}
261
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200262int kvm_arch_prepare_memory_region(struct kvm *kvm,
263 struct kvm_memory_slot *memslot,
264 struct kvm_memory_slot old,
265 struct kvm_userspace_memory_region *mem,
266 int user_alloc)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500267{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000268 return kvmppc_core_prepare_memory_region(kvm, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500269}
270
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200271void kvm_arch_commit_memory_region(struct kvm *kvm,
272 struct kvm_userspace_memory_region *mem,
273 struct kvm_memory_slot old,
274 int user_alloc)
275{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000276 kvmppc_core_commit_memory_region(kvm, mem);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200277}
278
279
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300280void kvm_arch_flush_shadow(struct kvm *kvm)
281{
282}
283
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500284struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
285{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600286 struct kvm_vcpu *vcpu;
287 vcpu = kvmppc_core_vcpu_create(kvm, id);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000288 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800289 if (!IS_ERR(vcpu))
290 kvmppc_create_vcpu_debugfs(vcpu, id);
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600291 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500292}
293
294void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
295{
Alexander Grafa5954052010-02-22 16:52:14 +0100296 /* Make sure we're not using the vcpu anymore */
297 hrtimer_cancel(&vcpu->arch.dec_timer);
298 tasklet_kill(&vcpu->arch.tasklet);
299
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600300 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600301 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500302}
303
304void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
305{
306 kvm_arch_vcpu_free(vcpu);
307}
308
309int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
310{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600311 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500312}
313
314static void kvmppc_decrementer_func(unsigned long data)
315{
316 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
317
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600318 kvmppc_core_queue_dec(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500319
Paul Mackerras19ccb762011-07-23 17:42:46 +1000320 if (waitqueue_active(vcpu->arch.wqp)) {
321 wake_up_interruptible(vcpu->arch.wqp);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500322 vcpu->stat.halt_wakeup++;
323 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500324}
325
Alexander Graf544c6762009-11-02 12:02:31 +0000326/*
327 * low level hrtimer wake routine. Because this runs in hardirq context
328 * we schedule a tasklet to do the real work.
329 */
330enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
331{
332 struct kvm_vcpu *vcpu;
333
334 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
335 tasklet_schedule(&vcpu->arch.tasklet);
336
337 return HRTIMER_NORESTART;
338}
339
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500340int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
341{
Alexander Graf544c6762009-11-02 12:02:31 +0000342 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
343 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
344 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000345 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500346
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530347#ifdef CONFIG_KVM_EXIT_TIMING
348 mutex_init(&vcpu->arch.exit_timing_lock);
349#endif
350
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500351 return 0;
352}
353
354void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
355{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600356 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500357}
358
359void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
360{
Scott Woodeab17672011-04-27 17:24:10 -0500361#ifdef CONFIG_BOOKE
362 /*
363 * vrsave (formerly usprg0) isn't used by Linux, but may
364 * be used by the guest.
365 *
366 * On non-booke this is associated with Altivec and
367 * is handled by code in book3s.c.
368 */
369 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
370#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600371 kvmppc_core_vcpu_load(vcpu, cpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000372 vcpu->cpu = smp_processor_id();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500373}
374
375void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
376{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600377 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500378#ifdef CONFIG_BOOKE
379 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
380#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +0000381 vcpu->cpu = -1;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500382}
383
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100384int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600385 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500386{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600387 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500388}
389
390static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
391 struct kvm_run *run)
392{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100393 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500394}
395
396static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
397 struct kvm_run *run)
398{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000399 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500400
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100401 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500402 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
403 return;
404 }
405
406 if (vcpu->arch.mmio_is_bigendian) {
407 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100408 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100409 case 4: gpr = *(u32 *)run->mmio.data; break;
410 case 2: gpr = *(u16 *)run->mmio.data; break;
411 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500412 }
413 } else {
414 /* Convert BE data from userland back to LE. */
415 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100416 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
417 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
418 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500419 }
420 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100421
Alexander Graf3587d532010-02-19 11:00:30 +0100422 if (vcpu->arch.mmio_sign_extend) {
423 switch (run->mmio.len) {
424#ifdef CONFIG_PPC64
425 case 4:
426 gpr = (s64)(s32)gpr;
427 break;
428#endif
429 case 2:
430 gpr = (s64)(s16)gpr;
431 break;
432 case 1:
433 gpr = (s64)(s8)gpr;
434 break;
435 }
436 }
437
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100438 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100439
440 switch (vcpu->arch.io_gpr & KVM_REG_EXT_MASK) {
441 case KVM_REG_GPR:
442 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
443 break;
444 case KVM_REG_FPR:
445 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
446 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200447#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb104d062010-02-19 11:00:29 +0100448 case KVM_REG_QPR:
449 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
450 break;
451 case KVM_REG_FQPR:
452 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
453 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
454 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200455#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100456 default:
457 BUG();
458 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500459}
460
461int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
462 unsigned int rt, unsigned int bytes, int is_bigendian)
463{
464 if (bytes > sizeof(run->mmio.data)) {
465 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
466 run->mmio.len);
467 }
468
469 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
470 run->mmio.len = bytes;
471 run->mmio.is_write = 0;
472
473 vcpu->arch.io_gpr = rt;
474 vcpu->arch.mmio_is_bigendian = is_bigendian;
475 vcpu->mmio_needed = 1;
476 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100477 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500478
479 return EMULATE_DO_MMIO;
480}
481
Alexander Graf3587d532010-02-19 11:00:30 +0100482/* Same as above, but sign extends */
483int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
484 unsigned int rt, unsigned int bytes, int is_bigendian)
485{
486 int r;
487
488 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
489 vcpu->arch.mmio_sign_extend = 1;
490
491 return r;
492}
493
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500494int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100495 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500496{
497 void *data = run->mmio.data;
498
499 if (bytes > sizeof(run->mmio.data)) {
500 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
501 run->mmio.len);
502 }
503
504 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
505 run->mmio.len = bytes;
506 run->mmio.is_write = 1;
507 vcpu->mmio_needed = 1;
508 vcpu->mmio_is_write = 1;
509
510 /* Store the value at the lowest bytes in 'data'. */
511 if (is_bigendian) {
512 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100513 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500514 case 4: *(u32 *)data = val; break;
515 case 2: *(u16 *)data = val; break;
516 case 1: *(u8 *)data = val; break;
517 }
518 } else {
519 /* Store LE value into 'data'. */
520 switch (bytes) {
521 case 4: st_le32(data, val); break;
522 case 2: st_le16(data, val); break;
523 case 1: *(u8 *)data = val; break;
524 }
525 }
526
527 return EMULATE_DO_MMIO;
528}
529
530int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
531{
532 int r;
533 sigset_t sigsaved;
534
535 if (vcpu->sigset_active)
536 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
537
538 if (vcpu->mmio_needed) {
539 if (!vcpu->mmio_is_write)
540 kvmppc_complete_mmio_load(vcpu, run);
541 vcpu->mmio_needed = 0;
542 } else if (vcpu->arch.dcr_needed) {
543 if (!vcpu->arch.dcr_is_write)
544 kvmppc_complete_dcr_load(vcpu, run);
545 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100546 } else if (vcpu->arch.osi_needed) {
547 u64 *gprs = run->osi.gprs;
548 int i;
549
550 for (i = 0; i < 32; i++)
551 kvmppc_set_gpr(vcpu, i, gprs[i]);
552 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000553 } else if (vcpu->arch.hcall_needed) {
554 int i;
555
556 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
557 for (i = 0; i < 9; ++i)
558 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
559 vcpu->arch.hcall_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500560 }
561
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600562 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500563
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000564 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500565
566 if (vcpu->sigset_active)
567 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
568
569 return r;
570}
571
572int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
573{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000574 if (irq->irq == KVM_INTERRUPT_UNSET) {
Alexander Graf18978762010-03-24 21:48:18 +0100575 kvmppc_core_dequeue_external(vcpu, irq);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000576 return 0;
577 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500578
Paul Mackerras19ccb762011-07-23 17:42:46 +1000579 kvmppc_core_queue_external(vcpu, irq);
580
581 if (waitqueue_active(vcpu->arch.wqp)) {
582 wake_up_interruptible(vcpu->arch.wqp);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500583 vcpu->stat.halt_wakeup++;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000584 } else if (vcpu->cpu != -1) {
585 smp_send_reschedule(vcpu->cpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500586 }
587
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500588 return 0;
589}
590
Alexander Graf71fbfd52010-03-24 21:48:29 +0100591static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
592 struct kvm_enable_cap *cap)
593{
594 int r;
595
596 if (cap->flags)
597 return -EINVAL;
598
599 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100600 case KVM_CAP_PPC_OSI:
601 r = 0;
602 vcpu->arch.osi_enabled = true;
603 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200604 case KVM_CAP_PPC_PAPR:
605 r = 0;
606 vcpu->arch.papr_enabled = true;
607 break;
Scott Wooddc83b8b2011-08-18 15:25:21 -0500608#ifdef CONFIG_KVM_E500
609 case KVM_CAP_SW_TLB: {
610 struct kvm_config_tlb cfg;
611 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
612
613 r = -EFAULT;
614 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
615 break;
616
617 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
618 break;
619 }
620#endif
Alexander Graf71fbfd52010-03-24 21:48:29 +0100621 default:
622 r = -EINVAL;
623 break;
624 }
625
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200626 if (!r)
627 r = kvmppc_sanity_check(vcpu);
628
Alexander Graf71fbfd52010-03-24 21:48:29 +0100629 return r;
630}
631
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500632int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
633 struct kvm_mp_state *mp_state)
634{
635 return -EINVAL;
636}
637
638int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
639 struct kvm_mp_state *mp_state)
640{
641 return -EINVAL;
642}
643
644long kvm_arch_vcpu_ioctl(struct file *filp,
645 unsigned int ioctl, unsigned long arg)
646{
647 struct kvm_vcpu *vcpu = filp->private_data;
648 void __user *argp = (void __user *)arg;
649 long r;
650
Avi Kivity93736622010-05-13 12:35:17 +0300651 switch (ioctl) {
652 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500653 struct kvm_interrupt irq;
654 r = -EFAULT;
655 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300656 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500657 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300658 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500659 }
Avi Kivity19483d12010-05-13 12:30:43 +0300660
Alexander Graf71fbfd52010-03-24 21:48:29 +0100661 case KVM_ENABLE_CAP:
662 {
663 struct kvm_enable_cap cap;
664 r = -EFAULT;
665 if (copy_from_user(&cap, argp, sizeof(cap)))
666 goto out;
667 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
668 break;
669 }
Scott Wooddc83b8b2011-08-18 15:25:21 -0500670
671#ifdef CONFIG_KVM_E500
672 case KVM_DIRTY_TLB: {
673 struct kvm_dirty_tlb dirty;
674 r = -EFAULT;
675 if (copy_from_user(&dirty, argp, sizeof(dirty)))
676 goto out;
677 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
678 break;
679 }
680#endif
681
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500682 default:
683 r = -EINVAL;
684 }
685
686out:
687 return r;
688}
689
Carsten Otte5b1c1492012-01-04 10:25:23 +0100690int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
691{
692 return VM_FAULT_SIGBUS;
693}
694
Alexander Graf15711e92010-07-29 14:48:08 +0200695static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
696{
697 u32 inst_lis = 0x3c000000;
698 u32 inst_ori = 0x60000000;
699 u32 inst_nop = 0x60000000;
700 u32 inst_sc = 0x44000002;
701 u32 inst_imm_mask = 0xffff;
702
703 /*
704 * The hypercall to get into KVM from within guest context is as
705 * follows:
706 *
707 * lis r0, r0, KVM_SC_MAGIC_R0@h
708 * ori r0, KVM_SC_MAGIC_R0@l
709 * sc
710 * nop
711 */
712 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
713 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
714 pvinfo->hcall[2] = inst_sc;
715 pvinfo->hcall[3] = inst_nop;
716
717 return 0;
718}
719
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500720long kvm_arch_vm_ioctl(struct file *filp,
721 unsigned int ioctl, unsigned long arg)
722{
Alexander Graf15711e92010-07-29 14:48:08 +0200723 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500724 long r;
725
726 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +0200727 case KVM_PPC_GET_PVINFO: {
728 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +0400729 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +0200730 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
731 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
732 r = -EFAULT;
733 goto out;
734 }
735
736 break;
737 }
David Gibson54738c02011-06-29 00:22:41 +0000738#ifdef CONFIG_KVM_BOOK3S_64_HV
739 case KVM_CREATE_SPAPR_TCE: {
740 struct kvm_create_spapr_tce create_tce;
741 struct kvm *kvm = filp->private_data;
742
743 r = -EFAULT;
744 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
745 goto out;
746 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
747 goto out;
748 }
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000749
750 case KVM_ALLOCATE_RMA: {
751 struct kvm *kvm = filp->private_data;
752 struct kvm_allocate_rma rma;
753
754 r = kvm_vm_ioctl_allocate_rma(kvm, &rma);
755 if (r >= 0 && copy_to_user(argp, &rma, sizeof(rma)))
756 r = -EFAULT;
757 break;
758 }
David Gibson54738c02011-06-29 00:22:41 +0000759#endif /* CONFIG_KVM_BOOK3S_64_HV */
760
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500761 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300762 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500763 }
764
Alexander Graf15711e92010-07-29 14:48:08 +0200765out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500766 return r;
767}
768
769int kvm_arch_init(void *opaque)
770{
771 return 0;
772}
773
774void kvm_arch_exit(void)
775{
776}