blob: 1e692ac16e992bca3d9bf676197ffff09a2d8313 [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>
26#include <linux/fs.h>
Hollis Blanchard7924bd42008-12-02 15:51:55 -060027
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050028#include <asm/cputable.h>
29#include <asm/uaccess.h>
30#include <asm/kvm_ppc.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060031#include "timing.h"
Hollis Blanchardd9fbd032008-11-05 09:36:13 -060032#include <asm/cacheflush.h>
Hollis Blanchard7924bd42008-12-02 15:51:55 -060033#include <asm/kvm_44x.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050034
Hollis Blanchard75f74f02008-11-05 09:36:16 -060035#include "booke.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050036#include "44x_tlb.h"
37
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
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -060066 printk("pc: %08lx msr: %08lx\n", vcpu->arch.pc, vcpu->arch.msr);
67 printk("lr: %08lx ctr: %08lx\n", vcpu->arch.lr, vcpu->arch.ctr);
68 printk("srr0: %08lx srr1: %08lx\n", vcpu->arch.srr0, vcpu->arch.srr1);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050069
70 printk("exceptions: %08lx\n", vcpu->arch.pending_exceptions);
71
72 for (i = 0; i < 32; i += 4) {
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -060073 printk("gpr%02d: %08lx %08lx %08lx %08lx\n", i,
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050074 vcpu->arch.gpr[i],
75 vcpu->arch.gpr[i+1],
76 vcpu->arch.gpr[i+2],
77 vcpu->arch.gpr[i+3]);
78 }
79}
80
Hollis Blanchardd4cf3892008-11-05 09:36:23 -060081static void kvmppc_booke_queue_irqprio(struct kvm_vcpu *vcpu,
82 unsigned int priority)
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060083{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060084 set_bit(priority, &vcpu->arch.pending_exceptions);
85}
86
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060087void kvmppc_core_queue_program(struct kvm_vcpu *vcpu)
88{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -060089 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_PROGRAM);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060090}
91
92void kvmppc_core_queue_dec(struct kvm_vcpu *vcpu)
93{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -060094 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DECREMENTER);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060095}
96
97int kvmppc_core_pending_dec(struct kvm_vcpu *vcpu)
98{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -060099 return test_bit(BOOKE_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600100}
101
102void kvmppc_core_queue_external(struct kvm_vcpu *vcpu,
103 struct kvm_interrupt *irq)
104{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600105 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_EXTERNAL);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600106}
107
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600108/* Deliver the interrupt of the corresponding priority, if possible. */
109static int kvmppc_booke_irqprio_deliver(struct kvm_vcpu *vcpu,
110 unsigned int priority)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500111{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600112 int allowed = 0;
113 ulong msr_mask;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500114
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600115 switch (priority) {
116 case BOOKE_IRQPRIO_PROGRAM:
117 case BOOKE_IRQPRIO_DTLB_MISS:
118 case BOOKE_IRQPRIO_ITLB_MISS:
119 case BOOKE_IRQPRIO_SYSCALL:
120 case BOOKE_IRQPRIO_DATA_STORAGE:
121 case BOOKE_IRQPRIO_INST_STORAGE:
122 case BOOKE_IRQPRIO_FP_UNAVAIL:
123 case BOOKE_IRQPRIO_AP_UNAVAIL:
124 case BOOKE_IRQPRIO_ALIGNMENT:
125 allowed = 1;
126 msr_mask = MSR_CE|MSR_ME|MSR_DE;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500127 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600128 case BOOKE_IRQPRIO_CRITICAL:
129 case BOOKE_IRQPRIO_WATCHDOG:
130 allowed = vcpu->arch.msr & MSR_CE;
131 msr_mask = MSR_ME;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500132 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600133 case BOOKE_IRQPRIO_MACHINE_CHECK:
134 allowed = vcpu->arch.msr & MSR_ME;
135 msr_mask = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500136 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600137 case BOOKE_IRQPRIO_EXTERNAL:
138 case BOOKE_IRQPRIO_DECREMENTER:
139 case BOOKE_IRQPRIO_FIT:
140 allowed = vcpu->arch.msr & MSR_EE;
141 msr_mask = MSR_CE|MSR_ME|MSR_DE;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500142 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600143 case BOOKE_IRQPRIO_DEBUG:
144 allowed = vcpu->arch.msr & MSR_DE;
145 msr_mask = MSR_ME;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500146 break;
147 }
148
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600149 if (allowed) {
150 vcpu->arch.srr0 = vcpu->arch.pc;
151 vcpu->arch.srr1 = vcpu->arch.msr;
152 vcpu->arch.pc = vcpu->arch.ivpr | vcpu->arch.ivor[priority];
153 kvmppc_set_msr(vcpu, vcpu->arch.msr & msr_mask);
154
155 clear_bit(priority, &vcpu->arch.pending_exceptions);
156 }
157
158 return allowed;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500159}
160
161/* Check pending exceptions and deliver one, if possible. */
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600162void kvmppc_core_deliver_interrupts(struct kvm_vcpu *vcpu)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500163{
164 unsigned long *pending = &vcpu->arch.pending_exceptions;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500165 unsigned int priority;
166
Hollis Blanchard9ab80842008-11-05 09:36:22 -0600167 priority = __ffs(*pending);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500168 while (priority <= BOOKE_MAX_INTERRUPT) {
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600169 if (kvmppc_booke_irqprio_deliver(vcpu, priority))
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500170 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500171
172 priority = find_next_bit(pending,
173 BITS_PER_BYTE * sizeof(*pending),
174 priority + 1);
175 }
176}
177
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500178/**
179 * kvmppc_handle_exit
180 *
181 * Return value is in the form (errcode<<2 | RESUME_FLAG_HOST | RESUME_FLAG_NV)
182 */
183int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu,
184 unsigned int exit_nr)
185{
186 enum emulation_result er;
187 int r = RESUME_HOST;
188
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600189 /* update before a new last_exit_type is rewritten */
190 kvmppc_update_timing_stats(vcpu);
191
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500192 local_irq_enable();
193
194 run->exit_reason = KVM_EXIT_UNKNOWN;
195 run->ready_for_interrupt_injection = 1;
196
197 switch (exit_nr) {
198 case BOOKE_INTERRUPT_MACHINE_CHECK:
199 printk("MACHINE CHECK: %lx\n", mfspr(SPRN_MCSR));
200 kvmppc_dump_vcpu(vcpu);
201 r = RESUME_HOST;
202 break;
203
204 case BOOKE_INTERRUPT_EXTERNAL:
Hollis Blanchard7b701592008-12-02 15:51:58 -0600205 kvmppc_account_exit(vcpu, EXT_INTR_EXITS);
Hollis Blanchard1b6766c2008-11-05 09:36:21 -0600206 if (need_resched())
207 cond_resched();
208 r = RESUME_GUEST;
209 break;
210
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500211 case BOOKE_INTERRUPT_DECREMENTER:
212 /* Since we switched IVPR back to the host's value, the host
213 * handled this interrupt the moment we enabled interrupts.
214 * Now we just offer it a chance to reschedule the guest. */
Hollis Blanchard7b701592008-12-02 15:51:58 -0600215 kvmppc_account_exit(vcpu, DEC_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500216 if (need_resched())
217 cond_resched();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500218 r = RESUME_GUEST;
219 break;
220
221 case BOOKE_INTERRUPT_PROGRAM:
222 if (vcpu->arch.msr & MSR_PR) {
223 /* Program traps generated by user-level software must be handled
224 * by the guest kernel. */
225 vcpu->arch.esr = vcpu->arch.fault_esr;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600226 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_PROGRAM);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500227 r = RESUME_GUEST;
Hollis Blanchard7b701592008-12-02 15:51:58 -0600228 kvmppc_account_exit(vcpu, USR_PR_INST);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500229 break;
230 }
231
232 er = kvmppc_emulate_instruction(run, vcpu);
233 switch (er) {
234 case EMULATE_DONE:
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600235 /* don't overwrite subtypes, just account kvm_stats */
Hollis Blanchard7b701592008-12-02 15:51:58 -0600236 kvmppc_account_exit_stat(vcpu, EMULATED_INST_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500237 /* Future optimization: only reload non-volatiles if
238 * they were actually modified by emulation. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500239 r = RESUME_GUEST_NV;
240 break;
241 case EMULATE_DO_DCR:
242 run->exit_reason = KVM_EXIT_DCR;
243 r = RESUME_HOST;
244 break;
245 case EMULATE_FAIL:
246 /* XXX Deliver Program interrupt to guest. */
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -0600247 printk(KERN_CRIT "%s: emulation at %lx failed (%08x)\n",
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500248 __func__, vcpu->arch.pc, vcpu->arch.last_inst);
249 /* For debugging, encode the failing instruction and
250 * report it to userspace. */
251 run->hw.hardware_exit_reason = ~0ULL << 32;
252 run->hw.hardware_exit_reason |= vcpu->arch.last_inst;
253 r = RESUME_HOST;
254 break;
255 default:
256 BUG();
257 }
258 break;
259
Christian Ehrhardtde368dc2008-04-29 18:18:23 +0200260 case BOOKE_INTERRUPT_FP_UNAVAIL:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600261 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_FP_UNAVAIL);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600262 kvmppc_account_exit(vcpu, FP_UNAVAIL);
Christian Ehrhardtde368dc2008-04-29 18:18:23 +0200263 r = RESUME_GUEST;
264 break;
265
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500266 case BOOKE_INTERRUPT_DATA_STORAGE:
267 vcpu->arch.dear = vcpu->arch.fault_dear;
268 vcpu->arch.esr = vcpu->arch.fault_esr;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600269 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DATA_STORAGE);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600270 kvmppc_account_exit(vcpu, DSI_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500271 r = RESUME_GUEST;
272 break;
273
274 case BOOKE_INTERRUPT_INST_STORAGE:
275 vcpu->arch.esr = vcpu->arch.fault_esr;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600276 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_INST_STORAGE);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600277 kvmppc_account_exit(vcpu, ISI_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500278 r = RESUME_GUEST;
279 break;
280
281 case BOOKE_INTERRUPT_SYSCALL:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600282 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SYSCALL);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600283 kvmppc_account_exit(vcpu, SYSCALL_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500284 r = RESUME_GUEST;
285 break;
286
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600287 /* XXX move to a 440-specific file. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500288 case BOOKE_INTERRUPT_DTLB_MISS: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500289 unsigned long eaddr = vcpu->arch.fault_dear;
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600290 int gtlb_index;
Hollis Blanchard475e7cd2009-01-03 16:23:00 -0600291 gpa_t gpaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500292 gfn_t gfn;
293
294 /* Check the guest TLB. */
Hollis Blanchardfa86b8d2009-01-03 16:23:03 -0600295 gtlb_index = kvmppc_mmu_dtlb_index(vcpu, eaddr);
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600296 if (gtlb_index < 0) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500297 /* The guest didn't have a mapping for it. */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600298 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DTLB_MISS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500299 vcpu->arch.dear = vcpu->arch.fault_dear;
300 vcpu->arch.esr = vcpu->arch.fault_esr;
Hollis Blanchard7b701592008-12-02 15:51:58 -0600301 kvmppc_account_exit(vcpu, DTLB_REAL_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500302 r = RESUME_GUEST;
303 break;
304 }
305
Hollis Blanchardbe8d1ca2009-01-03 16:23:02 -0600306 gpaddr = kvmppc_mmu_xlate(vcpu, gtlb_index, eaddr);
Hollis Blanchard475e7cd2009-01-03 16:23:00 -0600307 gfn = gpaddr >> PAGE_SHIFT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500308
309 if (kvm_is_visible_gfn(vcpu->kvm, gfn)) {
310 /* The guest TLB had a mapping, but the shadow TLB
311 * didn't, and it is RAM. This could be because:
312 * a) the entry is mapping the host kernel, or
313 * b) the guest used a large mapping which we're faking
314 * Either way, we need to satisfy the fault without
315 * invoking the guest. */
Hollis Blanchard58a96212009-01-03 16:23:01 -0600316 kvmppc_mmu_map(vcpu, eaddr, gpaddr, gtlb_index);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600317 kvmppc_account_exit(vcpu, DTLB_VIRT_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500318 r = RESUME_GUEST;
319 } else {
320 /* Guest has mapped and accessed a page which is not
321 * actually RAM. */
Hollis Blanchard475e7cd2009-01-03 16:23:00 -0600322 vcpu->arch.paddr_accessed = gpaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500323 r = kvmppc_emulate_mmio(run, vcpu);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600324 kvmppc_account_exit(vcpu, MMIO_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500325 }
326
327 break;
328 }
329
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600330 /* XXX move to a 440-specific file. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500331 case BOOKE_INTERRUPT_ITLB_MISS: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500332 unsigned long eaddr = vcpu->arch.pc;
Hollis Blanchard89168612008-12-02 15:51:53 -0600333 gpa_t gpaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500334 gfn_t gfn;
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600335 int gtlb_index;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500336
337 r = RESUME_GUEST;
338
339 /* Check the guest TLB. */
Hollis Blanchardfa86b8d2009-01-03 16:23:03 -0600340 gtlb_index = kvmppc_mmu_itlb_index(vcpu, eaddr);
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600341 if (gtlb_index < 0) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500342 /* The guest didn't have a mapping for it. */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600343 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_ITLB_MISS);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600344 kvmppc_account_exit(vcpu, ITLB_REAL_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500345 break;
346 }
347
Hollis Blanchard7b701592008-12-02 15:51:58 -0600348 kvmppc_account_exit(vcpu, ITLB_VIRT_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500349
Hollis Blanchardbe8d1ca2009-01-03 16:23:02 -0600350 gpaddr = kvmppc_mmu_xlate(vcpu, gtlb_index, eaddr);
Hollis Blanchard89168612008-12-02 15:51:53 -0600351 gfn = gpaddr >> PAGE_SHIFT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500352
353 if (kvm_is_visible_gfn(vcpu->kvm, gfn)) {
354 /* The guest TLB had a mapping, but the shadow TLB
355 * didn't. This could be because:
356 * a) the entry is mapping the host kernel, or
357 * b) the guest used a large mapping which we're faking
358 * Either way, we need to satisfy the fault without
359 * invoking the guest. */
Hollis Blanchard58a96212009-01-03 16:23:01 -0600360 kvmppc_mmu_map(vcpu, eaddr, gpaddr, gtlb_index);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500361 } else {
362 /* Guest mapped and leaped at non-RAM! */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600363 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_MACHINE_CHECK);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500364 }
365
366 break;
367 }
368
Hollis Blanchard6a0ab732008-07-25 13:54:49 -0500369 case BOOKE_INTERRUPT_DEBUG: {
370 u32 dbsr;
371
372 vcpu->arch.pc = mfspr(SPRN_CSRR0);
373
374 /* clear IAC events in DBSR register */
375 dbsr = mfspr(SPRN_DBSR);
376 dbsr &= DBSR_IAC1 | DBSR_IAC2 | DBSR_IAC3 | DBSR_IAC4;
377 mtspr(SPRN_DBSR, dbsr);
378
379 run->exit_reason = KVM_EXIT_DEBUG;
Hollis Blanchard7b701592008-12-02 15:51:58 -0600380 kvmppc_account_exit(vcpu, DEBUG_EXITS);
Hollis Blanchard6a0ab732008-07-25 13:54:49 -0500381 r = RESUME_HOST;
382 break;
383 }
384
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500385 default:
386 printk(KERN_EMERG "exit_nr %d\n", exit_nr);
387 BUG();
388 }
389
390 local_irq_disable();
391
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600392 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500393
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500394 if (!(r & RESUME_HOST)) {
395 /* To avoid clobbering exit_reason, only check for signals if
396 * we aren't already exiting to userspace for some other
397 * reason. */
398 if (signal_pending(current)) {
399 run->exit_reason = KVM_EXIT_INTR;
400 r = (-EINTR << 2) | RESUME_HOST | (r & RESUME_FLAG_NV);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600401 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500402 }
403 }
404
405 return r;
406}
407
408/* Initial guest state: 16MB mapping 0 -> 0, PC = 0, MSR = 0, R1 = 16MB */
409int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
410{
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500411 vcpu->arch.pc = 0;
412 vcpu->arch.msr = 0;
413 vcpu->arch.gpr[1] = (16<<20) - 8; /* -8 for the callee-save LR slot */
414
Hollis Blanchard49dd2c42008-07-25 13:54:53 -0500415 vcpu->arch.shadow_pid = 1;
416
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500417 /* Eye-catching number so we know if the guest takes an interrupt
418 * before it's programmed its own IVPR. */
419 vcpu->arch.ivpr = 0x55550000;
420
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600421 kvmppc_init_timing_stats(vcpu);
422
Hollis Blanchard5cbb5102008-11-05 09:36:17 -0600423 return kvmppc_core_vcpu_setup(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500424}
425
426int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
427{
428 int i;
429
430 regs->pc = vcpu->arch.pc;
431 regs->cr = vcpu->arch.cr;
432 regs->ctr = vcpu->arch.ctr;
433 regs->lr = vcpu->arch.lr;
434 regs->xer = vcpu->arch.xer;
435 regs->msr = vcpu->arch.msr;
436 regs->srr0 = vcpu->arch.srr0;
437 regs->srr1 = vcpu->arch.srr1;
438 regs->pid = vcpu->arch.pid;
439 regs->sprg0 = vcpu->arch.sprg0;
440 regs->sprg1 = vcpu->arch.sprg1;
441 regs->sprg2 = vcpu->arch.sprg2;
442 regs->sprg3 = vcpu->arch.sprg3;
443 regs->sprg5 = vcpu->arch.sprg4;
444 regs->sprg6 = vcpu->arch.sprg5;
445 regs->sprg7 = vcpu->arch.sprg6;
446
447 for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
448 regs->gpr[i] = vcpu->arch.gpr[i];
449
450 return 0;
451}
452
453int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
454{
455 int i;
456
457 vcpu->arch.pc = regs->pc;
458 vcpu->arch.cr = regs->cr;
459 vcpu->arch.ctr = regs->ctr;
460 vcpu->arch.lr = regs->lr;
461 vcpu->arch.xer = regs->xer;
Hollis Blanchardb8fd68a2008-11-05 09:36:20 -0600462 kvmppc_set_msr(vcpu, regs->msr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500463 vcpu->arch.srr0 = regs->srr0;
464 vcpu->arch.srr1 = regs->srr1;
465 vcpu->arch.sprg0 = regs->sprg0;
466 vcpu->arch.sprg1 = regs->sprg1;
467 vcpu->arch.sprg2 = regs->sprg2;
468 vcpu->arch.sprg3 = regs->sprg3;
469 vcpu->arch.sprg5 = regs->sprg4;
470 vcpu->arch.sprg6 = regs->sprg5;
471 vcpu->arch.sprg7 = regs->sprg6;
472
473 for (i = 0; i < ARRAY_SIZE(vcpu->arch.gpr); i++)
474 vcpu->arch.gpr[i] = regs->gpr[i];
475
476 return 0;
477}
478
479int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
480 struct kvm_sregs *sregs)
481{
482 return -ENOTSUPP;
483}
484
485int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
486 struct kvm_sregs *sregs)
487{
488 return -ENOTSUPP;
489}
490
491int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
492{
493 return -ENOTSUPP;
494}
495
496int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
497{
498 return -ENOTSUPP;
499}
500
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500501int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
502 struct kvm_translation *tr)
503{
Hollis Blanchard5cbb5102008-11-05 09:36:17 -0600504 return kvmppc_core_vcpu_translate(vcpu, tr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500505}
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600506
Hollis Blancharddb93f572008-11-05 09:36:18 -0600507int kvmppc_booke_init(void)
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600508{
509 unsigned long ivor[16];
510 unsigned long max_ivor = 0;
511 int i;
512
513 /* We install our own exception handlers by hijacking IVPR. IVPR must
514 * be 16-bit aligned, so we need a 64KB allocation. */
515 kvmppc_booke_handlers = __get_free_pages(GFP_KERNEL | __GFP_ZERO,
516 VCPU_SIZE_ORDER);
517 if (!kvmppc_booke_handlers)
518 return -ENOMEM;
519
520 /* XXX make sure our handlers are smaller than Linux's */
521
522 /* Copy our interrupt handlers to match host IVORs. That way we don't
523 * have to swap the IVORs on every guest/host transition. */
524 ivor[0] = mfspr(SPRN_IVOR0);
525 ivor[1] = mfspr(SPRN_IVOR1);
526 ivor[2] = mfspr(SPRN_IVOR2);
527 ivor[3] = mfspr(SPRN_IVOR3);
528 ivor[4] = mfspr(SPRN_IVOR4);
529 ivor[5] = mfspr(SPRN_IVOR5);
530 ivor[6] = mfspr(SPRN_IVOR6);
531 ivor[7] = mfspr(SPRN_IVOR7);
532 ivor[8] = mfspr(SPRN_IVOR8);
533 ivor[9] = mfspr(SPRN_IVOR9);
534 ivor[10] = mfspr(SPRN_IVOR10);
535 ivor[11] = mfspr(SPRN_IVOR11);
536 ivor[12] = mfspr(SPRN_IVOR12);
537 ivor[13] = mfspr(SPRN_IVOR13);
538 ivor[14] = mfspr(SPRN_IVOR14);
539 ivor[15] = mfspr(SPRN_IVOR15);
540
541 for (i = 0; i < 16; i++) {
542 if (ivor[i] > max_ivor)
543 max_ivor = ivor[i];
544
545 memcpy((void *)kvmppc_booke_handlers + ivor[i],
546 kvmppc_handlers_start + i * kvmppc_handler_len,
547 kvmppc_handler_len);
548 }
549 flush_icache_range(kvmppc_booke_handlers,
550 kvmppc_booke_handlers + max_ivor + kvmppc_handler_len);
551
Hollis Blancharddb93f572008-11-05 09:36:18 -0600552 return 0;
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600553}
554
Hollis Blancharddb93f572008-11-05 09:36:18 -0600555void __exit kvmppc_booke_exit(void)
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600556{
557 free_pages(kvmppc_booke_handlers, VCPU_SIZE_ORDER);
558 kvm_exit();
559}