RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / powerpc / kvm / powerpc.c
blob052c60c2dbf4236f88c3f3e5229f75b7db93778f
1 /*
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.
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.
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.
15 * Copyright IBM Corp. 2007
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
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>
26 #include <linux/hrtimer.h>
27 #include <linux/fs.h>
28 #include <linux/slab.h>
29 #include <asm/cputable.h>
30 #include <asm/uaccess.h>
31 #include <asm/kvm_ppc.h>
32 #include <asm/tlbflush.h>
33 #include "timing.h"
34 #include "../mm/mmu_decl.h"
36 #define CREATE_TRACE_POINTS
37 #include "trace.h"
39 int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
41 return !(v->arch.msr & MSR_WE) || !!(v->arch.pending_exceptions);
45 int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
47 enum emulation_result er;
48 int r;
50 er = kvmppc_emulate_instruction(run, vcpu);
51 switch (er) {
52 case EMULATE_DONE:
53 /* Future optimization: only reload non-volatiles if they were
54 * actually modified. */
55 r = RESUME_GUEST_NV;
56 break;
57 case EMULATE_DO_MMIO:
58 run->exit_reason = KVM_EXIT_MMIO;
59 /* We must reload nonvolatiles because "update" load/store
60 * instructions modify register state. */
61 /* Future optimization: only reload non-volatiles if they were
62 * actually modified. */
63 r = RESUME_HOST_NV;
64 break;
65 case EMULATE_FAIL:
66 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
67 kvmppc_get_last_inst(vcpu));
68 r = RESUME_HOST;
69 break;
70 default:
71 BUG();
74 return r;
77 int kvm_arch_hardware_enable(void *garbage)
79 return 0;
82 void kvm_arch_hardware_disable(void *garbage)
86 int kvm_arch_hardware_setup(void)
88 return 0;
91 void kvm_arch_hardware_unsetup(void)
95 void kvm_arch_check_processor_compat(void *rtn)
97 *(int *)rtn = kvmppc_core_check_processor_compat();
100 struct kvm *kvm_arch_create_vm(void)
102 struct kvm *kvm;
104 kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
105 if (!kvm)
106 return ERR_PTR(-ENOMEM);
108 return kvm;
111 static void kvmppc_free_vcpus(struct kvm *kvm)
113 unsigned int i;
114 struct kvm_vcpu *vcpu;
116 kvm_for_each_vcpu(i, vcpu, kvm)
117 kvm_arch_vcpu_free(vcpu);
119 mutex_lock(&kvm->lock);
120 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
121 kvm->vcpus[i] = NULL;
123 atomic_set(&kvm->online_vcpus, 0);
124 mutex_unlock(&kvm->lock);
127 void kvm_arch_sync_events(struct kvm *kvm)
131 void kvm_arch_destroy_vm(struct kvm *kvm)
133 kvmppc_free_vcpus(kvm);
134 kvm_free_physmem(kvm);
135 cleanup_srcu_struct(&kvm->srcu);
136 kfree(kvm);
139 int kvm_dev_ioctl_check_extension(long ext)
141 int r;
143 switch (ext) {
144 case KVM_CAP_PPC_SEGSTATE:
145 case KVM_CAP_PPC_PAIRED_SINGLES:
146 case KVM_CAP_PPC_UNSET_IRQ:
147 case KVM_CAP_ENABLE_CAP:
148 case KVM_CAP_PPC_OSI:
149 r = 1;
150 break;
151 case KVM_CAP_COALESCED_MMIO:
152 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
153 break;
154 default:
155 r = 0;
156 break;
158 return r;
162 long kvm_arch_dev_ioctl(struct file *filp,
163 unsigned int ioctl, unsigned long arg)
165 return -EINVAL;
168 int kvm_arch_prepare_memory_region(struct kvm *kvm,
169 struct kvm_memory_slot *memslot,
170 struct kvm_memory_slot old,
171 struct kvm_userspace_memory_region *mem,
172 int user_alloc)
174 return 0;
177 void kvm_arch_commit_memory_region(struct kvm *kvm,
178 struct kvm_userspace_memory_region *mem,
179 struct kvm_memory_slot old,
180 int user_alloc)
182 return;
186 void kvm_arch_flush_shadow(struct kvm *kvm)
190 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
192 struct kvm_vcpu *vcpu;
193 vcpu = kvmppc_core_vcpu_create(kvm, id);
194 if (!IS_ERR(vcpu))
195 kvmppc_create_vcpu_debugfs(vcpu, id);
196 return vcpu;
199 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
201 /* Make sure we're not using the vcpu anymore */
202 hrtimer_cancel(&vcpu->arch.dec_timer);
203 tasklet_kill(&vcpu->arch.tasklet);
205 kvmppc_remove_vcpu_debugfs(vcpu);
206 kvmppc_core_vcpu_free(vcpu);
209 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
211 kvm_arch_vcpu_free(vcpu);
214 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
216 return kvmppc_core_pending_dec(vcpu);
219 static void kvmppc_decrementer_func(unsigned long data)
221 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
223 kvmppc_core_queue_dec(vcpu);
225 if (waitqueue_active(&vcpu->wq)) {
226 wake_up_interruptible(&vcpu->wq);
227 vcpu->stat.halt_wakeup++;
232 * low level hrtimer wake routine. Because this runs in hardirq context
233 * we schedule a tasklet to do the real work.
235 enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
237 struct kvm_vcpu *vcpu;
239 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
240 tasklet_schedule(&vcpu->arch.tasklet);
242 return HRTIMER_NORESTART;
245 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
247 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
248 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
249 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
251 return 0;
254 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
256 kvmppc_mmu_destroy(vcpu);
259 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
261 kvmppc_core_vcpu_load(vcpu, cpu);
264 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
266 kvmppc_core_vcpu_put(vcpu);
269 int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
270 struct kvm_guest_debug *dbg)
272 return -EINVAL;
275 static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
276 struct kvm_run *run)
278 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
281 static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
282 struct kvm_run *run)
284 u64 uninitialized_var(gpr);
286 if (run->mmio.len > sizeof(gpr)) {
287 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
288 return;
291 if (vcpu->arch.mmio_is_bigendian) {
292 switch (run->mmio.len) {
293 case 8: gpr = *(u64 *)run->mmio.data; break;
294 case 4: gpr = *(u32 *)run->mmio.data; break;
295 case 2: gpr = *(u16 *)run->mmio.data; break;
296 case 1: gpr = *(u8 *)run->mmio.data; break;
298 } else {
299 /* Convert BE data from userland back to LE. */
300 switch (run->mmio.len) {
301 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
302 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
303 case 1: gpr = *(u8 *)run->mmio.data; break;
307 if (vcpu->arch.mmio_sign_extend) {
308 switch (run->mmio.len) {
309 #ifdef CONFIG_PPC64
310 case 4:
311 gpr = (s64)(s32)gpr;
312 break;
313 #endif
314 case 2:
315 gpr = (s64)(s16)gpr;
316 break;
317 case 1:
318 gpr = (s64)(s8)gpr;
319 break;
323 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
325 switch (vcpu->arch.io_gpr & KVM_REG_EXT_MASK) {
326 case KVM_REG_GPR:
327 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
328 break;
329 case KVM_REG_FPR:
330 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
331 break;
332 #ifdef CONFIG_PPC_BOOK3S
333 case KVM_REG_QPR:
334 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
335 break;
336 case KVM_REG_FQPR:
337 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
338 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_REG_MASK] = gpr;
339 break;
340 #endif
341 default:
342 BUG();
346 int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
347 unsigned int rt, unsigned int bytes, int is_bigendian)
349 if (bytes > sizeof(run->mmio.data)) {
350 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
351 run->mmio.len);
354 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
355 run->mmio.len = bytes;
356 run->mmio.is_write = 0;
358 vcpu->arch.io_gpr = rt;
359 vcpu->arch.mmio_is_bigendian = is_bigendian;
360 vcpu->mmio_needed = 1;
361 vcpu->mmio_is_write = 0;
362 vcpu->arch.mmio_sign_extend = 0;
364 return EMULATE_DO_MMIO;
367 /* Same as above, but sign extends */
368 int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
369 unsigned int rt, unsigned int bytes, int is_bigendian)
371 int r;
373 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
374 vcpu->arch.mmio_sign_extend = 1;
376 return r;
379 int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
380 u64 val, unsigned int bytes, int is_bigendian)
382 void *data = run->mmio.data;
384 if (bytes > sizeof(run->mmio.data)) {
385 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
386 run->mmio.len);
389 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
390 run->mmio.len = bytes;
391 run->mmio.is_write = 1;
392 vcpu->mmio_needed = 1;
393 vcpu->mmio_is_write = 1;
395 /* Store the value at the lowest bytes in 'data'. */
396 if (is_bigendian) {
397 switch (bytes) {
398 case 8: *(u64 *)data = val; break;
399 case 4: *(u32 *)data = val; break;
400 case 2: *(u16 *)data = val; break;
401 case 1: *(u8 *)data = val; break;
403 } else {
404 /* Store LE value into 'data'. */
405 switch (bytes) {
406 case 4: st_le32(data, val); break;
407 case 2: st_le16(data, val); break;
408 case 1: *(u8 *)data = val; break;
412 return EMULATE_DO_MMIO;
415 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
417 int r;
418 sigset_t sigsaved;
420 if (vcpu->sigset_active)
421 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
423 if (vcpu->mmio_needed) {
424 if (!vcpu->mmio_is_write)
425 kvmppc_complete_mmio_load(vcpu, run);
426 vcpu->mmio_needed = 0;
427 } else if (vcpu->arch.dcr_needed) {
428 if (!vcpu->arch.dcr_is_write)
429 kvmppc_complete_dcr_load(vcpu, run);
430 vcpu->arch.dcr_needed = 0;
431 } else if (vcpu->arch.osi_needed) {
432 u64 *gprs = run->osi.gprs;
433 int i;
435 for (i = 0; i < 32; i++)
436 kvmppc_set_gpr(vcpu, i, gprs[i]);
437 vcpu->arch.osi_needed = 0;
440 kvmppc_core_deliver_interrupts(vcpu);
442 local_irq_disable();
443 kvm_guest_enter();
444 r = __kvmppc_vcpu_run(run, vcpu);
445 kvm_guest_exit();
446 local_irq_enable();
448 if (vcpu->sigset_active)
449 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
451 return r;
454 int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
456 if (irq->irq == KVM_INTERRUPT_UNSET)
457 kvmppc_core_dequeue_external(vcpu, irq);
458 else
459 kvmppc_core_queue_external(vcpu, irq);
461 if (waitqueue_active(&vcpu->wq)) {
462 wake_up_interruptible(&vcpu->wq);
463 vcpu->stat.halt_wakeup++;
466 return 0;
469 static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
470 struct kvm_enable_cap *cap)
472 int r;
474 if (cap->flags)
475 return -EINVAL;
477 switch (cap->cap) {
478 case KVM_CAP_PPC_OSI:
479 r = 0;
480 vcpu->arch.osi_enabled = true;
481 break;
482 default:
483 r = -EINVAL;
484 break;
487 return r;
490 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
491 struct kvm_mp_state *mp_state)
493 return -EINVAL;
496 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
497 struct kvm_mp_state *mp_state)
499 return -EINVAL;
502 long kvm_arch_vcpu_ioctl(struct file *filp,
503 unsigned int ioctl, unsigned long arg)
505 struct kvm_vcpu *vcpu = filp->private_data;
506 void __user *argp = (void __user *)arg;
507 long r;
509 switch (ioctl) {
510 case KVM_INTERRUPT: {
511 struct kvm_interrupt irq;
512 r = -EFAULT;
513 if (copy_from_user(&irq, argp, sizeof(irq)))
514 goto out;
515 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
516 goto out;
519 case KVM_ENABLE_CAP:
521 struct kvm_enable_cap cap;
522 r = -EFAULT;
523 if (copy_from_user(&cap, argp, sizeof(cap)))
524 goto out;
525 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
526 break;
528 default:
529 r = -EINVAL;
532 out:
533 return r;
536 long kvm_arch_vm_ioctl(struct file *filp,
537 unsigned int ioctl, unsigned long arg)
539 long r;
541 switch (ioctl) {
542 default:
543 r = -ENOTTY;
546 return r;
549 int kvm_arch_init(void *opaque)
551 return 0;
554 void kvm_arch_exit(void)