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>
27 #include <asm/cputable.h>
28 #include <asm/uaccess.h>
29 #include <asm/kvm_ppc.h>
32 gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
37 int kvm_cpu_has_interrupt(struct kvm_vcpu *v)
39 /* XXX implement me */
43 int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
49 int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
51 enum emulation_result er;
54 er = kvmppc_emulate_instruction(run, vcpu);
57 /* Future optimization: only reload non-volatiles if they were
58 * actually modified. */
62 run->exit_reason = KVM_EXIT_MMIO;
63 /* We must reload nonvolatiles because "update" load/store
64 * instructions modify register state. */
65 /* Future optimization: only reload non-volatiles if they were
66 * actually modified. */
70 /* XXX Deliver Program interrupt to guest. */
71 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
72 vcpu->arch.last_inst);
82 void kvm_arch_hardware_enable(void *garbage)
86 void kvm_arch_hardware_disable(void *garbage)
90 int kvm_arch_hardware_setup(void)
95 void kvm_arch_hardware_unsetup(void)
99 void kvm_arch_check_processor_compat(void *rtn)
103 if (strcmp(cur_cpu_spec->platform, "ppc440") == 0)
111 struct kvm *kvm_arch_create_vm(void)
115 kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
117 return ERR_PTR(-ENOMEM);
122 static void kvmppc_free_vcpus(struct kvm *kvm)
126 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
128 kvm_arch_vcpu_free(kvm->vcpus[i]);
129 kvm->vcpus[i] = NULL;
134 void kvm_arch_destroy_vm(struct kvm *kvm)
136 kvmppc_free_vcpus(kvm);
137 kvm_free_physmem(kvm);
141 int kvm_dev_ioctl_check_extension(long ext)
146 case KVM_CAP_USER_MEMORY:
157 long kvm_arch_dev_ioctl(struct file *filp,
158 unsigned int ioctl, unsigned long arg)
163 int kvm_arch_set_memory_region(struct kvm *kvm,
164 struct kvm_userspace_memory_region *mem,
165 struct kvm_memory_slot old,
171 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
173 struct kvm_vcpu *vcpu;
176 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
182 err = kvm_vcpu_init(vcpu, kvm, id);
189 kmem_cache_free(kvm_vcpu_cache, vcpu);
194 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
196 kvm_vcpu_uninit(vcpu);
197 kmem_cache_free(kvm_vcpu_cache, vcpu);
200 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
202 kvm_arch_vcpu_free(vcpu);
205 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
207 unsigned int priority = exception_priority[BOOKE_INTERRUPT_DECREMENTER];
209 return test_bit(priority, &vcpu->arch.pending_exceptions);
212 static void kvmppc_decrementer_func(unsigned long data)
214 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
216 kvmppc_queue_exception(vcpu, BOOKE_INTERRUPT_DECREMENTER);
219 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
221 setup_timer(&vcpu->arch.dec_timer, kvmppc_decrementer_func,
222 (unsigned long)vcpu);
227 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
231 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
235 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
239 void decache_vcpus_on_cpu(int cpu)
243 int kvm_arch_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
244 struct kvm_debug_guest *dbg)
249 static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
252 u32 *gpr = &vcpu->arch.gpr[vcpu->arch.io_gpr];
253 *gpr = run->dcr.data;
256 static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
259 u32 *gpr = &vcpu->arch.gpr[vcpu->arch.io_gpr];
261 if (run->mmio.len > sizeof(*gpr)) {
262 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
266 if (vcpu->arch.mmio_is_bigendian) {
267 switch (run->mmio.len) {
268 case 4: *gpr = *(u32 *)run->mmio.data; break;
269 case 2: *gpr = *(u16 *)run->mmio.data; break;
270 case 1: *gpr = *(u8 *)run->mmio.data; break;
273 /* Convert BE data from userland back to LE. */
274 switch (run->mmio.len) {
275 case 4: *gpr = ld_le32((u32 *)run->mmio.data); break;
276 case 2: *gpr = ld_le16((u16 *)run->mmio.data); break;
277 case 1: *gpr = *(u8 *)run->mmio.data; break;
282 int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
283 unsigned int rt, unsigned int bytes, int is_bigendian)
285 if (bytes > sizeof(run->mmio.data)) {
286 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
290 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
291 run->mmio.len = bytes;
292 run->mmio.is_write = 0;
294 vcpu->arch.io_gpr = rt;
295 vcpu->arch.mmio_is_bigendian = is_bigendian;
296 vcpu->mmio_needed = 1;
297 vcpu->mmio_is_write = 0;
299 return EMULATE_DO_MMIO;
302 int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
303 u32 val, unsigned int bytes, int is_bigendian)
305 void *data = run->mmio.data;
307 if (bytes > sizeof(run->mmio.data)) {
308 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
312 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
313 run->mmio.len = bytes;
314 run->mmio.is_write = 1;
315 vcpu->mmio_needed = 1;
316 vcpu->mmio_is_write = 1;
318 /* Store the value at the lowest bytes in 'data'. */
321 case 4: *(u32 *)data = val; break;
322 case 2: *(u16 *)data = val; break;
323 case 1: *(u8 *)data = val; break;
326 /* Store LE value into 'data'. */
328 case 4: st_le32(data, val); break;
329 case 2: st_le16(data, val); break;
330 case 1: *(u8 *)data = val; break;
334 return EMULATE_DO_MMIO;
337 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
342 if (vcpu->sigset_active)
343 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
345 if (vcpu->mmio_needed) {
346 if (!vcpu->mmio_is_write)
347 kvmppc_complete_mmio_load(vcpu, run);
348 vcpu->mmio_needed = 0;
349 } else if (vcpu->arch.dcr_needed) {
350 if (!vcpu->arch.dcr_is_write)
351 kvmppc_complete_dcr_load(vcpu, run);
352 vcpu->arch.dcr_needed = 0;
355 kvmppc_check_and_deliver_interrupts(vcpu);
359 r = __kvmppc_vcpu_run(run, vcpu);
363 if (vcpu->sigset_active)
364 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
369 int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
371 kvmppc_queue_exception(vcpu, BOOKE_INTERRUPT_EXTERNAL);
375 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
376 struct kvm_mp_state *mp_state)
381 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
382 struct kvm_mp_state *mp_state)
387 long kvm_arch_vcpu_ioctl(struct file *filp,
388 unsigned int ioctl, unsigned long arg)
390 struct kvm_vcpu *vcpu = filp->private_data;
391 void __user *argp = (void __user *)arg;
395 case KVM_INTERRUPT: {
396 struct kvm_interrupt irq;
398 if (copy_from_user(&irq, argp, sizeof(irq)))
400 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
411 int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
416 long kvm_arch_vm_ioctl(struct file *filp,
417 unsigned int ioctl, unsigned long arg)
429 int kvm_arch_init(void *opaque)
434 void kvm_arch_exit(void)