blob: e082e348c88200a36acc5f4a10f3a5ff1a7772a1 [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
Scott Wood4cd35f62011-06-14 18:34:31 -050016 * Copyright 2010-2011 Freescale Semiconductor, Inc.
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050017 *
18 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
19 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
20 */
21
22#include <linux/errno.h>
23#include <linux/err.h>
24#include <linux/kvm_host.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/gfp.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050026#include <linux/module.h>
27#include <linux/vmalloc.h>
28#include <linux/fs.h>
Hollis Blanchard7924bd42008-12-02 15:51:55 -060029
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050030#include <asm/cputable.h>
31#include <asm/uaccess.h>
32#include <asm/kvm_ppc.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060033#include "timing.h"
Hollis Blanchardd9fbd032008-11-05 09:36:13 -060034#include <asm/cacheflush.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050035
Hollis Blanchard75f74f02008-11-05 09:36:16 -060036#include "booke.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050037
Hollis Blanchardd9fbd032008-11-05 09:36:13 -060038unsigned long kvmppc_booke_handlers;
39
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050040#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
41#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
42
43struct kvm_stats_debugfs_item debugfs_entries[] = {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050044 { "mmio", VCPU_STAT(mmio_exits) },
45 { "dcr", VCPU_STAT(dcr_exits) },
46 { "sig", VCPU_STAT(signal_exits) },
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050047 { "itlb_r", VCPU_STAT(itlb_real_miss_exits) },
48 { "itlb_v", VCPU_STAT(itlb_virt_miss_exits) },
49 { "dtlb_r", VCPU_STAT(dtlb_real_miss_exits) },
50 { "dtlb_v", VCPU_STAT(dtlb_virt_miss_exits) },
51 { "sysc", VCPU_STAT(syscall_exits) },
52 { "isi", VCPU_STAT(isi_exits) },
53 { "dsi", VCPU_STAT(dsi_exits) },
54 { "inst_emu", VCPU_STAT(emulated_inst_exits) },
55 { "dec", VCPU_STAT(dec_exits) },
56 { "ext_intr", VCPU_STAT(ext_intr_exits) },
Hollis Blanchard45c5eb62008-04-25 17:55:49 -050057 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050058 { NULL }
59};
60
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050061/* TODO: use vcpu_printf() */
62void kvmppc_dump_vcpu(struct kvm_vcpu *vcpu)
63{
64 int i;
65
Alexander Graf666e7252010-07-29 14:47:43 +020066 printk("pc: %08lx msr: %08llx\n", vcpu->arch.pc, vcpu->arch.shared->msr);
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -060067 printk("lr: %08lx ctr: %08lx\n", vcpu->arch.lr, vcpu->arch.ctr);
Alexander Grafde7906c2010-07-29 14:47:46 +020068 printk("srr0: %08llx srr1: %08llx\n", vcpu->arch.shared->srr0,
69 vcpu->arch.shared->srr1);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050070
71 printk("exceptions: %08lx\n", vcpu->arch.pending_exceptions);
72
73 for (i = 0; i < 32; i += 4) {
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -060074 printk("gpr%02d: %08lx %08lx %08lx %08lx\n", i,
Alexander Graf8e5b26b2010-01-08 02:58:01 +010075 kvmppc_get_gpr(vcpu, i),
76 kvmppc_get_gpr(vcpu, i+1),
77 kvmppc_get_gpr(vcpu, i+2),
78 kvmppc_get_gpr(vcpu, i+3));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050079 }
80}
81
Scott Wood4cd35f62011-06-14 18:34:31 -050082#ifdef CONFIG_SPE
83void kvmppc_vcpu_disable_spe(struct kvm_vcpu *vcpu)
84{
85 preempt_disable();
86 enable_kernel_spe();
87 kvmppc_save_guest_spe(vcpu);
88 vcpu->arch.shadow_msr &= ~MSR_SPE;
89 preempt_enable();
90}
91
92static void kvmppc_vcpu_enable_spe(struct kvm_vcpu *vcpu)
93{
94 preempt_disable();
95 enable_kernel_spe();
96 kvmppc_load_guest_spe(vcpu);
97 vcpu->arch.shadow_msr |= MSR_SPE;
98 preempt_enable();
99}
100
101static void kvmppc_vcpu_sync_spe(struct kvm_vcpu *vcpu)
102{
103 if (vcpu->arch.shared->msr & MSR_SPE) {
104 if (!(vcpu->arch.shadow_msr & MSR_SPE))
105 kvmppc_vcpu_enable_spe(vcpu);
106 } else if (vcpu->arch.shadow_msr & MSR_SPE) {
107 kvmppc_vcpu_disable_spe(vcpu);
108 }
109}
110#else
111static void kvmppc_vcpu_sync_spe(struct kvm_vcpu *vcpu)
112{
113}
114#endif
115
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500116/*
117 * Helper function for "full" MSR writes. No need to call this if only
118 * EE/CE/ME/DE/RI are changing.
119 */
Scott Wood4cd35f62011-06-14 18:34:31 -0500120void kvmppc_set_msr(struct kvm_vcpu *vcpu, u32 new_msr)
121{
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500122 u32 old_msr = vcpu->arch.shared->msr;
Scott Wood4cd35f62011-06-14 18:34:31 -0500123
124 vcpu->arch.shared->msr = new_msr;
125
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500126 kvmppc_mmu_msr_notify(vcpu, old_msr);
127
Scott Wood4cd35f62011-06-14 18:34:31 -0500128 if (vcpu->arch.shared->msr & MSR_WE) {
129 kvm_vcpu_block(vcpu);
130 kvmppc_set_exit_type(vcpu, EMULATED_MTMSRWE_EXITS);
131 };
132
133 kvmppc_vcpu_sync_spe(vcpu);
134}
135
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600136static void kvmppc_booke_queue_irqprio(struct kvm_vcpu *vcpu,
137 unsigned int priority)
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600138{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600139 set_bit(priority, &vcpu->arch.pending_exceptions);
140}
141
Liu Yudaf5e272010-02-02 19:44:35 +0800142static void kvmppc_core_queue_dtlb_miss(struct kvm_vcpu *vcpu,
143 ulong dear_flags, ulong esr_flags)
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600144{
Liu Yudaf5e272010-02-02 19:44:35 +0800145 vcpu->arch.queued_dear = dear_flags;
146 vcpu->arch.queued_esr = esr_flags;
147 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DTLB_MISS);
148}
149
150static void kvmppc_core_queue_data_storage(struct kvm_vcpu *vcpu,
151 ulong dear_flags, ulong esr_flags)
152{
153 vcpu->arch.queued_dear = dear_flags;
154 vcpu->arch.queued_esr = esr_flags;
155 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DATA_STORAGE);
156}
157
158static void kvmppc_core_queue_inst_storage(struct kvm_vcpu *vcpu,
159 ulong esr_flags)
160{
161 vcpu->arch.queued_esr = esr_flags;
162 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_INST_STORAGE);
163}
164
165void kvmppc_core_queue_program(struct kvm_vcpu *vcpu, ulong esr_flags)
166{
167 vcpu->arch.queued_esr = esr_flags;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600168 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_PROGRAM);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600169}
170
171void kvmppc_core_queue_dec(struct kvm_vcpu *vcpu)
172{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600173 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DECREMENTER);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600174}
175
176int kvmppc_core_pending_dec(struct kvm_vcpu *vcpu)
177{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600178 return test_bit(BOOKE_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600179}
180
Alexander Graf7706664d2009-12-21 20:21:24 +0100181void kvmppc_core_dequeue_dec(struct kvm_vcpu *vcpu)
182{
183 clear_bit(BOOKE_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions);
184}
185
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600186void kvmppc_core_queue_external(struct kvm_vcpu *vcpu,
187 struct kvm_interrupt *irq)
188{
Alexander Grafc5335f12010-08-30 14:03:24 +0200189 unsigned int prio = BOOKE_IRQPRIO_EXTERNAL;
190
191 if (irq->irq == KVM_INTERRUPT_SET_LEVEL)
192 prio = BOOKE_IRQPRIO_EXTERNAL_LEVEL;
193
194 kvmppc_booke_queue_irqprio(vcpu, prio);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600195}
196
Alexander Graf4496f972010-04-07 10:03:25 +0200197void kvmppc_core_dequeue_external(struct kvm_vcpu *vcpu,
198 struct kvm_interrupt *irq)
199{
200 clear_bit(BOOKE_IRQPRIO_EXTERNAL, &vcpu->arch.pending_exceptions);
Alexander Grafc5335f12010-08-30 14:03:24 +0200201 clear_bit(BOOKE_IRQPRIO_EXTERNAL_LEVEL, &vcpu->arch.pending_exceptions);
Alexander Graf4496f972010-04-07 10:03:25 +0200202}
203
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600204/* Deliver the interrupt of the corresponding priority, if possible. */
205static int kvmppc_booke_irqprio_deliver(struct kvm_vcpu *vcpu,
206 unsigned int priority)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500207{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600208 int allowed = 0;
Asias He6045be52010-06-19 16:52:12 +0800209 ulong uninitialized_var(msr_mask);
Liu Yudaf5e272010-02-02 19:44:35 +0800210 bool update_esr = false, update_dear = false;
Alexander Graf5c6cedf2010-07-29 14:47:49 +0200211 ulong crit_raw = vcpu->arch.shared->critical;
212 ulong crit_r1 = kvmppc_get_gpr(vcpu, 1);
213 bool crit;
Alexander Grafc5335f12010-08-30 14:03:24 +0200214 bool keep_irq = false;
Alexander Graf5c6cedf2010-07-29 14:47:49 +0200215
216 /* Truncate crit indicators in 32 bit mode */
217 if (!(vcpu->arch.shared->msr & MSR_SF)) {
218 crit_raw &= 0xffffffff;
219 crit_r1 &= 0xffffffff;
220 }
221
222 /* Critical section when crit == r1 */
223 crit = (crit_raw == crit_r1);
224 /* ... and we're in supervisor mode */
225 crit = crit && !(vcpu->arch.shared->msr & MSR_PR);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500226
Alexander Grafc5335f12010-08-30 14:03:24 +0200227 if (priority == BOOKE_IRQPRIO_EXTERNAL_LEVEL) {
228 priority = BOOKE_IRQPRIO_EXTERNAL;
229 keep_irq = true;
230 }
231
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600232 switch (priority) {
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600233 case BOOKE_IRQPRIO_DTLB_MISS:
Liu Yudaf5e272010-02-02 19:44:35 +0800234 case BOOKE_IRQPRIO_DATA_STORAGE:
235 update_dear = true;
236 /* fall through */
237 case BOOKE_IRQPRIO_INST_STORAGE:
238 case BOOKE_IRQPRIO_PROGRAM:
239 update_esr = true;
240 /* fall through */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600241 case BOOKE_IRQPRIO_ITLB_MISS:
242 case BOOKE_IRQPRIO_SYSCALL:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600243 case BOOKE_IRQPRIO_FP_UNAVAIL:
Hollis Blanchardbb3a8a12009-01-03 16:23:13 -0600244 case BOOKE_IRQPRIO_SPE_UNAVAIL:
245 case BOOKE_IRQPRIO_SPE_FP_DATA:
246 case BOOKE_IRQPRIO_SPE_FP_ROUND:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600247 case BOOKE_IRQPRIO_AP_UNAVAIL:
248 case BOOKE_IRQPRIO_ALIGNMENT:
249 allowed = 1;
250 msr_mask = MSR_CE|MSR_ME|MSR_DE;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500251 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600252 case BOOKE_IRQPRIO_CRITICAL:
253 case BOOKE_IRQPRIO_WATCHDOG:
Alexander Graf666e7252010-07-29 14:47:43 +0200254 allowed = vcpu->arch.shared->msr & MSR_CE;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600255 msr_mask = MSR_ME;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500256 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600257 case BOOKE_IRQPRIO_MACHINE_CHECK:
Alexander Graf666e7252010-07-29 14:47:43 +0200258 allowed = vcpu->arch.shared->msr & MSR_ME;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600259 msr_mask = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500260 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600261 case BOOKE_IRQPRIO_EXTERNAL:
262 case BOOKE_IRQPRIO_DECREMENTER:
263 case BOOKE_IRQPRIO_FIT:
Alexander Graf666e7252010-07-29 14:47:43 +0200264 allowed = vcpu->arch.shared->msr & MSR_EE;
Alexander Graf5c6cedf2010-07-29 14:47:49 +0200265 allowed = allowed && !crit;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600266 msr_mask = MSR_CE|MSR_ME|MSR_DE;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500267 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600268 case BOOKE_IRQPRIO_DEBUG:
Alexander Graf666e7252010-07-29 14:47:43 +0200269 allowed = vcpu->arch.shared->msr & MSR_DE;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600270 msr_mask = MSR_ME;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500271 break;
272 }
273
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600274 if (allowed) {
Alexander Grafde7906c2010-07-29 14:47:46 +0200275 vcpu->arch.shared->srr0 = vcpu->arch.pc;
276 vcpu->arch.shared->srr1 = vcpu->arch.shared->msr;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600277 vcpu->arch.pc = vcpu->arch.ivpr | vcpu->arch.ivor[priority];
Liu Yudaf5e272010-02-02 19:44:35 +0800278 if (update_esr == true)
279 vcpu->arch.esr = vcpu->arch.queued_esr;
280 if (update_dear == true)
Alexander Graf5e030182010-07-29 14:47:45 +0200281 vcpu->arch.shared->dar = vcpu->arch.queued_dear;
Alexander Graf666e7252010-07-29 14:47:43 +0200282 kvmppc_set_msr(vcpu, vcpu->arch.shared->msr & msr_mask);
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600283
Alexander Grafc5335f12010-08-30 14:03:24 +0200284 if (!keep_irq)
285 clear_bit(priority, &vcpu->arch.pending_exceptions);
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600286 }
287
288 return allowed;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500289}
290
291/* Check pending exceptions and deliver one, if possible. */
Scott Wood7e28e60e2011-11-08 18:23:20 -0600292void kvmppc_core_prepare_to_enter(struct kvm_vcpu *vcpu)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500293{
294 unsigned long *pending = &vcpu->arch.pending_exceptions;
Alexander Graf90bba352010-07-29 14:47:51 +0200295 unsigned long old_pending = vcpu->arch.pending_exceptions;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500296 unsigned int priority;
297
Hollis Blanchard9ab80842008-11-05 09:36:22 -0600298 priority = __ffs(*pending);
Hollis Blanchardbdc89f12009-01-03 16:23:12 -0600299 while (priority <= BOOKE_IRQPRIO_MAX) {
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600300 if (kvmppc_booke_irqprio_deliver(vcpu, priority))
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500301 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500302
303 priority = find_next_bit(pending,
304 BITS_PER_BYTE * sizeof(*pending),
305 priority + 1);
306 }
Alexander Graf90bba352010-07-29 14:47:51 +0200307
308 /* Tell the guest about our interrupt status */
309 if (*pending)
310 vcpu->arch.shared->int_pending = 1;
311 else if (old_pending)
312 vcpu->arch.shared->int_pending = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500313}
314
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000315int kvmppc_vcpu_run(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
316{
317 int ret;
318
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200319 if (!vcpu->arch.sane) {
320 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
321 return -EINVAL;
322 }
323
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000324 local_irq_disable();
Scott Wood1d1ef222011-11-08 16:11:59 -0600325
326 if (signal_pending(current)) {
327 kvm_run->exit_reason = KVM_EXIT_INTR;
328 ret = -EINTR;
329 goto out;
330 }
331
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000332 kvm_guest_enter();
333 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
334 kvm_guest_exit();
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000335
Scott Wood1d1ef222011-11-08 16:11:59 -0600336out:
337 local_irq_enable();
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000338 return ret;
339}
340
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500341/**
342 * kvmppc_handle_exit
343 *
344 * Return value is in the form (errcode<<2 | RESUME_FLAG_HOST | RESUME_FLAG_NV)
345 */
346int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu,
347 unsigned int exit_nr)
348{
349 enum emulation_result er;
350 int r = RESUME_HOST;
351
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600352 /* update before a new last_exit_type is rewritten */
353 kvmppc_update_timing_stats(vcpu);
354
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500355 local_irq_enable();
356
357 run->exit_reason = KVM_EXIT_UNKNOWN;
358 run->ready_for_interrupt_injection = 1;
359
360 switch (exit_nr) {
361 case BOOKE_INTERRUPT_MACHINE_CHECK:
362 printk("MACHINE CHECK: %lx\n", mfspr(SPRN_MCSR));
363 kvmppc_dump_vcpu(vcpu);
364 r = RESUME_HOST;
365 break;
366
367 case BOOKE_INTERRUPT_EXTERNAL:
Hollis Blanchard7b701592008-12-02 15:51:58 -0600368 kvmppc_account_exit(vcpu, EXT_INTR_EXITS);
Hollis Blanchard1b6766c2008-11-05 09:36:21 -0600369 if (need_resched())
370 cond_resched();
371 r = RESUME_GUEST;
372 break;
373
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500374 case BOOKE_INTERRUPT_DECREMENTER:
375 /* Since we switched IVPR back to the host's value, the host
376 * handled this interrupt the moment we enabled interrupts.
377 * Now we just offer it a chance to reschedule the guest. */
Hollis Blanchard7b701592008-12-02 15:51:58 -0600378 kvmppc_account_exit(vcpu, DEC_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500379 if (need_resched())
380 cond_resched();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500381 r = RESUME_GUEST;
382 break;
383
384 case BOOKE_INTERRUPT_PROGRAM:
Alexander Graf666e7252010-07-29 14:47:43 +0200385 if (vcpu->arch.shared->msr & MSR_PR) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500386 /* Program traps generated by user-level software must be handled
387 * by the guest kernel. */
Liu Yudaf5e272010-02-02 19:44:35 +0800388 kvmppc_core_queue_program(vcpu, vcpu->arch.fault_esr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500389 r = RESUME_GUEST;
Hollis Blanchard7b701592008-12-02 15:51:58 -0600390 kvmppc_account_exit(vcpu, USR_PR_INST);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500391 break;
392 }
393
394 er = kvmppc_emulate_instruction(run, vcpu);
395 switch (er) {
396 case EMULATE_DONE:
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600397 /* don't overwrite subtypes, just account kvm_stats */
Hollis Blanchard7b701592008-12-02 15:51:58 -0600398 kvmppc_account_exit_stat(vcpu, EMULATED_INST_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500399 /* Future optimization: only reload non-volatiles if
400 * they were actually modified by emulation. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500401 r = RESUME_GUEST_NV;
402 break;
403 case EMULATE_DO_DCR:
404 run->exit_reason = KVM_EXIT_DCR;
405 r = RESUME_HOST;
406 break;
407 case EMULATE_FAIL:
408 /* XXX Deliver Program interrupt to guest. */
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -0600409 printk(KERN_CRIT "%s: emulation at %lx failed (%08x)\n",
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500410 __func__, vcpu->arch.pc, vcpu->arch.last_inst);
411 /* For debugging, encode the failing instruction and
412 * report it to userspace. */
413 run->hw.hardware_exit_reason = ~0ULL << 32;
414 run->hw.hardware_exit_reason |= vcpu->arch.last_inst;
415 r = RESUME_HOST;
416 break;
417 default:
418 BUG();
419 }
420 break;
421
Christian Ehrhardtde368dc2008-04-29 18:18:23 +0200422 case BOOKE_INTERRUPT_FP_UNAVAIL:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600423 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_FP_UNAVAIL);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600424 kvmppc_account_exit(vcpu, FP_UNAVAIL);
Christian Ehrhardtde368dc2008-04-29 18:18:23 +0200425 r = RESUME_GUEST;
426 break;
427
Scott Wood4cd35f62011-06-14 18:34:31 -0500428#ifdef CONFIG_SPE
429 case BOOKE_INTERRUPT_SPE_UNAVAIL: {
430 if (vcpu->arch.shared->msr & MSR_SPE)
431 kvmppc_vcpu_enable_spe(vcpu);
432 else
433 kvmppc_booke_queue_irqprio(vcpu,
434 BOOKE_IRQPRIO_SPE_UNAVAIL);
Hollis Blanchardbb3a8a12009-01-03 16:23:13 -0600435 r = RESUME_GUEST;
436 break;
Scott Wood4cd35f62011-06-14 18:34:31 -0500437 }
Hollis Blanchardbb3a8a12009-01-03 16:23:13 -0600438
439 case BOOKE_INTERRUPT_SPE_FP_DATA:
440 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SPE_FP_DATA);
441 r = RESUME_GUEST;
442 break;
443
444 case BOOKE_INTERRUPT_SPE_FP_ROUND:
445 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SPE_FP_ROUND);
446 r = RESUME_GUEST;
447 break;
Scott Wood4cd35f62011-06-14 18:34:31 -0500448#else
449 case BOOKE_INTERRUPT_SPE_UNAVAIL:
450 /*
451 * Guest wants SPE, but host kernel doesn't support it. Send
452 * an "unimplemented operation" program check to the guest.
453 */
454 kvmppc_core_queue_program(vcpu, ESR_PUO | ESR_SPV);
455 r = RESUME_GUEST;
456 break;
457
458 /*
459 * These really should never happen without CONFIG_SPE,
460 * as we should never enable the real MSR[SPE] in the guest.
461 */
462 case BOOKE_INTERRUPT_SPE_FP_DATA:
463 case BOOKE_INTERRUPT_SPE_FP_ROUND:
464 printk(KERN_CRIT "%s: unexpected SPE interrupt %u at %08lx\n",
465 __func__, exit_nr, vcpu->arch.pc);
466 run->hw.hardware_exit_reason = exit_nr;
467 r = RESUME_HOST;
468 break;
469#endif
Hollis Blanchardbb3a8a12009-01-03 16:23:13 -0600470
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500471 case BOOKE_INTERRUPT_DATA_STORAGE:
Liu Yudaf5e272010-02-02 19:44:35 +0800472 kvmppc_core_queue_data_storage(vcpu, vcpu->arch.fault_dear,
473 vcpu->arch.fault_esr);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600474 kvmppc_account_exit(vcpu, DSI_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500475 r = RESUME_GUEST;
476 break;
477
478 case BOOKE_INTERRUPT_INST_STORAGE:
Liu Yudaf5e272010-02-02 19:44:35 +0800479 kvmppc_core_queue_inst_storage(vcpu, vcpu->arch.fault_esr);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600480 kvmppc_account_exit(vcpu, ISI_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500481 r = RESUME_GUEST;
482 break;
483
484 case BOOKE_INTERRUPT_SYSCALL:
Alexander Graf2a342ed2010-07-29 14:47:48 +0200485 if (!(vcpu->arch.shared->msr & MSR_PR) &&
486 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
487 /* KVM PV hypercalls */
488 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
489 r = RESUME_GUEST;
490 } else {
491 /* Guest syscalls */
492 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SYSCALL);
493 }
Hollis Blanchard7b701592008-12-02 15:51:58 -0600494 kvmppc_account_exit(vcpu, SYSCALL_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500495 r = RESUME_GUEST;
496 break;
497
498 case BOOKE_INTERRUPT_DTLB_MISS: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500499 unsigned long eaddr = vcpu->arch.fault_dear;
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600500 int gtlb_index;
Hollis Blanchard475e7cd2009-01-03 16:23:00 -0600501 gpa_t gpaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500502 gfn_t gfn;
503
Scott Wooda4cd8b22011-06-14 18:34:41 -0500504#ifdef CONFIG_KVM_E500
505 if (!(vcpu->arch.shared->msr & MSR_PR) &&
506 (eaddr & PAGE_MASK) == vcpu->arch.magic_page_ea) {
507 kvmppc_map_magic(vcpu);
508 kvmppc_account_exit(vcpu, DTLB_VIRT_MISS_EXITS);
509 r = RESUME_GUEST;
510
511 break;
512 }
513#endif
514
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500515 /* Check the guest TLB. */
Hollis Blanchardfa86b8d2009-01-03 16:23:03 -0600516 gtlb_index = kvmppc_mmu_dtlb_index(vcpu, eaddr);
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600517 if (gtlb_index < 0) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500518 /* The guest didn't have a mapping for it. */
Liu Yudaf5e272010-02-02 19:44:35 +0800519 kvmppc_core_queue_dtlb_miss(vcpu,
520 vcpu->arch.fault_dear,
521 vcpu->arch.fault_esr);
Hollis Blanchardb52a6382009-01-03 16:23:11 -0600522 kvmppc_mmu_dtlb_miss(vcpu);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600523 kvmppc_account_exit(vcpu, DTLB_REAL_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500524 r = RESUME_GUEST;
525 break;
526 }
527
Hollis Blanchardbe8d1ca2009-01-03 16:23:02 -0600528 gpaddr = kvmppc_mmu_xlate(vcpu, gtlb_index, eaddr);
Hollis Blanchard475e7cd2009-01-03 16:23:00 -0600529 gfn = gpaddr >> PAGE_SHIFT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500530
531 if (kvm_is_visible_gfn(vcpu->kvm, gfn)) {
532 /* The guest TLB had a mapping, but the shadow TLB
533 * didn't, and it is RAM. This could be because:
534 * a) the entry is mapping the host kernel, or
535 * b) the guest used a large mapping which we're faking
536 * Either way, we need to satisfy the fault without
537 * invoking the guest. */
Hollis Blanchard58a96212009-01-03 16:23:01 -0600538 kvmppc_mmu_map(vcpu, eaddr, gpaddr, gtlb_index);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600539 kvmppc_account_exit(vcpu, DTLB_VIRT_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500540 r = RESUME_GUEST;
541 } else {
542 /* Guest has mapped and accessed a page which is not
543 * actually RAM. */
Hollis Blanchard475e7cd2009-01-03 16:23:00 -0600544 vcpu->arch.paddr_accessed = gpaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500545 r = kvmppc_emulate_mmio(run, vcpu);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600546 kvmppc_account_exit(vcpu, MMIO_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500547 }
548
549 break;
550 }
551
552 case BOOKE_INTERRUPT_ITLB_MISS: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500553 unsigned long eaddr = vcpu->arch.pc;
Hollis Blanchard89168612008-12-02 15:51:53 -0600554 gpa_t gpaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500555 gfn_t gfn;
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600556 int gtlb_index;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500557
558 r = RESUME_GUEST;
559
560 /* Check the guest TLB. */
Hollis Blanchardfa86b8d2009-01-03 16:23:03 -0600561 gtlb_index = kvmppc_mmu_itlb_index(vcpu, eaddr);
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600562 if (gtlb_index < 0) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500563 /* The guest didn't have a mapping for it. */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600564 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_ITLB_MISS);
Hollis Blanchardb52a6382009-01-03 16:23:11 -0600565 kvmppc_mmu_itlb_miss(vcpu);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600566 kvmppc_account_exit(vcpu, ITLB_REAL_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500567 break;
568 }
569
Hollis Blanchard7b701592008-12-02 15:51:58 -0600570 kvmppc_account_exit(vcpu, ITLB_VIRT_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500571
Hollis Blanchardbe8d1ca2009-01-03 16:23:02 -0600572 gpaddr = kvmppc_mmu_xlate(vcpu, gtlb_index, eaddr);
Hollis Blanchard89168612008-12-02 15:51:53 -0600573 gfn = gpaddr >> PAGE_SHIFT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500574
575 if (kvm_is_visible_gfn(vcpu->kvm, gfn)) {
576 /* The guest TLB had a mapping, but the shadow TLB
577 * didn't. This could be because:
578 * a) the entry is mapping the host kernel, or
579 * b) the guest used a large mapping which we're faking
580 * Either way, we need to satisfy the fault without
581 * invoking the guest. */
Hollis Blanchard58a96212009-01-03 16:23:01 -0600582 kvmppc_mmu_map(vcpu, eaddr, gpaddr, gtlb_index);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500583 } else {
584 /* Guest mapped and leaped at non-RAM! */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600585 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_MACHINE_CHECK);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500586 }
587
588 break;
589 }
590
Hollis Blanchard6a0ab732008-07-25 13:54:49 -0500591 case BOOKE_INTERRUPT_DEBUG: {
592 u32 dbsr;
593
594 vcpu->arch.pc = mfspr(SPRN_CSRR0);
595
596 /* clear IAC events in DBSR register */
597 dbsr = mfspr(SPRN_DBSR);
598 dbsr &= DBSR_IAC1 | DBSR_IAC2 | DBSR_IAC3 | DBSR_IAC4;
599 mtspr(SPRN_DBSR, dbsr);
600
601 run->exit_reason = KVM_EXIT_DEBUG;
Hollis Blanchard7b701592008-12-02 15:51:58 -0600602 kvmppc_account_exit(vcpu, DEBUG_EXITS);
Hollis Blanchard6a0ab732008-07-25 13:54:49 -0500603 r = RESUME_HOST;
604 break;
605 }
606
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500607 default:
608 printk(KERN_EMERG "exit_nr %d\n", exit_nr);
609 BUG();
610 }
611
612 local_irq_disable();
613
Scott Wood7e28e60e2011-11-08 18:23:20 -0600614 kvmppc_core_prepare_to_enter(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500615
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500616 if (!(r & RESUME_HOST)) {
617 /* To avoid clobbering exit_reason, only check for signals if
618 * we aren't already exiting to userspace for some other
619 * reason. */
620 if (signal_pending(current)) {
621 run->exit_reason = KVM_EXIT_INTR;
622 r = (-EINTR << 2) | RESUME_HOST | (r & RESUME_FLAG_NV);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600623 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500624 }
625 }
626
627 return r;
628}
629
630/* Initial guest state: 16MB mapping 0 -> 0, PC = 0, MSR = 0, R1 = 16MB */
631int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
632{
Hollis Blanchard082decf2010-08-07 10:33:56 -0700633 int i;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200634 int r;
Hollis Blanchard082decf2010-08-07 10:33:56 -0700635
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500636 vcpu->arch.pc = 0;
Alexander Graf666e7252010-07-29 14:47:43 +0200637 vcpu->arch.shared->msr = 0;
Scott Woodecee2732011-06-14 18:34:29 -0500638 vcpu->arch.shadow_msr = MSR_USER | MSR_DE | MSR_IS | MSR_DS;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100639 kvmppc_set_gpr(vcpu, 1, (16<<20) - 8); /* -8 for the callee-save LR slot */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500640
Hollis Blanchard49dd2c42008-07-25 13:54:53 -0500641 vcpu->arch.shadow_pid = 1;
642
Hollis Blanchard082decf2010-08-07 10:33:56 -0700643 /* Eye-catching numbers so we know if the guest takes an interrupt
644 * before it's programmed its own IVPR/IVORs. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500645 vcpu->arch.ivpr = 0x55550000;
Hollis Blanchard082decf2010-08-07 10:33:56 -0700646 for (i = 0; i < BOOKE_IRQPRIO_MAX; i++)
647 vcpu->arch.ivor[i] = 0x7700 | i * 4;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500648
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600649 kvmppc_init_timing_stats(vcpu);
650
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200651 r = kvmppc_core_vcpu_setup(vcpu);
652 kvmppc_sanity_check(vcpu);
653 return r;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500654}
655
656int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
657{
658 int i;
659
660 regs->pc = vcpu->arch.pc;
Alexander Graf992b5b22010-01-08 02:58:02 +0100661 regs->cr = kvmppc_get_cr(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500662 regs->ctr = vcpu->arch.ctr;
663 regs->lr = vcpu->arch.lr;
Alexander Graf992b5b22010-01-08 02:58:02 +0100664 regs->xer = kvmppc_get_xer(vcpu);
Alexander Graf666e7252010-07-29 14:47:43 +0200665 regs->msr = vcpu->arch.shared->msr;
Alexander Grafde7906c2010-07-29 14:47:46 +0200666 regs->srr0 = vcpu->arch.shared->srr0;
667 regs->srr1 = vcpu->arch.shared->srr1;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500668 regs->pid = vcpu->arch.pid;
Alexander Grafa73a9592010-07-29 14:47:47 +0200669 regs->sprg0 = vcpu->arch.shared->sprg0;
670 regs->sprg1 = vcpu->arch.shared->sprg1;
671 regs->sprg2 = vcpu->arch.shared->sprg2;
672 regs->sprg3 = vcpu->arch.shared->sprg3;
Peter Tyserbc9c1932010-12-29 13:51:25 -0600673 regs->sprg4 = vcpu->arch.sprg4;
674 regs->sprg5 = vcpu->arch.sprg5;
675 regs->sprg6 = vcpu->arch.sprg6;
676 regs->sprg7 = vcpu->arch.sprg7;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500677
678 for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100679 regs->gpr[i] = kvmppc_get_gpr(vcpu, i);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500680
681 return 0;
682}
683
684int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
685{
686 int i;
687
688 vcpu->arch.pc = regs->pc;
Alexander Graf992b5b22010-01-08 02:58:02 +0100689 kvmppc_set_cr(vcpu, regs->cr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500690 vcpu->arch.ctr = regs->ctr;
691 vcpu->arch.lr = regs->lr;
Alexander Graf992b5b22010-01-08 02:58:02 +0100692 kvmppc_set_xer(vcpu, regs->xer);
Hollis Blanchardb8fd68a2008-11-05 09:36:20 -0600693 kvmppc_set_msr(vcpu, regs->msr);
Alexander Grafde7906c2010-07-29 14:47:46 +0200694 vcpu->arch.shared->srr0 = regs->srr0;
695 vcpu->arch.shared->srr1 = regs->srr1;
Scott Wood5ce941e2011-04-27 17:24:21 -0500696 kvmppc_set_pid(vcpu, regs->pid);
Alexander Grafa73a9592010-07-29 14:47:47 +0200697 vcpu->arch.shared->sprg0 = regs->sprg0;
698 vcpu->arch.shared->sprg1 = regs->sprg1;
699 vcpu->arch.shared->sprg2 = regs->sprg2;
700 vcpu->arch.shared->sprg3 = regs->sprg3;
Peter Tyserbc9c1932010-12-29 13:51:25 -0600701 vcpu->arch.sprg4 = regs->sprg4;
702 vcpu->arch.sprg5 = regs->sprg5;
703 vcpu->arch.sprg6 = regs->sprg6;
704 vcpu->arch.sprg7 = regs->sprg7;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500705
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100706 for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
707 kvmppc_set_gpr(vcpu, i, regs->gpr[i]);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500708
709 return 0;
710}
711
Scott Wood5ce941e2011-04-27 17:24:21 -0500712static void get_sregs_base(struct kvm_vcpu *vcpu,
713 struct kvm_sregs *sregs)
714{
715 u64 tb = get_tb();
716
717 sregs->u.e.features |= KVM_SREGS_E_BASE;
718
719 sregs->u.e.csrr0 = vcpu->arch.csrr0;
720 sregs->u.e.csrr1 = vcpu->arch.csrr1;
721 sregs->u.e.mcsr = vcpu->arch.mcsr;
722 sregs->u.e.esr = vcpu->arch.esr;
723 sregs->u.e.dear = vcpu->arch.shared->dar;
724 sregs->u.e.tsr = vcpu->arch.tsr;
725 sregs->u.e.tcr = vcpu->arch.tcr;
726 sregs->u.e.dec = kvmppc_get_dec(vcpu, tb);
727 sregs->u.e.tb = tb;
728 sregs->u.e.vrsave = vcpu->arch.vrsave;
729}
730
731static int set_sregs_base(struct kvm_vcpu *vcpu,
732 struct kvm_sregs *sregs)
733{
734 if (!(sregs->u.e.features & KVM_SREGS_E_BASE))
735 return 0;
736
737 vcpu->arch.csrr0 = sregs->u.e.csrr0;
738 vcpu->arch.csrr1 = sregs->u.e.csrr1;
739 vcpu->arch.mcsr = sregs->u.e.mcsr;
740 vcpu->arch.esr = sregs->u.e.esr;
741 vcpu->arch.shared->dar = sregs->u.e.dear;
742 vcpu->arch.vrsave = sregs->u.e.vrsave;
743 vcpu->arch.tcr = sregs->u.e.tcr;
744
745 if (sregs->u.e.update_special & KVM_SREGS_E_UPDATE_DEC)
746 vcpu->arch.dec = sregs->u.e.dec;
747
748 kvmppc_emulate_dec(vcpu);
749
750 if (sregs->u.e.update_special & KVM_SREGS_E_UPDATE_TSR) {
751 /*
752 * FIXME: existing KVM timer handling is incomplete.
753 * TSR cannot be read by the guest, and its value in
754 * vcpu->arch is always zero. For now, just handle
755 * the case where the caller is trying to inject a
756 * decrementer interrupt.
757 */
758
759 if ((sregs->u.e.tsr & TSR_DIS) &&
760 (vcpu->arch.tcr & TCR_DIE))
761 kvmppc_core_queue_dec(vcpu);
762 }
763
764 return 0;
765}
766
767static void get_sregs_arch206(struct kvm_vcpu *vcpu,
768 struct kvm_sregs *sregs)
769{
770 sregs->u.e.features |= KVM_SREGS_E_ARCH206;
771
Scott Wood841741f2011-09-02 17:39:37 -0500772 sregs->u.e.pir = vcpu->vcpu_id;
Scott Wood5ce941e2011-04-27 17:24:21 -0500773 sregs->u.e.mcsrr0 = vcpu->arch.mcsrr0;
774 sregs->u.e.mcsrr1 = vcpu->arch.mcsrr1;
775 sregs->u.e.decar = vcpu->arch.decar;
776 sregs->u.e.ivpr = vcpu->arch.ivpr;
777}
778
779static int set_sregs_arch206(struct kvm_vcpu *vcpu,
780 struct kvm_sregs *sregs)
781{
782 if (!(sregs->u.e.features & KVM_SREGS_E_ARCH206))
783 return 0;
784
Scott Wood841741f2011-09-02 17:39:37 -0500785 if (sregs->u.e.pir != vcpu->vcpu_id)
Scott Wood5ce941e2011-04-27 17:24:21 -0500786 return -EINVAL;
787
788 vcpu->arch.mcsrr0 = sregs->u.e.mcsrr0;
789 vcpu->arch.mcsrr1 = sregs->u.e.mcsrr1;
790 vcpu->arch.decar = sregs->u.e.decar;
791 vcpu->arch.ivpr = sregs->u.e.ivpr;
792
793 return 0;
794}
795
796void kvmppc_get_sregs_ivor(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
797{
798 sregs->u.e.features |= KVM_SREGS_E_IVOR;
799
800 sregs->u.e.ivor_low[0] = vcpu->arch.ivor[BOOKE_IRQPRIO_CRITICAL];
801 sregs->u.e.ivor_low[1] = vcpu->arch.ivor[BOOKE_IRQPRIO_MACHINE_CHECK];
802 sregs->u.e.ivor_low[2] = vcpu->arch.ivor[BOOKE_IRQPRIO_DATA_STORAGE];
803 sregs->u.e.ivor_low[3] = vcpu->arch.ivor[BOOKE_IRQPRIO_INST_STORAGE];
804 sregs->u.e.ivor_low[4] = vcpu->arch.ivor[BOOKE_IRQPRIO_EXTERNAL];
805 sregs->u.e.ivor_low[5] = vcpu->arch.ivor[BOOKE_IRQPRIO_ALIGNMENT];
806 sregs->u.e.ivor_low[6] = vcpu->arch.ivor[BOOKE_IRQPRIO_PROGRAM];
807 sregs->u.e.ivor_low[7] = vcpu->arch.ivor[BOOKE_IRQPRIO_FP_UNAVAIL];
808 sregs->u.e.ivor_low[8] = vcpu->arch.ivor[BOOKE_IRQPRIO_SYSCALL];
809 sregs->u.e.ivor_low[9] = vcpu->arch.ivor[BOOKE_IRQPRIO_AP_UNAVAIL];
810 sregs->u.e.ivor_low[10] = vcpu->arch.ivor[BOOKE_IRQPRIO_DECREMENTER];
811 sregs->u.e.ivor_low[11] = vcpu->arch.ivor[BOOKE_IRQPRIO_FIT];
812 sregs->u.e.ivor_low[12] = vcpu->arch.ivor[BOOKE_IRQPRIO_WATCHDOG];
813 sregs->u.e.ivor_low[13] = vcpu->arch.ivor[BOOKE_IRQPRIO_DTLB_MISS];
814 sregs->u.e.ivor_low[14] = vcpu->arch.ivor[BOOKE_IRQPRIO_ITLB_MISS];
815 sregs->u.e.ivor_low[15] = vcpu->arch.ivor[BOOKE_IRQPRIO_DEBUG];
816}
817
818int kvmppc_set_sregs_ivor(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
819{
820 if (!(sregs->u.e.features & KVM_SREGS_E_IVOR))
821 return 0;
822
823 vcpu->arch.ivor[BOOKE_IRQPRIO_CRITICAL] = sregs->u.e.ivor_low[0];
824 vcpu->arch.ivor[BOOKE_IRQPRIO_MACHINE_CHECK] = sregs->u.e.ivor_low[1];
825 vcpu->arch.ivor[BOOKE_IRQPRIO_DATA_STORAGE] = sregs->u.e.ivor_low[2];
826 vcpu->arch.ivor[BOOKE_IRQPRIO_INST_STORAGE] = sregs->u.e.ivor_low[3];
827 vcpu->arch.ivor[BOOKE_IRQPRIO_EXTERNAL] = sregs->u.e.ivor_low[4];
828 vcpu->arch.ivor[BOOKE_IRQPRIO_ALIGNMENT] = sregs->u.e.ivor_low[5];
829 vcpu->arch.ivor[BOOKE_IRQPRIO_PROGRAM] = sregs->u.e.ivor_low[6];
830 vcpu->arch.ivor[BOOKE_IRQPRIO_FP_UNAVAIL] = sregs->u.e.ivor_low[7];
831 vcpu->arch.ivor[BOOKE_IRQPRIO_SYSCALL] = sregs->u.e.ivor_low[8];
832 vcpu->arch.ivor[BOOKE_IRQPRIO_AP_UNAVAIL] = sregs->u.e.ivor_low[9];
833 vcpu->arch.ivor[BOOKE_IRQPRIO_DECREMENTER] = sregs->u.e.ivor_low[10];
834 vcpu->arch.ivor[BOOKE_IRQPRIO_FIT] = sregs->u.e.ivor_low[11];
835 vcpu->arch.ivor[BOOKE_IRQPRIO_WATCHDOG] = sregs->u.e.ivor_low[12];
836 vcpu->arch.ivor[BOOKE_IRQPRIO_DTLB_MISS] = sregs->u.e.ivor_low[13];
837 vcpu->arch.ivor[BOOKE_IRQPRIO_ITLB_MISS] = sregs->u.e.ivor_low[14];
838 vcpu->arch.ivor[BOOKE_IRQPRIO_DEBUG] = sregs->u.e.ivor_low[15];
839
840 return 0;
841}
842
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500843int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
844 struct kvm_sregs *sregs)
845{
Scott Wood5ce941e2011-04-27 17:24:21 -0500846 sregs->pvr = vcpu->arch.pvr;
847
848 get_sregs_base(vcpu, sregs);
849 get_sregs_arch206(vcpu, sregs);
850 kvmppc_core_get_sregs(vcpu, sregs);
851 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500852}
853
854int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
855 struct kvm_sregs *sregs)
856{
Scott Wood5ce941e2011-04-27 17:24:21 -0500857 int ret;
858
859 if (vcpu->arch.pvr != sregs->pvr)
860 return -EINVAL;
861
862 ret = set_sregs_base(vcpu, sregs);
863 if (ret < 0)
864 return ret;
865
866 ret = set_sregs_arch206(vcpu, sregs);
867 if (ret < 0)
868 return ret;
869
870 return kvmppc_core_set_sregs(vcpu, sregs);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500871}
872
873int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
874{
875 return -ENOTSUPP;
876}
877
878int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
879{
880 return -ENOTSUPP;
881}
882
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500883int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
884 struct kvm_translation *tr)
885{
Avi Kivity98001d82010-05-13 11:05:49 +0300886 int r;
887
Avi Kivity98001d82010-05-13 11:05:49 +0300888 r = kvmppc_core_vcpu_translate(vcpu, tr);
Avi Kivity98001d82010-05-13 11:05:49 +0300889 return r;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500890}
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600891
Alexander Graf4e755752009-10-30 05:47:01 +0000892int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
893{
894 return -ENOTSUPP;
895}
896
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000897int kvmppc_core_prepare_memory_region(struct kvm *kvm,
898 struct kvm_userspace_memory_region *mem)
899{
900 return 0;
901}
902
903void kvmppc_core_commit_memory_region(struct kvm *kvm,
904 struct kvm_userspace_memory_region *mem)
905{
906}
907
908int kvmppc_core_init_vm(struct kvm *kvm)
909{
910 return 0;
911}
912
913void kvmppc_core_destroy_vm(struct kvm *kvm)
914{
915}
916
Stephen Rothwell2986b8c2009-06-02 11:46:14 +1000917int __init kvmppc_booke_init(void)
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600918{
919 unsigned long ivor[16];
920 unsigned long max_ivor = 0;
921 int i;
922
923 /* We install our own exception handlers by hijacking IVPR. IVPR must
924 * be 16-bit aligned, so we need a 64KB allocation. */
925 kvmppc_booke_handlers = __get_free_pages(GFP_KERNEL | __GFP_ZERO,
926 VCPU_SIZE_ORDER);
927 if (!kvmppc_booke_handlers)
928 return -ENOMEM;
929
930 /* XXX make sure our handlers are smaller than Linux's */
931
932 /* Copy our interrupt handlers to match host IVORs. That way we don't
933 * have to swap the IVORs on every guest/host transition. */
934 ivor[0] = mfspr(SPRN_IVOR0);
935 ivor[1] = mfspr(SPRN_IVOR1);
936 ivor[2] = mfspr(SPRN_IVOR2);
937 ivor[3] = mfspr(SPRN_IVOR3);
938 ivor[4] = mfspr(SPRN_IVOR4);
939 ivor[5] = mfspr(SPRN_IVOR5);
940 ivor[6] = mfspr(SPRN_IVOR6);
941 ivor[7] = mfspr(SPRN_IVOR7);
942 ivor[8] = mfspr(SPRN_IVOR8);
943 ivor[9] = mfspr(SPRN_IVOR9);
944 ivor[10] = mfspr(SPRN_IVOR10);
945 ivor[11] = mfspr(SPRN_IVOR11);
946 ivor[12] = mfspr(SPRN_IVOR12);
947 ivor[13] = mfspr(SPRN_IVOR13);
948 ivor[14] = mfspr(SPRN_IVOR14);
949 ivor[15] = mfspr(SPRN_IVOR15);
950
951 for (i = 0; i < 16; i++) {
952 if (ivor[i] > max_ivor)
953 max_ivor = ivor[i];
954
955 memcpy((void *)kvmppc_booke_handlers + ivor[i],
956 kvmppc_handlers_start + i * kvmppc_handler_len,
957 kvmppc_handler_len);
958 }
959 flush_icache_range(kvmppc_booke_handlers,
960 kvmppc_booke_handlers + max_ivor + kvmppc_handler_len);
961
Hollis Blancharddb93f572008-11-05 09:36:18 -0600962 return 0;
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600963}
964
Hollis Blancharddb93f572008-11-05 09:36:18 -0600965void __exit kvmppc_booke_exit(void)
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600966{
967 free_pages(kvmppc_booke_handlers, VCPU_SIZE_ORDER);
968 kvm_exit();
969}