KVM: ppc: create struct kvm_vcpu_44x and introduce container_of() accessor
[deliverable/linux.git] / arch / powerpc / kvm / powerpc.c
CommitLineData
bbf45ba5
HB
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.
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>
26#include <linux/fs.h>
27#include <asm/cputable.h>
28#include <asm/uaccess.h>
29#include <asm/kvm_ppc.h>
83aae4a8 30#include <asm/tlbflush.h>
fad7b9b5 31#include "../mm/mmu_decl.h"
bbf45ba5
HB
32
33
34gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
35{
36 return gfn;
37}
38
39int kvm_cpu_has_interrupt(struct kvm_vcpu *v)
40{
45c5eb67 41 return !!(v->arch.pending_exceptions);
bbf45ba5
HB
42}
43
44int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
45{
45c5eb67 46 return !(v->arch.msr & MSR_WE);
bbf45ba5
HB
47}
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
83void kvm_arch_hardware_enable(void *garbage)
84{
85}
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{
9dd921cf 102 *(int *)rtn = kvmppc_core_check_processor_compat();
bbf45ba5
HB
103}
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;
119
120 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
121 if (kvm->vcpus[i]) {
122 kvm_arch_vcpu_free(kvm->vcpus[i]);
123 kvm->vcpus[i] = NULL;
124 }
125 }
126}
127
128void kvm_arch_destroy_vm(struct kvm *kvm)
129{
130 kvmppc_free_vcpus(kvm);
131 kvm_free_physmem(kvm);
132 kfree(kvm);
133}
134
135int kvm_dev_ioctl_check_extension(long ext)
136{
137 int r;
138
139 switch (ext) {
140 case KVM_CAP_USER_MEMORY:
141 r = 1;
142 break;
588968b6
LV
143 case KVM_CAP_COALESCED_MMIO:
144 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
145 break;
bbf45ba5
HB
146 default:
147 r = 0;
148 break;
149 }
150 return r;
151
152}
153
154long kvm_arch_dev_ioctl(struct file *filp,
155 unsigned int ioctl, unsigned long arg)
156{
157 return -EINVAL;
158}
159
160int kvm_arch_set_memory_region(struct kvm *kvm,
161 struct kvm_userspace_memory_region *mem,
162 struct kvm_memory_slot old,
163 int user_alloc)
164{
165 return 0;
166}
167
34d4cb8f
MT
168void kvm_arch_flush_shadow(struct kvm *kvm)
169{
170}
171
bbf45ba5
HB
172struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
173{
db93f574 174 return kvmppc_core_vcpu_create(kvm, id);
bbf45ba5
HB
175}
176
177void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
178{
db93f574 179 kvmppc_core_vcpu_free(vcpu);
bbf45ba5
HB
180}
181
182void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
183{
184 kvm_arch_vcpu_free(vcpu);
185}
186
187int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
188{
9dd921cf 189 return kvmppc_core_pending_dec(vcpu);
bbf45ba5
HB
190}
191
192static void kvmppc_decrementer_func(unsigned long data)
193{
194 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
195
9dd921cf 196 kvmppc_core_queue_dec(vcpu);
45c5eb67
HB
197
198 if (waitqueue_active(&vcpu->wq)) {
199 wake_up_interruptible(&vcpu->wq);
200 vcpu->stat.halt_wakeup++;
201 }
bbf45ba5
HB
202}
203
204int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
205{
206 setup_timer(&vcpu->arch.dec_timer, kvmppc_decrementer_func,
207 (unsigned long)vcpu);
208
209 return 0;
210}
211
212void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
213{
c30f8a6c 214 kvmppc_core_destroy_mmu(vcpu);
bbf45ba5
HB
215}
216
217void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
218{
6a0ab738 219 if (vcpu->guest_debug.enabled)
9dd921cf 220 kvmppc_core_load_guest_debugstate(vcpu);
83aae4a8 221
9dd921cf 222 kvmppc_core_vcpu_load(vcpu, cpu);
bbf45ba5
HB
223}
224
225void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
226{
6a0ab738 227 if (vcpu->guest_debug.enabled)
9dd921cf 228 kvmppc_core_load_host_debugstate(vcpu);
83aae4a8
HB
229
230 /* Don't leave guest TLB entries resident when being de-scheduled. */
231 /* XXX It would be nice to differentiate between heavyweight exit and
232 * sched_out here, since we could avoid the TLB flush for heavyweight
233 * exits. */
2a4aca11 234 _tlbil_all();
9dd921cf 235 kvmppc_core_vcpu_put(vcpu);
bbf45ba5
HB
236}
237
bbf45ba5
HB
238int kvm_arch_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
239 struct kvm_debug_guest *dbg)
240{
6a0ab738
HB
241 int i;
242
243 vcpu->guest_debug.enabled = dbg->enabled;
244 if (vcpu->guest_debug.enabled) {
245 for (i=0; i < ARRAY_SIZE(vcpu->guest_debug.bp); i++) {
246 if (dbg->breakpoints[i].enabled)
247 vcpu->guest_debug.bp[i] = dbg->breakpoints[i].address;
248 else
249 vcpu->guest_debug.bp[i] = 0;
250 }
251 }
252
253 return 0;
bbf45ba5
HB
254}
255
256static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
257 struct kvm_run *run)
258{
259 u32 *gpr = &vcpu->arch.gpr[vcpu->arch.io_gpr];
260 *gpr = run->dcr.data;
261}
262
263static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
264 struct kvm_run *run)
265{
266 u32 *gpr = &vcpu->arch.gpr[vcpu->arch.io_gpr];
267
268 if (run->mmio.len > sizeof(*gpr)) {
269 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
270 return;
271 }
272
273 if (vcpu->arch.mmio_is_bigendian) {
274 switch (run->mmio.len) {
275 case 4: *gpr = *(u32 *)run->mmio.data; break;
276 case 2: *gpr = *(u16 *)run->mmio.data; break;
277 case 1: *gpr = *(u8 *)run->mmio.data; break;
278 }
279 } else {
280 /* Convert BE data from userland back to LE. */
281 switch (run->mmio.len) {
282 case 4: *gpr = ld_le32((u32 *)run->mmio.data); break;
283 case 2: *gpr = ld_le16((u16 *)run->mmio.data); break;
284 case 1: *gpr = *(u8 *)run->mmio.data; break;
285 }
286 }
287}
288
289int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
290 unsigned int rt, unsigned int bytes, int is_bigendian)
291{
292 if (bytes > sizeof(run->mmio.data)) {
293 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
294 run->mmio.len);
295 }
296
297 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
298 run->mmio.len = bytes;
299 run->mmio.is_write = 0;
300
301 vcpu->arch.io_gpr = rt;
302 vcpu->arch.mmio_is_bigendian = is_bigendian;
303 vcpu->mmio_needed = 1;
304 vcpu->mmio_is_write = 0;
305
306 return EMULATE_DO_MMIO;
307}
308
309int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
310 u32 val, unsigned int bytes, int is_bigendian)
311{
312 void *data = run->mmio.data;
313
314 if (bytes > sizeof(run->mmio.data)) {
315 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
316 run->mmio.len);
317 }
318
319 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
320 run->mmio.len = bytes;
321 run->mmio.is_write = 1;
322 vcpu->mmio_needed = 1;
323 vcpu->mmio_is_write = 1;
324
325 /* Store the value at the lowest bytes in 'data'. */
326 if (is_bigendian) {
327 switch (bytes) {
328 case 4: *(u32 *)data = val; break;
329 case 2: *(u16 *)data = val; break;
330 case 1: *(u8 *)data = val; break;
331 }
332 } else {
333 /* Store LE value into 'data'. */
334 switch (bytes) {
335 case 4: st_le32(data, val); break;
336 case 2: st_le16(data, val); break;
337 case 1: *(u8 *)data = val; break;
338 }
339 }
340
341 return EMULATE_DO_MMIO;
342}
343
344int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
345{
346 int r;
347 sigset_t sigsaved;
348
45c5eb67
HB
349 vcpu_load(vcpu);
350
bbf45ba5
HB
351 if (vcpu->sigset_active)
352 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
353
354 if (vcpu->mmio_needed) {
355 if (!vcpu->mmio_is_write)
356 kvmppc_complete_mmio_load(vcpu, run);
357 vcpu->mmio_needed = 0;
358 } else if (vcpu->arch.dcr_needed) {
359 if (!vcpu->arch.dcr_is_write)
360 kvmppc_complete_dcr_load(vcpu, run);
361 vcpu->arch.dcr_needed = 0;
362 }
363
9dd921cf 364 kvmppc_core_deliver_interrupts(vcpu);
bbf45ba5
HB
365
366 local_irq_disable();
367 kvm_guest_enter();
368 r = __kvmppc_vcpu_run(run, vcpu);
369 kvm_guest_exit();
370 local_irq_enable();
371
372 if (vcpu->sigset_active)
373 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
374
45c5eb67
HB
375 vcpu_put(vcpu);
376
bbf45ba5
HB
377 return r;
378}
379
380int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
381{
9dd921cf 382 kvmppc_core_queue_external(vcpu, irq);
45c5eb67
HB
383
384 if (waitqueue_active(&vcpu->wq)) {
385 wake_up_interruptible(&vcpu->wq);
386 vcpu->stat.halt_wakeup++;
387 }
388
bbf45ba5
HB
389 return 0;
390}
391
392int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
393 struct kvm_mp_state *mp_state)
394{
395 return -EINVAL;
396}
397
398int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
399 struct kvm_mp_state *mp_state)
400{
401 return -EINVAL;
402}
403
404long kvm_arch_vcpu_ioctl(struct file *filp,
405 unsigned int ioctl, unsigned long arg)
406{
407 struct kvm_vcpu *vcpu = filp->private_data;
408 void __user *argp = (void __user *)arg;
409 long r;
410
411 switch (ioctl) {
412 case KVM_INTERRUPT: {
413 struct kvm_interrupt irq;
414 r = -EFAULT;
415 if (copy_from_user(&irq, argp, sizeof(irq)))
416 goto out;
417 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
418 break;
419 }
420 default:
421 r = -EINVAL;
422 }
423
424out:
425 return r;
426}
427
428int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
429{
430 return -ENOTSUPP;
431}
432
433long kvm_arch_vm_ioctl(struct file *filp,
434 unsigned int ioctl, unsigned long arg)
435{
436 long r;
437
438 switch (ioctl) {
439 default:
440 r = -EINVAL;
441 }
442
443 return r;
444}
445
446int kvm_arch_init(void *opaque)
447{
448 return 0;
449}
450
451void kvm_arch_exit(void)
452{
453}
This page took 0.106092 seconds and 5 git commands to generate.