blob: d8b63420acf8f179c836eec967de3d05e6a065ce [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 Blanchardbbf45ba2008-04-16 23:28:09 -050033
Hollis Blanchard75f74f02008-11-05 09:36:16 -060034#include "booke.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050035
Hollis Blanchardd9fbd032008-11-05 09:36:13 -060036unsigned long kvmppc_booke_handlers;
37
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050038#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
39#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
40
41struct kvm_stats_debugfs_item debugfs_entries[] = {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050042 { "mmio", VCPU_STAT(mmio_exits) },
43 { "dcr", VCPU_STAT(dcr_exits) },
44 { "sig", VCPU_STAT(signal_exits) },
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050045 { "itlb_r", VCPU_STAT(itlb_real_miss_exits) },
46 { "itlb_v", VCPU_STAT(itlb_virt_miss_exits) },
47 { "dtlb_r", VCPU_STAT(dtlb_real_miss_exits) },
48 { "dtlb_v", VCPU_STAT(dtlb_virt_miss_exits) },
49 { "sysc", VCPU_STAT(syscall_exits) },
50 { "isi", VCPU_STAT(isi_exits) },
51 { "dsi", VCPU_STAT(dsi_exits) },
52 { "inst_emu", VCPU_STAT(emulated_inst_exits) },
53 { "dec", VCPU_STAT(dec_exits) },
54 { "ext_intr", VCPU_STAT(ext_intr_exits) },
Hollis Blanchard45c5eb62008-04-25 17:55:49 -050055 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050056 { NULL }
57};
58
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050059/* TODO: use vcpu_printf() */
60void kvmppc_dump_vcpu(struct kvm_vcpu *vcpu)
61{
62 int i;
63
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -060064 printk("pc: %08lx msr: %08lx\n", vcpu->arch.pc, vcpu->arch.msr);
65 printk("lr: %08lx ctr: %08lx\n", vcpu->arch.lr, vcpu->arch.ctr);
66 printk("srr0: %08lx srr1: %08lx\n", vcpu->arch.srr0, vcpu->arch.srr1);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050067
68 printk("exceptions: %08lx\n", vcpu->arch.pending_exceptions);
69
70 for (i = 0; i < 32; i += 4) {
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -060071 printk("gpr%02d: %08lx %08lx %08lx %08lx\n", i,
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050072 vcpu->arch.gpr[i],
73 vcpu->arch.gpr[i+1],
74 vcpu->arch.gpr[i+2],
75 vcpu->arch.gpr[i+3]);
76 }
77}
78
Hollis Blanchardd4cf3892008-11-05 09:36:23 -060079static void kvmppc_booke_queue_irqprio(struct kvm_vcpu *vcpu,
80 unsigned int priority)
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060081{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060082 set_bit(priority, &vcpu->arch.pending_exceptions);
83}
84
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060085void kvmppc_core_queue_program(struct kvm_vcpu *vcpu)
86{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -060087 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_PROGRAM);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060088}
89
90void kvmppc_core_queue_dec(struct kvm_vcpu *vcpu)
91{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -060092 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DECREMENTER);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060093}
94
95int kvmppc_core_pending_dec(struct kvm_vcpu *vcpu)
96{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -060097 return test_bit(BOOKE_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060098}
99
Alexander Graf7706664d2009-12-21 20:21:24 +0100100void kvmppc_core_dequeue_dec(struct kvm_vcpu *vcpu)
101{
102 clear_bit(BOOKE_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions);
103}
104
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600105void kvmppc_core_queue_external(struct kvm_vcpu *vcpu,
106 struct kvm_interrupt *irq)
107{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600108 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_EXTERNAL);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600109}
110
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600111/* Deliver the interrupt of the corresponding priority, if possible. */
112static int kvmppc_booke_irqprio_deliver(struct kvm_vcpu *vcpu,
113 unsigned int priority)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500114{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600115 int allowed = 0;
116 ulong msr_mask;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500117
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600118 switch (priority) {
119 case BOOKE_IRQPRIO_PROGRAM:
120 case BOOKE_IRQPRIO_DTLB_MISS:
121 case BOOKE_IRQPRIO_ITLB_MISS:
122 case BOOKE_IRQPRIO_SYSCALL:
123 case BOOKE_IRQPRIO_DATA_STORAGE:
124 case BOOKE_IRQPRIO_INST_STORAGE:
125 case BOOKE_IRQPRIO_FP_UNAVAIL:
Hollis Blanchardbb3a8a12009-01-03 16:23:13 -0600126 case BOOKE_IRQPRIO_SPE_UNAVAIL:
127 case BOOKE_IRQPRIO_SPE_FP_DATA:
128 case BOOKE_IRQPRIO_SPE_FP_ROUND:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600129 case BOOKE_IRQPRIO_AP_UNAVAIL:
130 case BOOKE_IRQPRIO_ALIGNMENT:
131 allowed = 1;
132 msr_mask = MSR_CE|MSR_ME|MSR_DE;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500133 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600134 case BOOKE_IRQPRIO_CRITICAL:
135 case BOOKE_IRQPRIO_WATCHDOG:
136 allowed = vcpu->arch.msr & MSR_CE;
137 msr_mask = MSR_ME;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500138 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600139 case BOOKE_IRQPRIO_MACHINE_CHECK:
140 allowed = vcpu->arch.msr & MSR_ME;
141 msr_mask = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500142 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600143 case BOOKE_IRQPRIO_EXTERNAL:
144 case BOOKE_IRQPRIO_DECREMENTER:
145 case BOOKE_IRQPRIO_FIT:
146 allowed = vcpu->arch.msr & MSR_EE;
147 msr_mask = MSR_CE|MSR_ME|MSR_DE;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500148 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600149 case BOOKE_IRQPRIO_DEBUG:
150 allowed = vcpu->arch.msr & MSR_DE;
151 msr_mask = MSR_ME;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500152 break;
153 }
154
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600155 if (allowed) {
156 vcpu->arch.srr0 = vcpu->arch.pc;
157 vcpu->arch.srr1 = vcpu->arch.msr;
158 vcpu->arch.pc = vcpu->arch.ivpr | vcpu->arch.ivor[priority];
159 kvmppc_set_msr(vcpu, vcpu->arch.msr & msr_mask);
160
161 clear_bit(priority, &vcpu->arch.pending_exceptions);
162 }
163
164 return allowed;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500165}
166
167/* Check pending exceptions and deliver one, if possible. */
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600168void kvmppc_core_deliver_interrupts(struct kvm_vcpu *vcpu)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500169{
170 unsigned long *pending = &vcpu->arch.pending_exceptions;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500171 unsigned int priority;
172
Hollis Blanchard9ab80842008-11-05 09:36:22 -0600173 priority = __ffs(*pending);
Hollis Blanchardbdc89f12009-01-03 16:23:12 -0600174 while (priority <= BOOKE_IRQPRIO_MAX) {
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600175 if (kvmppc_booke_irqprio_deliver(vcpu, priority))
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500176 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500177
178 priority = find_next_bit(pending,
179 BITS_PER_BYTE * sizeof(*pending),
180 priority + 1);
181 }
182}
183
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500184/**
185 * kvmppc_handle_exit
186 *
187 * Return value is in the form (errcode<<2 | RESUME_FLAG_HOST | RESUME_FLAG_NV)
188 */
189int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu,
190 unsigned int exit_nr)
191{
192 enum emulation_result er;
193 int r = RESUME_HOST;
194
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600195 /* update before a new last_exit_type is rewritten */
196 kvmppc_update_timing_stats(vcpu);
197
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500198 local_irq_enable();
199
200 run->exit_reason = KVM_EXIT_UNKNOWN;
201 run->ready_for_interrupt_injection = 1;
202
203 switch (exit_nr) {
204 case BOOKE_INTERRUPT_MACHINE_CHECK:
205 printk("MACHINE CHECK: %lx\n", mfspr(SPRN_MCSR));
206 kvmppc_dump_vcpu(vcpu);
207 r = RESUME_HOST;
208 break;
209
210 case BOOKE_INTERRUPT_EXTERNAL:
Hollis Blanchard7b701592008-12-02 15:51:58 -0600211 kvmppc_account_exit(vcpu, EXT_INTR_EXITS);
Hollis Blanchard1b6766c2008-11-05 09:36:21 -0600212 if (need_resched())
213 cond_resched();
214 r = RESUME_GUEST;
215 break;
216
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500217 case BOOKE_INTERRUPT_DECREMENTER:
218 /* Since we switched IVPR back to the host's value, the host
219 * handled this interrupt the moment we enabled interrupts.
220 * Now we just offer it a chance to reschedule the guest. */
Hollis Blanchard7b701592008-12-02 15:51:58 -0600221 kvmppc_account_exit(vcpu, DEC_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500222 if (need_resched())
223 cond_resched();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500224 r = RESUME_GUEST;
225 break;
226
227 case BOOKE_INTERRUPT_PROGRAM:
228 if (vcpu->arch.msr & MSR_PR) {
229 /* Program traps generated by user-level software must be handled
230 * by the guest kernel. */
231 vcpu->arch.esr = vcpu->arch.fault_esr;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600232 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_PROGRAM);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500233 r = RESUME_GUEST;
Hollis Blanchard7b701592008-12-02 15:51:58 -0600234 kvmppc_account_exit(vcpu, USR_PR_INST);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500235 break;
236 }
237
238 er = kvmppc_emulate_instruction(run, vcpu);
239 switch (er) {
240 case EMULATE_DONE:
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600241 /* don't overwrite subtypes, just account kvm_stats */
Hollis Blanchard7b701592008-12-02 15:51:58 -0600242 kvmppc_account_exit_stat(vcpu, EMULATED_INST_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500243 /* Future optimization: only reload non-volatiles if
244 * they were actually modified by emulation. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500245 r = RESUME_GUEST_NV;
246 break;
247 case EMULATE_DO_DCR:
248 run->exit_reason = KVM_EXIT_DCR;
249 r = RESUME_HOST;
250 break;
251 case EMULATE_FAIL:
252 /* XXX Deliver Program interrupt to guest. */
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -0600253 printk(KERN_CRIT "%s: emulation at %lx failed (%08x)\n",
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500254 __func__, vcpu->arch.pc, vcpu->arch.last_inst);
255 /* For debugging, encode the failing instruction and
256 * report it to userspace. */
257 run->hw.hardware_exit_reason = ~0ULL << 32;
258 run->hw.hardware_exit_reason |= vcpu->arch.last_inst;
259 r = RESUME_HOST;
260 break;
261 default:
262 BUG();
263 }
264 break;
265
Christian Ehrhardtde368dc2008-04-29 18:18:23 +0200266 case BOOKE_INTERRUPT_FP_UNAVAIL:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600267 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_FP_UNAVAIL);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600268 kvmppc_account_exit(vcpu, FP_UNAVAIL);
Christian Ehrhardtde368dc2008-04-29 18:18:23 +0200269 r = RESUME_GUEST;
270 break;
271
Hollis Blanchardbb3a8a12009-01-03 16:23:13 -0600272 case BOOKE_INTERRUPT_SPE_UNAVAIL:
273 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SPE_UNAVAIL);
274 r = RESUME_GUEST;
275 break;
276
277 case BOOKE_INTERRUPT_SPE_FP_DATA:
278 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SPE_FP_DATA);
279 r = RESUME_GUEST;
280 break;
281
282 case BOOKE_INTERRUPT_SPE_FP_ROUND:
283 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SPE_FP_ROUND);
284 r = RESUME_GUEST;
285 break;
286
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500287 case BOOKE_INTERRUPT_DATA_STORAGE:
288 vcpu->arch.dear = vcpu->arch.fault_dear;
289 vcpu->arch.esr = vcpu->arch.fault_esr;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600290 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DATA_STORAGE);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600291 kvmppc_account_exit(vcpu, DSI_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500292 r = RESUME_GUEST;
293 break;
294
295 case BOOKE_INTERRUPT_INST_STORAGE:
296 vcpu->arch.esr = vcpu->arch.fault_esr;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600297 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_INST_STORAGE);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600298 kvmppc_account_exit(vcpu, ISI_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500299 r = RESUME_GUEST;
300 break;
301
302 case BOOKE_INTERRUPT_SYSCALL:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600303 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SYSCALL);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600304 kvmppc_account_exit(vcpu, SYSCALL_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500305 r = RESUME_GUEST;
306 break;
307
308 case BOOKE_INTERRUPT_DTLB_MISS: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500309 unsigned long eaddr = vcpu->arch.fault_dear;
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600310 int gtlb_index;
Hollis Blanchard475e7cd2009-01-03 16:23:00 -0600311 gpa_t gpaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500312 gfn_t gfn;
313
314 /* Check the guest TLB. */
Hollis Blanchardfa86b8d2009-01-03 16:23:03 -0600315 gtlb_index = kvmppc_mmu_dtlb_index(vcpu, eaddr);
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600316 if (gtlb_index < 0) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500317 /* The guest didn't have a mapping for it. */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600318 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DTLB_MISS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500319 vcpu->arch.dear = vcpu->arch.fault_dear;
320 vcpu->arch.esr = vcpu->arch.fault_esr;
Hollis Blanchardb52a6382009-01-03 16:23:11 -0600321 kvmppc_mmu_dtlb_miss(vcpu);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600322 kvmppc_account_exit(vcpu, DTLB_REAL_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500323 r = RESUME_GUEST;
324 break;
325 }
326
Hollis Blanchardbe8d1ca2009-01-03 16:23:02 -0600327 gpaddr = kvmppc_mmu_xlate(vcpu, gtlb_index, eaddr);
Hollis Blanchard475e7cd2009-01-03 16:23:00 -0600328 gfn = gpaddr >> PAGE_SHIFT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500329
330 if (kvm_is_visible_gfn(vcpu->kvm, gfn)) {
331 /* The guest TLB had a mapping, but the shadow TLB
332 * didn't, and it is RAM. This could be because:
333 * a) the entry is mapping the host kernel, or
334 * b) the guest used a large mapping which we're faking
335 * Either way, we need to satisfy the fault without
336 * invoking the guest. */
Hollis Blanchard58a96212009-01-03 16:23:01 -0600337 kvmppc_mmu_map(vcpu, eaddr, gpaddr, gtlb_index);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600338 kvmppc_account_exit(vcpu, DTLB_VIRT_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500339 r = RESUME_GUEST;
340 } else {
341 /* Guest has mapped and accessed a page which is not
342 * actually RAM. */
Hollis Blanchard475e7cd2009-01-03 16:23:00 -0600343 vcpu->arch.paddr_accessed = gpaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500344 r = kvmppc_emulate_mmio(run, vcpu);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600345 kvmppc_account_exit(vcpu, MMIO_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500346 }
347
348 break;
349 }
350
351 case BOOKE_INTERRUPT_ITLB_MISS: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500352 unsigned long eaddr = vcpu->arch.pc;
Hollis Blanchard89168612008-12-02 15:51:53 -0600353 gpa_t gpaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500354 gfn_t gfn;
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600355 int gtlb_index;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500356
357 r = RESUME_GUEST;
358
359 /* Check the guest TLB. */
Hollis Blanchardfa86b8d2009-01-03 16:23:03 -0600360 gtlb_index = kvmppc_mmu_itlb_index(vcpu, eaddr);
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600361 if (gtlb_index < 0) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500362 /* The guest didn't have a mapping for it. */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600363 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_ITLB_MISS);
Hollis Blanchardb52a6382009-01-03 16:23:11 -0600364 kvmppc_mmu_itlb_miss(vcpu);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600365 kvmppc_account_exit(vcpu, ITLB_REAL_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500366 break;
367 }
368
Hollis Blanchard7b701592008-12-02 15:51:58 -0600369 kvmppc_account_exit(vcpu, ITLB_VIRT_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500370
Hollis Blanchardbe8d1ca2009-01-03 16:23:02 -0600371 gpaddr = kvmppc_mmu_xlate(vcpu, gtlb_index, eaddr);
Hollis Blanchard89168612008-12-02 15:51:53 -0600372 gfn = gpaddr >> PAGE_SHIFT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500373
374 if (kvm_is_visible_gfn(vcpu->kvm, gfn)) {
375 /* The guest TLB had a mapping, but the shadow TLB
376 * didn't. This could be because:
377 * a) the entry is mapping the host kernel, or
378 * b) the guest used a large mapping which we're faking
379 * Either way, we need to satisfy the fault without
380 * invoking the guest. */
Hollis Blanchard58a96212009-01-03 16:23:01 -0600381 kvmppc_mmu_map(vcpu, eaddr, gpaddr, gtlb_index);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500382 } else {
383 /* Guest mapped and leaped at non-RAM! */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600384 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_MACHINE_CHECK);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500385 }
386
387 break;
388 }
389
Hollis Blanchard6a0ab732008-07-25 13:54:49 -0500390 case BOOKE_INTERRUPT_DEBUG: {
391 u32 dbsr;
392
393 vcpu->arch.pc = mfspr(SPRN_CSRR0);
394
395 /* clear IAC events in DBSR register */
396 dbsr = mfspr(SPRN_DBSR);
397 dbsr &= DBSR_IAC1 | DBSR_IAC2 | DBSR_IAC3 | DBSR_IAC4;
398 mtspr(SPRN_DBSR, dbsr);
399
400 run->exit_reason = KVM_EXIT_DEBUG;
Hollis Blanchard7b701592008-12-02 15:51:58 -0600401 kvmppc_account_exit(vcpu, DEBUG_EXITS);
Hollis Blanchard6a0ab732008-07-25 13:54:49 -0500402 r = RESUME_HOST;
403 break;
404 }
405
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500406 default:
407 printk(KERN_EMERG "exit_nr %d\n", exit_nr);
408 BUG();
409 }
410
411 local_irq_disable();
412
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600413 kvmppc_core_deliver_interrupts(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500414
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500415 if (!(r & RESUME_HOST)) {
416 /* To avoid clobbering exit_reason, only check for signals if
417 * we aren't already exiting to userspace for some other
418 * reason. */
419 if (signal_pending(current)) {
420 run->exit_reason = KVM_EXIT_INTR;
421 r = (-EINTR << 2) | RESUME_HOST | (r & RESUME_FLAG_NV);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600422 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500423 }
424 }
425
426 return r;
427}
428
429/* Initial guest state: 16MB mapping 0 -> 0, PC = 0, MSR = 0, R1 = 16MB */
430int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
431{
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500432 vcpu->arch.pc = 0;
433 vcpu->arch.msr = 0;
434 vcpu->arch.gpr[1] = (16<<20) - 8; /* -8 for the callee-save LR slot */
435
Hollis Blanchard49dd2c42008-07-25 13:54:53 -0500436 vcpu->arch.shadow_pid = 1;
437
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500438 /* Eye-catching number so we know if the guest takes an interrupt
439 * before it's programmed its own IVPR. */
440 vcpu->arch.ivpr = 0x55550000;
441
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600442 kvmppc_init_timing_stats(vcpu);
443
Hollis Blanchard5cbb5102008-11-05 09:36:17 -0600444 return kvmppc_core_vcpu_setup(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500445}
446
447int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
448{
449 int i;
450
451 regs->pc = vcpu->arch.pc;
452 regs->cr = vcpu->arch.cr;
453 regs->ctr = vcpu->arch.ctr;
454 regs->lr = vcpu->arch.lr;
455 regs->xer = vcpu->arch.xer;
456 regs->msr = vcpu->arch.msr;
457 regs->srr0 = vcpu->arch.srr0;
458 regs->srr1 = vcpu->arch.srr1;
459 regs->pid = vcpu->arch.pid;
460 regs->sprg0 = vcpu->arch.sprg0;
461 regs->sprg1 = vcpu->arch.sprg1;
462 regs->sprg2 = vcpu->arch.sprg2;
463 regs->sprg3 = vcpu->arch.sprg3;
464 regs->sprg5 = vcpu->arch.sprg4;
465 regs->sprg6 = vcpu->arch.sprg5;
466 regs->sprg7 = vcpu->arch.sprg6;
467
468 for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
469 regs->gpr[i] = vcpu->arch.gpr[i];
470
471 return 0;
472}
473
474int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
475{
476 int i;
477
478 vcpu->arch.pc = regs->pc;
479 vcpu->arch.cr = regs->cr;
480 vcpu->arch.ctr = regs->ctr;
481 vcpu->arch.lr = regs->lr;
482 vcpu->arch.xer = regs->xer;
Hollis Blanchardb8fd68a2008-11-05 09:36:20 -0600483 kvmppc_set_msr(vcpu, regs->msr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500484 vcpu->arch.srr0 = regs->srr0;
485 vcpu->arch.srr1 = regs->srr1;
486 vcpu->arch.sprg0 = regs->sprg0;
487 vcpu->arch.sprg1 = regs->sprg1;
488 vcpu->arch.sprg2 = regs->sprg2;
489 vcpu->arch.sprg3 = regs->sprg3;
490 vcpu->arch.sprg5 = regs->sprg4;
491 vcpu->arch.sprg6 = regs->sprg5;
492 vcpu->arch.sprg7 = regs->sprg6;
493
494 for (i = 0; i < ARRAY_SIZE(vcpu->arch.gpr); i++)
495 vcpu->arch.gpr[i] = regs->gpr[i];
496
497 return 0;
498}
499
500int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
501 struct kvm_sregs *sregs)
502{
503 return -ENOTSUPP;
504}
505
506int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
507 struct kvm_sregs *sregs)
508{
509 return -ENOTSUPP;
510}
511
512int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
513{
514 return -ENOTSUPP;
515}
516
517int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
518{
519 return -ENOTSUPP;
520}
521
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500522int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
523 struct kvm_translation *tr)
524{
Hollis Blanchard5cbb5102008-11-05 09:36:17 -0600525 return kvmppc_core_vcpu_translate(vcpu, tr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500526}
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600527
Alexander Graf4e755752009-10-30 05:47:01 +0000528int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
529{
530 return -ENOTSUPP;
531}
532
Stephen Rothwell2986b8c2009-06-02 11:46:14 +1000533int __init kvmppc_booke_init(void)
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600534{
535 unsigned long ivor[16];
536 unsigned long max_ivor = 0;
537 int i;
538
539 /* We install our own exception handlers by hijacking IVPR. IVPR must
540 * be 16-bit aligned, so we need a 64KB allocation. */
541 kvmppc_booke_handlers = __get_free_pages(GFP_KERNEL | __GFP_ZERO,
542 VCPU_SIZE_ORDER);
543 if (!kvmppc_booke_handlers)
544 return -ENOMEM;
545
546 /* XXX make sure our handlers are smaller than Linux's */
547
548 /* Copy our interrupt handlers to match host IVORs. That way we don't
549 * have to swap the IVORs on every guest/host transition. */
550 ivor[0] = mfspr(SPRN_IVOR0);
551 ivor[1] = mfspr(SPRN_IVOR1);
552 ivor[2] = mfspr(SPRN_IVOR2);
553 ivor[3] = mfspr(SPRN_IVOR3);
554 ivor[4] = mfspr(SPRN_IVOR4);
555 ivor[5] = mfspr(SPRN_IVOR5);
556 ivor[6] = mfspr(SPRN_IVOR6);
557 ivor[7] = mfspr(SPRN_IVOR7);
558 ivor[8] = mfspr(SPRN_IVOR8);
559 ivor[9] = mfspr(SPRN_IVOR9);
560 ivor[10] = mfspr(SPRN_IVOR10);
561 ivor[11] = mfspr(SPRN_IVOR11);
562 ivor[12] = mfspr(SPRN_IVOR12);
563 ivor[13] = mfspr(SPRN_IVOR13);
564 ivor[14] = mfspr(SPRN_IVOR14);
565 ivor[15] = mfspr(SPRN_IVOR15);
566
567 for (i = 0; i < 16; i++) {
568 if (ivor[i] > max_ivor)
569 max_ivor = ivor[i];
570
571 memcpy((void *)kvmppc_booke_handlers + ivor[i],
572 kvmppc_handlers_start + i * kvmppc_handler_len,
573 kvmppc_handler_len);
574 }
575 flush_icache_range(kvmppc_booke_handlers,
576 kvmppc_booke_handlers + max_ivor + kvmppc_handler_len);
577
Hollis Blancharddb93f572008-11-05 09:36:18 -0600578 return 0;
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600579}
580
Hollis Blancharddb93f572008-11-05 09:36:18 -0600581void __exit kvmppc_booke_exit(void)
Hollis Blanchardd9fbd032008-11-05 09:36:13 -0600582{
583 free_pages(kvmppc_booke_handlers, VCPU_SIZE_ORDER);
584 kvm_exit();
585}