blob: d82551efbfbf33b8dc6afd68a50aea933aaf9287 [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>
28#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>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060032#include "timing.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110033#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050034
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030035#define CREATE_TRACE_POINTS
36#include "trace.h"
37
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050038gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
39{
40 return gfn;
41}
42
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050043int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
44{
Gleb Natapova1b37102009-07-09 15:33:52 +030045 return !(v->arch.msr & MSR_WE) || !!(v->arch.pending_exceptions);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050046}
47
48
49int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
50{
51 enum emulation_result er;
52 int r;
53
54 er = kvmppc_emulate_instruction(run, vcpu);
55 switch (er) {
56 case EMULATE_DONE:
57 /* Future optimization: only reload non-volatiles if they were
58 * actually modified. */
59 r = RESUME_GUEST_NV;
60 break;
61 case EMULATE_DO_MMIO:
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. */
67 r = RESUME_HOST_NV;
68 break;
69 case EMULATE_FAIL:
70 /* XXX Deliver Program interrupt to guest. */
71 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
72 vcpu->arch.last_inst);
73 r = RESUME_HOST;
74 break;
75 default:
76 BUG();
77 }
78
79 return r;
80}
81
82void kvm_arch_hardware_enable(void *garbage)
83{
84}
85
86void kvm_arch_hardware_disable(void *garbage)
87{
88}
89
90int kvm_arch_hardware_setup(void)
91{
92 return 0;
93}
94
95void kvm_arch_hardware_unsetup(void)
96{
97}
98
99void kvm_arch_check_processor_compat(void *rtn)
100{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600101 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500102}
103
104struct kvm *kvm_arch_create_vm(void)
105{
106 struct kvm *kvm;
107
108 kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
109 if (!kvm)
110 return ERR_PTR(-ENOMEM);
111
112 return kvm;
113}
114
115static void kvmppc_free_vcpus(struct kvm *kvm)
116{
117 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300118 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500119
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300120 kvm_for_each_vcpu(i, vcpu, kvm)
121 kvm_arch_vcpu_free(vcpu);
122
123 mutex_lock(&kvm->lock);
124 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
125 kvm->vcpus[i] = NULL;
126
127 atomic_set(&kvm->online_vcpus, 0);
128 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500129}
130
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800131void kvm_arch_sync_events(struct kvm *kvm)
132{
133}
134
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500135void kvm_arch_destroy_vm(struct kvm *kvm)
136{
137 kvmppc_free_vcpus(kvm);
138 kvm_free_physmem(kvm);
139 kfree(kvm);
140}
141
142int kvm_dev_ioctl_check_extension(long ext)
143{
144 int r;
145
146 switch (ext) {
Alexander Grafe15a1132009-11-30 03:02:02 +0000147 case KVM_CAP_PPC_SEGSTATE:
148 r = 1;
149 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200150 case KVM_CAP_COALESCED_MMIO:
151 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
152 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500153 default:
154 r = 0;
155 break;
156 }
157 return r;
158
159}
160
161long kvm_arch_dev_ioctl(struct file *filp,
162 unsigned int ioctl, unsigned long arg)
163{
164 return -EINVAL;
165}
166
167int kvm_arch_set_memory_region(struct kvm *kvm,
168 struct kvm_userspace_memory_region *mem,
169 struct kvm_memory_slot old,
170 int user_alloc)
171{
172 return 0;
173}
174
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300175void kvm_arch_flush_shadow(struct kvm *kvm)
176{
177}
178
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500179struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
180{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600181 struct kvm_vcpu *vcpu;
182 vcpu = kvmppc_core_vcpu_create(kvm, id);
183 kvmppc_create_vcpu_debugfs(vcpu, id);
184 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500185}
186
187void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
188{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600189 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600190 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500191}
192
193void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
194{
195 kvm_arch_vcpu_free(vcpu);
196}
197
198int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
199{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600200 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500201}
202
203static void kvmppc_decrementer_func(unsigned long data)
204{
205 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
206
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600207 kvmppc_core_queue_dec(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500208
209 if (waitqueue_active(&vcpu->wq)) {
210 wake_up_interruptible(&vcpu->wq);
211 vcpu->stat.halt_wakeup++;
212 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500213}
214
Alexander Graf544c6762009-11-02 12:02:31 +0000215/*
216 * low level hrtimer wake routine. Because this runs in hardirq context
217 * we schedule a tasklet to do the real work.
218 */
219enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
220{
221 struct kvm_vcpu *vcpu;
222
223 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
224 tasklet_schedule(&vcpu->arch.tasklet);
225
226 return HRTIMER_NORESTART;
227}
228
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500229int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
230{
Alexander Graf544c6762009-11-02 12:02:31 +0000231 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
232 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
233 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500234
235 return 0;
236}
237
238void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
239{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600240 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500241}
242
243void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
244{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600245 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500246}
247
248void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
249{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600250 kvmppc_core_vcpu_put(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500251}
252
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100253int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600254 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500255{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600256 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500257}
258
259static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
260 struct kvm_run *run)
261{
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -0600262 ulong *gpr = &vcpu->arch.gpr[vcpu->arch.io_gpr];
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500263 *gpr = run->dcr.data;
264}
265
266static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
267 struct kvm_run *run)
268{
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -0600269 ulong *gpr = &vcpu->arch.gpr[vcpu->arch.io_gpr];
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500270
271 if (run->mmio.len > sizeof(*gpr)) {
272 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
273 return;
274 }
275
276 if (vcpu->arch.mmio_is_bigendian) {
277 switch (run->mmio.len) {
278 case 4: *gpr = *(u32 *)run->mmio.data; break;
279 case 2: *gpr = *(u16 *)run->mmio.data; break;
280 case 1: *gpr = *(u8 *)run->mmio.data; break;
281 }
282 } else {
283 /* Convert BE data from userland back to LE. */
284 switch (run->mmio.len) {
285 case 4: *gpr = ld_le32((u32 *)run->mmio.data); break;
286 case 2: *gpr = ld_le16((u16 *)run->mmio.data); break;
287 case 1: *gpr = *(u8 *)run->mmio.data; break;
288 }
289 }
290}
291
292int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
293 unsigned int rt, unsigned int bytes, int is_bigendian)
294{
295 if (bytes > sizeof(run->mmio.data)) {
296 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
297 run->mmio.len);
298 }
299
300 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
301 run->mmio.len = bytes;
302 run->mmio.is_write = 0;
303
304 vcpu->arch.io_gpr = rt;
305 vcpu->arch.mmio_is_bigendian = is_bigendian;
306 vcpu->mmio_needed = 1;
307 vcpu->mmio_is_write = 0;
308
309 return EMULATE_DO_MMIO;
310}
311
312int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
313 u32 val, unsigned int bytes, int is_bigendian)
314{
315 void *data = run->mmio.data;
316
317 if (bytes > sizeof(run->mmio.data)) {
318 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
319 run->mmio.len);
320 }
321
322 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
323 run->mmio.len = bytes;
324 run->mmio.is_write = 1;
325 vcpu->mmio_needed = 1;
326 vcpu->mmio_is_write = 1;
327
328 /* Store the value at the lowest bytes in 'data'. */
329 if (is_bigendian) {
330 switch (bytes) {
331 case 4: *(u32 *)data = val; break;
332 case 2: *(u16 *)data = val; break;
333 case 1: *(u8 *)data = val; break;
334 }
335 } else {
336 /* Store LE value into 'data'. */
337 switch (bytes) {
338 case 4: st_le32(data, val); break;
339 case 2: st_le16(data, val); break;
340 case 1: *(u8 *)data = val; break;
341 }
342 }
343
344 return EMULATE_DO_MMIO;
345}
346
347int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
348{
349 int r;
350 sigset_t sigsaved;
351
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500352 vcpu_load(vcpu);
353
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500354 if (vcpu->sigset_active)
355 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
356
357 if (vcpu->mmio_needed) {
358 if (!vcpu->mmio_is_write)
359 kvmppc_complete_mmio_load(vcpu, run);
360 vcpu->mmio_needed = 0;
361 } else if (vcpu->arch.dcr_needed) {
362 if (!vcpu->arch.dcr_is_write)
363 kvmppc_complete_dcr_load(vcpu, run);
364 vcpu->arch.dcr_needed = 0;
365 }
366
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600367 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500368
369 local_irq_disable();
370 kvm_guest_enter();
371 r = __kvmppc_vcpu_run(run, vcpu);
372 kvm_guest_exit();
373 local_irq_enable();
374
375 if (vcpu->sigset_active)
376 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
377
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500378 vcpu_put(vcpu);
379
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500380 return r;
381}
382
383int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
384{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600385 kvmppc_core_queue_external(vcpu, irq);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500386
387 if (waitqueue_active(&vcpu->wq)) {
388 wake_up_interruptible(&vcpu->wq);
389 vcpu->stat.halt_wakeup++;
390 }
391
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500392 return 0;
393}
394
395int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
396 struct kvm_mp_state *mp_state)
397{
398 return -EINVAL;
399}
400
401int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
402 struct kvm_mp_state *mp_state)
403{
404 return -EINVAL;
405}
406
407long kvm_arch_vcpu_ioctl(struct file *filp,
408 unsigned int ioctl, unsigned long arg)
409{
410 struct kvm_vcpu *vcpu = filp->private_data;
411 void __user *argp = (void __user *)arg;
412 long r;
413
414 switch (ioctl) {
415 case KVM_INTERRUPT: {
416 struct kvm_interrupt irq;
417 r = -EFAULT;
418 if (copy_from_user(&irq, argp, sizeof(irq)))
419 goto out;
420 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
421 break;
422 }
423 default:
424 r = -EINVAL;
425 }
426
427out:
428 return r;
429}
430
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500431long kvm_arch_vm_ioctl(struct file *filp,
432 unsigned int ioctl, unsigned long arg)
433{
434 long r;
435
436 switch (ioctl) {
437 default:
438 r = -EINVAL;
439 }
440
441 return r;
442}
443
444int kvm_arch_init(void *opaque)
445{
446 return 0;
447}
448
449void kvm_arch_exit(void)
450{
451}