blob: 2c291161df89018c0d14a96d29749bef77086177 [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
Alexander Graf10474ae2009-09-15 11:37:46 +020082int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050083{
Alexander Graf10474ae2009-09-15 11:37:46 +020084 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050085}
86
87void kvm_arch_hardware_disable(void *garbage)
88{
89}
90
91int kvm_arch_hardware_setup(void)
92{
93 return 0;
94}
95
96void kvm_arch_hardware_unsetup(void)
97{
98}
99
100void kvm_arch_check_processor_compat(void *rtn)
101{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600102 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500103}
104
105struct kvm *kvm_arch_create_vm(void)
106{
107 struct kvm *kvm;
108
109 kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
110 if (!kvm)
111 return ERR_PTR(-ENOMEM);
112
113 return kvm;
114}
115
116static void kvmppc_free_vcpus(struct kvm *kvm)
117{
118 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300119 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500120
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300121 kvm_for_each_vcpu(i, vcpu, kvm)
122 kvm_arch_vcpu_free(vcpu);
123
124 mutex_lock(&kvm->lock);
125 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
126 kvm->vcpus[i] = NULL;
127
128 atomic_set(&kvm->online_vcpus, 0);
129 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500130}
131
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800132void kvm_arch_sync_events(struct kvm *kvm)
133{
134}
135
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500136void kvm_arch_destroy_vm(struct kvm *kvm)
137{
138 kvmppc_free_vcpus(kvm);
139 kvm_free_physmem(kvm);
140 kfree(kvm);
141}
142
143int kvm_dev_ioctl_check_extension(long ext)
144{
145 int r;
146
147 switch (ext) {
Alexander Grafe15a1132009-11-30 03:02:02 +0000148 case KVM_CAP_PPC_SEGSTATE:
149 r = 1;
150 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200151 case KVM_CAP_COALESCED_MMIO:
152 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
153 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500154 default:
155 r = 0;
156 break;
157 }
158 return r;
159
160}
161
162long kvm_arch_dev_ioctl(struct file *filp,
163 unsigned int ioctl, unsigned long arg)
164{
165 return -EINVAL;
166}
167
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200168int 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)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500173{
174 return 0;
175}
176
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200177void 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)
181{
182 return;
183}
184
185
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300186void kvm_arch_flush_shadow(struct kvm *kvm)
187{
188}
189
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500190struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
191{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600192 struct kvm_vcpu *vcpu;
193 vcpu = kvmppc_core_vcpu_create(kvm, id);
194 kvmppc_create_vcpu_debugfs(vcpu, id);
195 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500196}
197
198void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
199{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600200 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600201 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500202}
203
204void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
205{
206 kvm_arch_vcpu_free(vcpu);
207}
208
209int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
210{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600211 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500212}
213
214static void kvmppc_decrementer_func(unsigned long data)
215{
216 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
217
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600218 kvmppc_core_queue_dec(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500219
220 if (waitqueue_active(&vcpu->wq)) {
221 wake_up_interruptible(&vcpu->wq);
222 vcpu->stat.halt_wakeup++;
223 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500224}
225
Alexander Graf544c6762009-11-02 12:02:31 +0000226/*
227 * low level hrtimer wake routine. Because this runs in hardirq context
228 * we schedule a tasklet to do the real work.
229 */
230enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
231{
232 struct kvm_vcpu *vcpu;
233
234 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
235 tasklet_schedule(&vcpu->arch.tasklet);
236
237 return HRTIMER_NORESTART;
238}
239
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500240int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
241{
Alexander Graf544c6762009-11-02 12:02:31 +0000242 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
243 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
244 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500245
246 return 0;
247}
248
249void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
250{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600251 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500252}
253
254void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
255{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600256 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500257}
258
259void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
260{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600261 kvmppc_core_vcpu_put(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500262}
263
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100264int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600265 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500266{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600267 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500268}
269
270static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
271 struct kvm_run *run)
272{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100273 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500274}
275
276static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
277 struct kvm_run *run)
278{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100279 ulong gpr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500280
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100281 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500282 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
283 return;
284 }
285
286 if (vcpu->arch.mmio_is_bigendian) {
287 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100288 case 4: gpr = *(u32 *)run->mmio.data; break;
289 case 2: gpr = *(u16 *)run->mmio.data; break;
290 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500291 }
292 } else {
293 /* Convert BE data from userland back to LE. */
294 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100295 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
296 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
297 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500298 }
299 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100300
301 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500302}
303
304int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
305 unsigned int rt, unsigned int bytes, int is_bigendian)
306{
307 if (bytes > sizeof(run->mmio.data)) {
308 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
309 run->mmio.len);
310 }
311
312 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
313 run->mmio.len = bytes;
314 run->mmio.is_write = 0;
315
316 vcpu->arch.io_gpr = rt;
317 vcpu->arch.mmio_is_bigendian = is_bigendian;
318 vcpu->mmio_needed = 1;
319 vcpu->mmio_is_write = 0;
320
321 return EMULATE_DO_MMIO;
322}
323
324int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
325 u32 val, unsigned int bytes, int is_bigendian)
326{
327 void *data = run->mmio.data;
328
329 if (bytes > sizeof(run->mmio.data)) {
330 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
331 run->mmio.len);
332 }
333
334 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
335 run->mmio.len = bytes;
336 run->mmio.is_write = 1;
337 vcpu->mmio_needed = 1;
338 vcpu->mmio_is_write = 1;
339
340 /* Store the value at the lowest bytes in 'data'. */
341 if (is_bigendian) {
342 switch (bytes) {
343 case 4: *(u32 *)data = val; break;
344 case 2: *(u16 *)data = val; break;
345 case 1: *(u8 *)data = val; break;
346 }
347 } else {
348 /* Store LE value into 'data'. */
349 switch (bytes) {
350 case 4: st_le32(data, val); break;
351 case 2: st_le16(data, val); break;
352 case 1: *(u8 *)data = val; break;
353 }
354 }
355
356 return EMULATE_DO_MMIO;
357}
358
359int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
360{
361 int r;
362 sigset_t sigsaved;
363
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500364 vcpu_load(vcpu);
365
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500366 if (vcpu->sigset_active)
367 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
368
369 if (vcpu->mmio_needed) {
370 if (!vcpu->mmio_is_write)
371 kvmppc_complete_mmio_load(vcpu, run);
372 vcpu->mmio_needed = 0;
373 } else if (vcpu->arch.dcr_needed) {
374 if (!vcpu->arch.dcr_is_write)
375 kvmppc_complete_dcr_load(vcpu, run);
376 vcpu->arch.dcr_needed = 0;
377 }
378
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600379 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500380
381 local_irq_disable();
382 kvm_guest_enter();
383 r = __kvmppc_vcpu_run(run, vcpu);
384 kvm_guest_exit();
385 local_irq_enable();
386
387 if (vcpu->sigset_active)
388 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
389
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500390 vcpu_put(vcpu);
391
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500392 return r;
393}
394
395int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
396{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600397 kvmppc_core_queue_external(vcpu, irq);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500398
399 if (waitqueue_active(&vcpu->wq)) {
400 wake_up_interruptible(&vcpu->wq);
401 vcpu->stat.halt_wakeup++;
402 }
403
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500404 return 0;
405}
406
407int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
408 struct kvm_mp_state *mp_state)
409{
410 return -EINVAL;
411}
412
413int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
414 struct kvm_mp_state *mp_state)
415{
416 return -EINVAL;
417}
418
419long kvm_arch_vcpu_ioctl(struct file *filp,
420 unsigned int ioctl, unsigned long arg)
421{
422 struct kvm_vcpu *vcpu = filp->private_data;
423 void __user *argp = (void __user *)arg;
424 long r;
425
426 switch (ioctl) {
427 case KVM_INTERRUPT: {
428 struct kvm_interrupt irq;
429 r = -EFAULT;
430 if (copy_from_user(&irq, argp, sizeof(irq)))
431 goto out;
432 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
433 break;
434 }
435 default:
436 r = -EINVAL;
437 }
438
439out:
440 return r;
441}
442
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500443long kvm_arch_vm_ioctl(struct file *filp,
444 unsigned int ioctl, unsigned long arg)
445{
446 long r;
447
448 switch (ioctl) {
449 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300450 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500451 }
452
453 return r;
454}
455
456int kvm_arch_init(void *opaque)
457{
458 return 0;
459}
460
461void kvm_arch_exit(void)
462{
463}