blob: 0bb6a7e826d1dbec22db80c76cb279c6865807a8 [file] [log] [blame]
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
14 *
15 * Copyright IBM Corp. 2007
16 *
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
19 */
20
21#include <linux/errno.h>
22#include <linux/err.h>
23#include <linux/kvm_host.h>
24#include <linux/module.h>
25#include <linux/vmalloc.h>
Alexander Graf544c6762009-11-02 12:02:31 +000026#include <linux/hrtimer.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050027#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050029#include <asm/cputable.h>
30#include <asm/uaccess.h>
31#include <asm/kvm_ppc.h>
Hollis Blanchard83aae4a2008-07-25 13:54:52 -050032#include <asm/tlbflush.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060033#include "timing.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110034#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050035
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030036#define CREATE_TRACE_POINTS
37#include "trace.h"
38
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050039gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
40{
41 return gfn;
42}
43
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050044int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
45{
Gleb Natapova1b37102009-07-09 15:33:52 +030046 return !(v->arch.msr & MSR_WE) || !!(v->arch.pending_exceptions);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050047}
48
49
50int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
51{
52 enum emulation_result er;
53 int r;
54
55 er = kvmppc_emulate_instruction(run, vcpu);
56 switch (er) {
57 case EMULATE_DONE:
58 /* Future optimization: only reload non-volatiles if they were
59 * actually modified. */
60 r = RESUME_GUEST_NV;
61 break;
62 case EMULATE_DO_MMIO:
63 run->exit_reason = KVM_EXIT_MMIO;
64 /* We must reload nonvolatiles because "update" load/store
65 * instructions modify register state. */
66 /* Future optimization: only reload non-volatiles if they were
67 * actually modified. */
68 r = RESUME_HOST_NV;
69 break;
70 case EMULATE_FAIL:
71 /* XXX Deliver Program interrupt to guest. */
72 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
73 vcpu->arch.last_inst);
74 r = RESUME_HOST;
75 break;
76 default:
77 BUG();
78 }
79
80 return r;
81}
82
Alexander Graf10474ae2009-09-15 11:37:46 +020083int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050084{
Alexander Graf10474ae2009-09-15 11:37:46 +020085 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050086}
87
88void kvm_arch_hardware_disable(void *garbage)
89{
90}
91
92int kvm_arch_hardware_setup(void)
93{
94 return 0;
95}
96
97void kvm_arch_hardware_unsetup(void)
98{
99}
100
101void kvm_arch_check_processor_compat(void *rtn)
102{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600103 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500104}
105
106struct kvm *kvm_arch_create_vm(void)
107{
108 struct kvm *kvm;
109
110 kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
111 if (!kvm)
112 return ERR_PTR(-ENOMEM);
113
114 return kvm;
115}
116
117static void kvmppc_free_vcpus(struct kvm *kvm)
118{
119 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300120 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500121
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300122 kvm_for_each_vcpu(i, vcpu, kvm)
123 kvm_arch_vcpu_free(vcpu);
124
125 mutex_lock(&kvm->lock);
126 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
127 kvm->vcpus[i] = NULL;
128
129 atomic_set(&kvm->online_vcpus, 0);
130 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500131}
132
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800133void kvm_arch_sync_events(struct kvm *kvm)
134{
135}
136
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500137void kvm_arch_destroy_vm(struct kvm *kvm)
138{
139 kvmppc_free_vcpus(kvm);
140 kvm_free_physmem(kvm);
Marcelo Tosatti64749202010-01-19 12:45:23 -0200141 cleanup_srcu_struct(&kvm->srcu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500142 kfree(kvm);
143}
144
145int kvm_dev_ioctl_check_extension(long ext)
146{
147 int r;
148
149 switch (ext) {
Alexander Grafe15a1132009-11-30 03:02:02 +0000150 case KVM_CAP_PPC_SEGSTATE:
Alexander Grafc10207f2010-02-19 11:00:45 +0100151 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Graf18978762010-03-24 21:48:18 +0100152 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Grafe15a1132009-11-30 03:02:02 +0000153 r = 1;
154 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200155 case KVM_CAP_COALESCED_MMIO:
156 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
157 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500158 default:
159 r = 0;
160 break;
161 }
162 return r;
163
164}
165
166long kvm_arch_dev_ioctl(struct file *filp,
167 unsigned int ioctl, unsigned long arg)
168{
169 return -EINVAL;
170}
171
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200172int kvm_arch_prepare_memory_region(struct kvm *kvm,
173 struct kvm_memory_slot *memslot,
174 struct kvm_memory_slot old,
175 struct kvm_userspace_memory_region *mem,
176 int user_alloc)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500177{
178 return 0;
179}
180
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200181void kvm_arch_commit_memory_region(struct kvm *kvm,
182 struct kvm_userspace_memory_region *mem,
183 struct kvm_memory_slot old,
184 int user_alloc)
185{
186 return;
187}
188
189
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300190void kvm_arch_flush_shadow(struct kvm *kvm)
191{
192}
193
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500194struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
195{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600196 struct kvm_vcpu *vcpu;
197 vcpu = kvmppc_core_vcpu_create(kvm, id);
Wei Yongjun06056bf2010-03-09 14:13:43 +0800198 if (!IS_ERR(vcpu))
199 kvmppc_create_vcpu_debugfs(vcpu, id);
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600200 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500201}
202
203void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
204{
Alexander Grafa5954052010-02-22 16:52:14 +0100205 /* Make sure we're not using the vcpu anymore */
206 hrtimer_cancel(&vcpu->arch.dec_timer);
207 tasklet_kill(&vcpu->arch.tasklet);
208
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600209 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600210 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500211}
212
213void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
214{
215 kvm_arch_vcpu_free(vcpu);
216}
217
218int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
219{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600220 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500221}
222
223static void kvmppc_decrementer_func(unsigned long data)
224{
225 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
226
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600227 kvmppc_core_queue_dec(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500228
229 if (waitqueue_active(&vcpu->wq)) {
230 wake_up_interruptible(&vcpu->wq);
231 vcpu->stat.halt_wakeup++;
232 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500233}
234
Alexander Graf544c6762009-11-02 12:02:31 +0000235/*
236 * low level hrtimer wake routine. Because this runs in hardirq context
237 * we schedule a tasklet to do the real work.
238 */
239enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
240{
241 struct kvm_vcpu *vcpu;
242
243 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
244 tasklet_schedule(&vcpu->arch.tasklet);
245
246 return HRTIMER_NORESTART;
247}
248
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500249int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
250{
Alexander Graf544c6762009-11-02 12:02:31 +0000251 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
252 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
253 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500254
255 return 0;
256}
257
258void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
259{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600260 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500261}
262
263void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
264{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600265 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500266}
267
268void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
269{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600270 kvmppc_core_vcpu_put(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500271}
272
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100273int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600274 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500275{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600276 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500277}
278
279static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
280 struct kvm_run *run)
281{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100282 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500283}
284
285static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
286 struct kvm_run *run)
287{
Alexander Grafb104d062010-02-19 11:00:29 +0100288 u64 gpr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500289
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100290 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500291 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
292 return;
293 }
294
295 if (vcpu->arch.mmio_is_bigendian) {
296 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100297 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100298 case 4: gpr = *(u32 *)run->mmio.data; break;
299 case 2: gpr = *(u16 *)run->mmio.data; break;
300 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500301 }
302 } else {
303 /* Convert BE data from userland back to LE. */
304 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100305 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
306 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
307 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500308 }
309 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100310
Alexander Graf3587d532010-02-19 11:00:30 +0100311 if (vcpu->arch.mmio_sign_extend) {
312 switch (run->mmio.len) {
313#ifdef CONFIG_PPC64
314 case 4:
315 gpr = (s64)(s32)gpr;
316 break;
317#endif
318 case 2:
319 gpr = (s64)(s16)gpr;
320 break;
321 case 1:
322 gpr = (s64)(s8)gpr;
323 break;
324 }
325 }
326
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100327 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100328
329 switch (vcpu->arch.io_gpr & KVM_REG_EXT_MASK) {
330 case KVM_REG_GPR:
331 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
332 break;
333 case KVM_REG_FPR:
334 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
335 break;
336 case KVM_REG_QPR:
337 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
338 break;
339 case KVM_REG_FQPR:
340 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
341 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
342 break;
343 default:
344 BUG();
345 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500346}
347
348int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
349 unsigned int rt, unsigned int bytes, int is_bigendian)
350{
351 if (bytes > sizeof(run->mmio.data)) {
352 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
353 run->mmio.len);
354 }
355
356 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
357 run->mmio.len = bytes;
358 run->mmio.is_write = 0;
359
360 vcpu->arch.io_gpr = rt;
361 vcpu->arch.mmio_is_bigendian = is_bigendian;
362 vcpu->mmio_needed = 1;
363 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100364 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500365
366 return EMULATE_DO_MMIO;
367}
368
Alexander Graf3587d532010-02-19 11:00:30 +0100369/* Same as above, but sign extends */
370int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
371 unsigned int rt, unsigned int bytes, int is_bigendian)
372{
373 int r;
374
375 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
376 vcpu->arch.mmio_sign_extend = 1;
377
378 return r;
379}
380
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500381int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100382 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500383{
384 void *data = run->mmio.data;
385
386 if (bytes > sizeof(run->mmio.data)) {
387 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
388 run->mmio.len);
389 }
390
391 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
392 run->mmio.len = bytes;
393 run->mmio.is_write = 1;
394 vcpu->mmio_needed = 1;
395 vcpu->mmio_is_write = 1;
396
397 /* Store the value at the lowest bytes in 'data'. */
398 if (is_bigendian) {
399 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100400 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500401 case 4: *(u32 *)data = val; break;
402 case 2: *(u16 *)data = val; break;
403 case 1: *(u8 *)data = val; break;
404 }
405 } else {
406 /* Store LE value into 'data'. */
407 switch (bytes) {
408 case 4: st_le32(data, val); break;
409 case 2: st_le16(data, val); break;
410 case 1: *(u8 *)data = val; break;
411 }
412 }
413
414 return EMULATE_DO_MMIO;
415}
416
417int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
418{
419 int r;
420 sigset_t sigsaved;
421
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500422 vcpu_load(vcpu);
423
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500424 if (vcpu->sigset_active)
425 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
426
427 if (vcpu->mmio_needed) {
428 if (!vcpu->mmio_is_write)
429 kvmppc_complete_mmio_load(vcpu, run);
430 vcpu->mmio_needed = 0;
431 } else if (vcpu->arch.dcr_needed) {
432 if (!vcpu->arch.dcr_is_write)
433 kvmppc_complete_dcr_load(vcpu, run);
434 vcpu->arch.dcr_needed = 0;
435 }
436
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600437 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500438
439 local_irq_disable();
440 kvm_guest_enter();
441 r = __kvmppc_vcpu_run(run, vcpu);
442 kvm_guest_exit();
443 local_irq_enable();
444
445 if (vcpu->sigset_active)
446 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
447
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500448 vcpu_put(vcpu);
449
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500450 return r;
451}
452
453int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
454{
Alexander Graf18978762010-03-24 21:48:18 +0100455 if (irq->irq == KVM_INTERRUPT_UNSET)
456 kvmppc_core_dequeue_external(vcpu, irq);
457 else
458 kvmppc_core_queue_external(vcpu, irq);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500459
460 if (waitqueue_active(&vcpu->wq)) {
461 wake_up_interruptible(&vcpu->wq);
462 vcpu->stat.halt_wakeup++;
463 }
464
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500465 return 0;
466}
467
468int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
469 struct kvm_mp_state *mp_state)
470{
471 return -EINVAL;
472}
473
474int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
475 struct kvm_mp_state *mp_state)
476{
477 return -EINVAL;
478}
479
480long kvm_arch_vcpu_ioctl(struct file *filp,
481 unsigned int ioctl, unsigned long arg)
482{
483 struct kvm_vcpu *vcpu = filp->private_data;
484 void __user *argp = (void __user *)arg;
485 long r;
486
487 switch (ioctl) {
488 case KVM_INTERRUPT: {
489 struct kvm_interrupt irq;
490 r = -EFAULT;
491 if (copy_from_user(&irq, argp, sizeof(irq)))
492 goto out;
493 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
494 break;
495 }
496 default:
497 r = -EINVAL;
498 }
499
500out:
501 return r;
502}
503
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500504long kvm_arch_vm_ioctl(struct file *filp,
505 unsigned int ioctl, unsigned long arg)
506{
507 long r;
508
509 switch (ioctl) {
510 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300511 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500512 }
513
514 return r;
515}
516
517int kvm_arch_init(void *opaque)
518{
519 return 0;
520}
521
522void kvm_arch_exit(void)
523{
524}