blob: 8e8b14b283d42d4a0270e9369b55619aab607ebb [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>
Scott Woodd30f6e42011-12-20 15:34:43 +000020 * Scott Wood <scottwood@freescale.com>
21 * Varun Sethi <varun.sethi@freescale.com>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050022 */
23
24#include <linux/errno.h>
25#include <linux/err.h>
26#include <linux/kvm_host.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/gfp.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050028#include <linux/module.h>
29#include <linux/vmalloc.h>
30#include <linux/fs.h>
Hollis Blanchard7924bd42008-12-02 15:51:55 -060031
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050032#include <asm/cputable.h>
33#include <asm/uaccess.h>
34#include <asm/kvm_ppc.h>
Hollis Blanchardd9fbd032008-11-05 09:36:13 -060035#include <asm/cacheflush.h>
Scott Woodd30f6e42011-12-20 15:34:43 +000036#include <asm/dbell.h>
37#include <asm/hw_irq.h>
38#include <asm/irq.h>
Mihai Caramanb50df192012-10-11 06:13:19 +000039#include <asm/time.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050040
Scott Woodd30f6e42011-12-20 15:34:43 +000041#include "timing.h"
Hollis Blanchard75f74f02008-11-05 09:36:16 -060042#include "booke.h"
Aneesh Kumar K.Vdba291f2013-10-07 22:17:58 +053043
44#define CREATE_TRACE_POINTS
45#include "trace_booke.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050046
Hollis Blanchardd9fbd032008-11-05 09:36:13 -060047unsigned long kvmppc_booke_handlers;
48
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050049#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
50#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
51
52struct kvm_stats_debugfs_item debugfs_entries[] = {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050053 { "mmio", VCPU_STAT(mmio_exits) },
54 { "dcr", VCPU_STAT(dcr_exits) },
55 { "sig", VCPU_STAT(signal_exits) },
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050056 { "itlb_r", VCPU_STAT(itlb_real_miss_exits) },
57 { "itlb_v", VCPU_STAT(itlb_virt_miss_exits) },
58 { "dtlb_r", VCPU_STAT(dtlb_real_miss_exits) },
59 { "dtlb_v", VCPU_STAT(dtlb_virt_miss_exits) },
60 { "sysc", VCPU_STAT(syscall_exits) },
61 { "isi", VCPU_STAT(isi_exits) },
62 { "dsi", VCPU_STAT(dsi_exits) },
63 { "inst_emu", VCPU_STAT(emulated_inst_exits) },
64 { "dec", VCPU_STAT(dec_exits) },
65 { "ext_intr", VCPU_STAT(ext_intr_exits) },
Hollis Blanchard45c5eb62008-04-25 17:55:49 -050066 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Scott Woodd30f6e42011-12-20 15:34:43 +000067 { "doorbell", VCPU_STAT(dbell_exits) },
68 { "guest doorbell", VCPU_STAT(gdbell_exits) },
Alexander Grafcf1c5ca2012-08-01 12:56:51 +020069 { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050070 { NULL }
71};
72
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050073/* TODO: use vcpu_printf() */
74void kvmppc_dump_vcpu(struct kvm_vcpu *vcpu)
75{
76 int i;
77
Alexander Graf666e7252010-07-29 14:47:43 +020078 printk("pc: %08lx msr: %08llx\n", vcpu->arch.pc, vcpu->arch.shared->msr);
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -060079 printk("lr: %08lx ctr: %08lx\n", vcpu->arch.lr, vcpu->arch.ctr);
Alexander Grafde7906c2010-07-29 14:47:46 +020080 printk("srr0: %08llx srr1: %08llx\n", vcpu->arch.shared->srr0,
81 vcpu->arch.shared->srr1);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050082
83 printk("exceptions: %08lx\n", vcpu->arch.pending_exceptions);
84
85 for (i = 0; i < 32; i += 4) {
Hollis Blanchard5cf8ca22008-11-05 09:36:19 -060086 printk("gpr%02d: %08lx %08lx %08lx %08lx\n", i,
Alexander Graf8e5b26b2010-01-08 02:58:01 +010087 kvmppc_get_gpr(vcpu, i),
88 kvmppc_get_gpr(vcpu, i+1),
89 kvmppc_get_gpr(vcpu, i+2),
90 kvmppc_get_gpr(vcpu, i+3));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050091 }
92}
93
Scott Wood4cd35f62011-06-14 18:34:31 -050094#ifdef CONFIG_SPE
95void kvmppc_vcpu_disable_spe(struct kvm_vcpu *vcpu)
96{
97 preempt_disable();
98 enable_kernel_spe();
99 kvmppc_save_guest_spe(vcpu);
100 vcpu->arch.shadow_msr &= ~MSR_SPE;
101 preempt_enable();
102}
103
104static void kvmppc_vcpu_enable_spe(struct kvm_vcpu *vcpu)
105{
106 preempt_disable();
107 enable_kernel_spe();
108 kvmppc_load_guest_spe(vcpu);
109 vcpu->arch.shadow_msr |= MSR_SPE;
110 preempt_enable();
111}
112
113static void kvmppc_vcpu_sync_spe(struct kvm_vcpu *vcpu)
114{
115 if (vcpu->arch.shared->msr & MSR_SPE) {
116 if (!(vcpu->arch.shadow_msr & MSR_SPE))
117 kvmppc_vcpu_enable_spe(vcpu);
118 } else if (vcpu->arch.shadow_msr & MSR_SPE) {
119 kvmppc_vcpu_disable_spe(vcpu);
120 }
121}
122#else
123static void kvmppc_vcpu_sync_spe(struct kvm_vcpu *vcpu)
124{
125}
126#endif
127
Alexander Graf7a08c272012-08-16 13:10:16 +0200128static void kvmppc_vcpu_sync_fpu(struct kvm_vcpu *vcpu)
129{
130#if defined(CONFIG_PPC_FPU) && !defined(CONFIG_KVM_BOOKE_HV)
131 /* We always treat the FP bit as enabled from the host
132 perspective, so only need to adjust the shadow MSR */
133 vcpu->arch.shadow_msr &= ~MSR_FP;
134 vcpu->arch.shadow_msr |= vcpu->arch.shared->msr & MSR_FP;
135#endif
136}
137
Bharat Bhushance11e482013-07-04 12:27:47 +0530138static void kvmppc_vcpu_sync_debug(struct kvm_vcpu *vcpu)
139{
140 /* Synchronize guest's desire to get debug interrupts into shadow MSR */
141#ifndef CONFIG_KVM_BOOKE_HV
142 vcpu->arch.shadow_msr &= ~MSR_DE;
143 vcpu->arch.shadow_msr |= vcpu->arch.shared->msr & MSR_DE;
144#endif
145
146 /* Force enable debug interrupts when user space wants to debug */
147 if (vcpu->guest_debug) {
148#ifdef CONFIG_KVM_BOOKE_HV
149 /*
150 * Since there is no shadow MSR, sync MSR_DE into the guest
151 * visible MSR.
152 */
153 vcpu->arch.shared->msr |= MSR_DE;
154#else
155 vcpu->arch.shadow_msr |= MSR_DE;
156 vcpu->arch.shared->msr &= ~MSR_DE;
157#endif
158 }
159}
160
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500161/*
162 * Helper function for "full" MSR writes. No need to call this if only
163 * EE/CE/ME/DE/RI are changing.
164 */
Scott Wood4cd35f62011-06-14 18:34:31 -0500165void kvmppc_set_msr(struct kvm_vcpu *vcpu, u32 new_msr)
166{
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500167 u32 old_msr = vcpu->arch.shared->msr;
Scott Wood4cd35f62011-06-14 18:34:31 -0500168
Scott Woodd30f6e42011-12-20 15:34:43 +0000169#ifdef CONFIG_KVM_BOOKE_HV
170 new_msr |= MSR_GS;
171#endif
172
Scott Wood4cd35f62011-06-14 18:34:31 -0500173 vcpu->arch.shared->msr = new_msr;
174
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500175 kvmppc_mmu_msr_notify(vcpu, old_msr);
Scott Wood4cd35f62011-06-14 18:34:31 -0500176 kvmppc_vcpu_sync_spe(vcpu);
Alexander Graf7a08c272012-08-16 13:10:16 +0200177 kvmppc_vcpu_sync_fpu(vcpu);
Bharat Bhushance11e482013-07-04 12:27:47 +0530178 kvmppc_vcpu_sync_debug(vcpu);
Scott Wood4cd35f62011-06-14 18:34:31 -0500179}
180
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600181static void kvmppc_booke_queue_irqprio(struct kvm_vcpu *vcpu,
182 unsigned int priority)
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600183{
Alexander Graf63460462012-08-08 00:44:52 +0200184 trace_kvm_booke_queue_irqprio(vcpu, priority);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600185 set_bit(priority, &vcpu->arch.pending_exceptions);
186}
187
Liu Yudaf5e272010-02-02 19:44:35 +0800188static void kvmppc_core_queue_dtlb_miss(struct kvm_vcpu *vcpu,
189 ulong dear_flags, ulong esr_flags)
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600190{
Liu Yudaf5e272010-02-02 19:44:35 +0800191 vcpu->arch.queued_dear = dear_flags;
192 vcpu->arch.queued_esr = esr_flags;
193 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DTLB_MISS);
194}
195
196static void kvmppc_core_queue_data_storage(struct kvm_vcpu *vcpu,
197 ulong dear_flags, ulong esr_flags)
198{
199 vcpu->arch.queued_dear = dear_flags;
200 vcpu->arch.queued_esr = esr_flags;
201 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DATA_STORAGE);
202}
203
204static void kvmppc_core_queue_inst_storage(struct kvm_vcpu *vcpu,
205 ulong esr_flags)
206{
207 vcpu->arch.queued_esr = esr_flags;
208 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_INST_STORAGE);
209}
210
Alexander Graf011da892013-01-31 14:17:38 +0100211static void kvmppc_core_queue_alignment(struct kvm_vcpu *vcpu, ulong dear_flags,
212 ulong esr_flags)
213{
214 vcpu->arch.queued_dear = dear_flags;
215 vcpu->arch.queued_esr = esr_flags;
216 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_ALIGNMENT);
217}
218
Liu Yudaf5e272010-02-02 19:44:35 +0800219void kvmppc_core_queue_program(struct kvm_vcpu *vcpu, ulong esr_flags)
220{
221 vcpu->arch.queued_esr = esr_flags;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600222 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_PROGRAM);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600223}
224
225void kvmppc_core_queue_dec(struct kvm_vcpu *vcpu)
226{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600227 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_DECREMENTER);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600228}
229
230int kvmppc_core_pending_dec(struct kvm_vcpu *vcpu)
231{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600232 return test_bit(BOOKE_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600233}
234
Alexander Graf7706664d2009-12-21 20:21:24 +0100235void kvmppc_core_dequeue_dec(struct kvm_vcpu *vcpu)
236{
237 clear_bit(BOOKE_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions);
238}
239
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600240void kvmppc_core_queue_external(struct kvm_vcpu *vcpu,
241 struct kvm_interrupt *irq)
242{
Alexander Grafc5335f12010-08-30 14:03:24 +0200243 unsigned int prio = BOOKE_IRQPRIO_EXTERNAL;
244
245 if (irq->irq == KVM_INTERRUPT_SET_LEVEL)
246 prio = BOOKE_IRQPRIO_EXTERNAL_LEVEL;
247
248 kvmppc_booke_queue_irqprio(vcpu, prio);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600249}
250
Paul Mackerras4fe27d22013-02-14 14:00:25 +0000251void kvmppc_core_dequeue_external(struct kvm_vcpu *vcpu)
Alexander Graf4496f972010-04-07 10:03:25 +0200252{
253 clear_bit(BOOKE_IRQPRIO_EXTERNAL, &vcpu->arch.pending_exceptions);
Alexander Grafc5335f12010-08-30 14:03:24 +0200254 clear_bit(BOOKE_IRQPRIO_EXTERNAL_LEVEL, &vcpu->arch.pending_exceptions);
Alexander Graf4496f972010-04-07 10:03:25 +0200255}
256
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000257static void kvmppc_core_queue_watchdog(struct kvm_vcpu *vcpu)
258{
259 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_WATCHDOG);
260}
261
262static void kvmppc_core_dequeue_watchdog(struct kvm_vcpu *vcpu)
263{
264 clear_bit(BOOKE_IRQPRIO_WATCHDOG, &vcpu->arch.pending_exceptions);
265}
266
Scott Woodd30f6e42011-12-20 15:34:43 +0000267static void set_guest_srr(struct kvm_vcpu *vcpu, unsigned long srr0, u32 srr1)
268{
Bharat Bhushan31579ee2014-07-17 17:01:36 +0530269 kvmppc_set_srr0(vcpu, srr0);
270 kvmppc_set_srr1(vcpu, srr1);
Scott Woodd30f6e42011-12-20 15:34:43 +0000271}
272
273static void set_guest_csrr(struct kvm_vcpu *vcpu, unsigned long srr0, u32 srr1)
274{
275 vcpu->arch.csrr0 = srr0;
276 vcpu->arch.csrr1 = srr1;
277}
278
279static void set_guest_dsrr(struct kvm_vcpu *vcpu, unsigned long srr0, u32 srr1)
280{
281 if (cpu_has_feature(CPU_FTR_DEBUG_LVL_EXC)) {
282 vcpu->arch.dsrr0 = srr0;
283 vcpu->arch.dsrr1 = srr1;
284 } else {
285 set_guest_csrr(vcpu, srr0, srr1);
286 }
287}
288
289static void set_guest_mcsrr(struct kvm_vcpu *vcpu, unsigned long srr0, u32 srr1)
290{
291 vcpu->arch.mcsrr0 = srr0;
292 vcpu->arch.mcsrr1 = srr1;
293}
294
Scott Woodd30f6e42011-12-20 15:34:43 +0000295static unsigned long get_guest_esr(struct kvm_vcpu *vcpu)
296{
297#ifdef CONFIG_KVM_BOOKE_HV
298 return mfspr(SPRN_GESR);
299#else
300 return vcpu->arch.shared->esr;
301#endif
302}
303
304static void set_guest_esr(struct kvm_vcpu *vcpu, u32 esr)
305{
306#ifdef CONFIG_KVM_BOOKE_HV
307 mtspr(SPRN_GESR, esr);
308#else
309 vcpu->arch.shared->esr = esr;
310#endif
311}
312
Alexander Graf324b3e62013-01-04 18:28:51 +0100313static unsigned long get_guest_epr(struct kvm_vcpu *vcpu)
314{
315#ifdef CONFIG_KVM_BOOKE_HV
316 return mfspr(SPRN_GEPR);
317#else
318 return vcpu->arch.epr;
319#endif
320}
321
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600322/* Deliver the interrupt of the corresponding priority, if possible. */
323static int kvmppc_booke_irqprio_deliver(struct kvm_vcpu *vcpu,
324 unsigned int priority)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500325{
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600326 int allowed = 0;
Alexander Graf79300f82012-02-15 19:12:29 +0000327 ulong msr_mask = 0;
Alexander Graf1c810632013-01-04 18:12:48 +0100328 bool update_esr = false, update_dear = false, update_epr = false;
Alexander Graf5c6cedf2010-07-29 14:47:49 +0200329 ulong crit_raw = vcpu->arch.shared->critical;
330 ulong crit_r1 = kvmppc_get_gpr(vcpu, 1);
331 bool crit;
Alexander Grafc5335f12010-08-30 14:03:24 +0200332 bool keep_irq = false;
Scott Woodd30f6e42011-12-20 15:34:43 +0000333 enum int_class int_class;
Mihai Caraman95e90b42012-10-11 06:13:26 +0000334 ulong new_msr = vcpu->arch.shared->msr;
Alexander Graf5c6cedf2010-07-29 14:47:49 +0200335
336 /* Truncate crit indicators in 32 bit mode */
337 if (!(vcpu->arch.shared->msr & MSR_SF)) {
338 crit_raw &= 0xffffffff;
339 crit_r1 &= 0xffffffff;
340 }
341
342 /* Critical section when crit == r1 */
343 crit = (crit_raw == crit_r1);
344 /* ... and we're in supervisor mode */
345 crit = crit && !(vcpu->arch.shared->msr & MSR_PR);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500346
Alexander Grafc5335f12010-08-30 14:03:24 +0200347 if (priority == BOOKE_IRQPRIO_EXTERNAL_LEVEL) {
348 priority = BOOKE_IRQPRIO_EXTERNAL;
349 keep_irq = true;
350 }
351
Scott Wood5df554ad2013-04-12 14:08:46 +0000352 if ((priority == BOOKE_IRQPRIO_EXTERNAL) && vcpu->arch.epr_flags)
Alexander Graf1c810632013-01-04 18:12:48 +0100353 update_epr = true;
354
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600355 switch (priority) {
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600356 case BOOKE_IRQPRIO_DTLB_MISS:
Liu Yudaf5e272010-02-02 19:44:35 +0800357 case BOOKE_IRQPRIO_DATA_STORAGE:
Alexander Graf011da892013-01-31 14:17:38 +0100358 case BOOKE_IRQPRIO_ALIGNMENT:
Liu Yudaf5e272010-02-02 19:44:35 +0800359 update_dear = true;
360 /* fall through */
361 case BOOKE_IRQPRIO_INST_STORAGE:
362 case BOOKE_IRQPRIO_PROGRAM:
363 update_esr = true;
364 /* fall through */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600365 case BOOKE_IRQPRIO_ITLB_MISS:
366 case BOOKE_IRQPRIO_SYSCALL:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600367 case BOOKE_IRQPRIO_FP_UNAVAIL:
Hollis Blanchardbb3a8a12009-01-03 16:23:13 -0600368 case BOOKE_IRQPRIO_SPE_UNAVAIL:
369 case BOOKE_IRQPRIO_SPE_FP_DATA:
370 case BOOKE_IRQPRIO_SPE_FP_ROUND:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600371 case BOOKE_IRQPRIO_AP_UNAVAIL:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600372 allowed = 1;
Alexander Graf79300f82012-02-15 19:12:29 +0000373 msr_mask = MSR_CE | MSR_ME | MSR_DE;
Scott Woodd30f6e42011-12-20 15:34:43 +0000374 int_class = INT_CLASS_NONCRIT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500375 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000376 case BOOKE_IRQPRIO_WATCHDOG:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600377 case BOOKE_IRQPRIO_CRITICAL:
Alexander Graf4ab96912012-02-15 13:28:48 +0000378 case BOOKE_IRQPRIO_DBELL_CRIT:
Alexander Graf666e7252010-07-29 14:47:43 +0200379 allowed = vcpu->arch.shared->msr & MSR_CE;
Scott Woodd30f6e42011-12-20 15:34:43 +0000380 allowed = allowed && !crit;
Alexander Graf79300f82012-02-15 19:12:29 +0000381 msr_mask = MSR_ME;
Scott Woodd30f6e42011-12-20 15:34:43 +0000382 int_class = INT_CLASS_CRIT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500383 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600384 case BOOKE_IRQPRIO_MACHINE_CHECK:
Alexander Graf666e7252010-07-29 14:47:43 +0200385 allowed = vcpu->arch.shared->msr & MSR_ME;
Scott Woodd30f6e42011-12-20 15:34:43 +0000386 allowed = allowed && !crit;
Scott Woodd30f6e42011-12-20 15:34:43 +0000387 int_class = INT_CLASS_MC;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500388 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600389 case BOOKE_IRQPRIO_DECREMENTER:
390 case BOOKE_IRQPRIO_FIT:
Scott Wooddfd4d472011-11-17 12:39:59 +0000391 keep_irq = true;
392 /* fall through */
393 case BOOKE_IRQPRIO_EXTERNAL:
Alexander Graf4ab96912012-02-15 13:28:48 +0000394 case BOOKE_IRQPRIO_DBELL:
Alexander Graf666e7252010-07-29 14:47:43 +0200395 allowed = vcpu->arch.shared->msr & MSR_EE;
Alexander Graf5c6cedf2010-07-29 14:47:49 +0200396 allowed = allowed && !crit;
Alexander Graf79300f82012-02-15 19:12:29 +0000397 msr_mask = MSR_CE | MSR_ME | MSR_DE;
Scott Woodd30f6e42011-12-20 15:34:43 +0000398 int_class = INT_CLASS_NONCRIT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500399 break;
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600400 case BOOKE_IRQPRIO_DEBUG:
Alexander Graf666e7252010-07-29 14:47:43 +0200401 allowed = vcpu->arch.shared->msr & MSR_DE;
Scott Woodd30f6e42011-12-20 15:34:43 +0000402 allowed = allowed && !crit;
Alexander Graf79300f82012-02-15 19:12:29 +0000403 msr_mask = MSR_ME;
Scott Woodd30f6e42011-12-20 15:34:43 +0000404 int_class = INT_CLASS_CRIT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500405 break;
406 }
407
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600408 if (allowed) {
Scott Woodd30f6e42011-12-20 15:34:43 +0000409 switch (int_class) {
410 case INT_CLASS_NONCRIT:
411 set_guest_srr(vcpu, vcpu->arch.pc,
412 vcpu->arch.shared->msr);
413 break;
414 case INT_CLASS_CRIT:
415 set_guest_csrr(vcpu, vcpu->arch.pc,
416 vcpu->arch.shared->msr);
417 break;
418 case INT_CLASS_DBG:
419 set_guest_dsrr(vcpu, vcpu->arch.pc,
420 vcpu->arch.shared->msr);
421 break;
422 case INT_CLASS_MC:
423 set_guest_mcsrr(vcpu, vcpu->arch.pc,
424 vcpu->arch.shared->msr);
425 break;
426 }
427
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600428 vcpu->arch.pc = vcpu->arch.ivpr | vcpu->arch.ivor[priority];
Liu Yudaf5e272010-02-02 19:44:35 +0800429 if (update_esr == true)
Scott Woodd30f6e42011-12-20 15:34:43 +0000430 set_guest_esr(vcpu, vcpu->arch.queued_esr);
Liu Yudaf5e272010-02-02 19:44:35 +0800431 if (update_dear == true)
Bharat Bhushana5414d42014-07-17 17:01:37 +0530432 kvmppc_set_dar(vcpu, vcpu->arch.queued_dear);
Scott Wood5df554ad2013-04-12 14:08:46 +0000433 if (update_epr == true) {
434 if (vcpu->arch.epr_flags & KVMPPC_EPR_USER)
435 kvm_make_request(KVM_REQ_EPR_EXIT, vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000436 else if (vcpu->arch.epr_flags & KVMPPC_EPR_KERNEL) {
437 BUG_ON(vcpu->arch.irq_type != KVMPPC_IRQ_MPIC);
438 kvmppc_mpic_set_epr(vcpu);
439 }
Scott Wood5df554ad2013-04-12 14:08:46 +0000440 }
Mihai Caraman95e90b42012-10-11 06:13:26 +0000441
442 new_msr &= msr_mask;
443#if defined(CONFIG_64BIT)
444 if (vcpu->arch.epcr & SPRN_EPCR_ICM)
445 new_msr |= MSR_CM;
446#endif
447 kvmppc_set_msr(vcpu, new_msr);
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600448
Alexander Grafc5335f12010-08-30 14:03:24 +0200449 if (!keep_irq)
450 clear_bit(priority, &vcpu->arch.pending_exceptions);
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600451 }
452
Scott Woodd30f6e42011-12-20 15:34:43 +0000453#ifdef CONFIG_KVM_BOOKE_HV
454 /*
455 * If an interrupt is pending but masked, raise a guest doorbell
456 * so that we are notified when the guest enables the relevant
457 * MSR bit.
458 */
459 if (vcpu->arch.pending_exceptions & BOOKE_IRQMASK_EE)
460 kvmppc_set_pending_interrupt(vcpu, INT_CLASS_NONCRIT);
461 if (vcpu->arch.pending_exceptions & BOOKE_IRQMASK_CE)
462 kvmppc_set_pending_interrupt(vcpu, INT_CLASS_CRIT);
463 if (vcpu->arch.pending_exceptions & BOOKE_IRQPRIO_MACHINE_CHECK)
464 kvmppc_set_pending_interrupt(vcpu, INT_CLASS_MC);
465#endif
466
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600467 return allowed;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500468}
469
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000470/*
471 * Return the number of jiffies until the next timeout. If the timeout is
472 * longer than the NEXT_TIMER_MAX_DELTA, then return NEXT_TIMER_MAX_DELTA
473 * because the larger value can break the timer APIs.
474 */
475static unsigned long watchdog_next_timeout(struct kvm_vcpu *vcpu)
476{
477 u64 tb, wdt_tb, wdt_ticks = 0;
478 u64 nr_jiffies = 0;
479 u32 period = TCR_GET_WP(vcpu->arch.tcr);
480
481 wdt_tb = 1ULL << (63 - period);
482 tb = get_tb();
483 /*
484 * The watchdog timeout will hapeen when TB bit corresponding
485 * to watchdog will toggle from 0 to 1.
486 */
487 if (tb & wdt_tb)
488 wdt_ticks = wdt_tb;
489
490 wdt_ticks += wdt_tb - (tb & (wdt_tb - 1));
491
492 /* Convert timebase ticks to jiffies */
493 nr_jiffies = wdt_ticks;
494
495 if (do_div(nr_jiffies, tb_ticks_per_jiffy))
496 nr_jiffies++;
497
498 return min_t(unsigned long long, nr_jiffies, NEXT_TIMER_MAX_DELTA);
499}
500
501static void arm_next_watchdog(struct kvm_vcpu *vcpu)
502{
503 unsigned long nr_jiffies;
504 unsigned long flags;
505
506 /*
507 * If TSR_ENW and TSR_WIS are not set then no need to exit to
508 * userspace, so clear the KVM_REQ_WATCHDOG request.
509 */
510 if ((vcpu->arch.tsr & (TSR_ENW | TSR_WIS)) != (TSR_ENW | TSR_WIS))
511 clear_bit(KVM_REQ_WATCHDOG, &vcpu->requests);
512
513 spin_lock_irqsave(&vcpu->arch.wdt_lock, flags);
514 nr_jiffies = watchdog_next_timeout(vcpu);
515 /*
516 * If the number of jiffies of watchdog timer >= NEXT_TIMER_MAX_DELTA
517 * then do not run the watchdog timer as this can break timer APIs.
518 */
519 if (nr_jiffies < NEXT_TIMER_MAX_DELTA)
520 mod_timer(&vcpu->arch.wdt_timer, jiffies + nr_jiffies);
521 else
522 del_timer(&vcpu->arch.wdt_timer);
523 spin_unlock_irqrestore(&vcpu->arch.wdt_lock, flags);
524}
525
526void kvmppc_watchdog_func(unsigned long data)
527{
528 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
529 u32 tsr, new_tsr;
530 int final;
531
532 do {
533 new_tsr = tsr = vcpu->arch.tsr;
534 final = 0;
535
536 /* Time out event */
537 if (tsr & TSR_ENW) {
538 if (tsr & TSR_WIS)
539 final = 1;
540 else
541 new_tsr = tsr | TSR_WIS;
542 } else {
543 new_tsr = tsr | TSR_ENW;
544 }
545 } while (cmpxchg(&vcpu->arch.tsr, tsr, new_tsr) != tsr);
546
547 if (new_tsr & TSR_WIS) {
548 smp_wmb();
549 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
550 kvm_vcpu_kick(vcpu);
551 }
552
553 /*
554 * If this is final watchdog expiry and some action is required
555 * then exit to userspace.
556 */
557 if (final && (vcpu->arch.tcr & TCR_WRC_MASK) &&
558 vcpu->arch.watchdog_enabled) {
559 smp_wmb();
560 kvm_make_request(KVM_REQ_WATCHDOG, vcpu);
561 kvm_vcpu_kick(vcpu);
562 }
563
564 /*
565 * Stop running the watchdog timer after final expiration to
566 * prevent the host from being flooded with timers if the
567 * guest sets a short period.
568 * Timers will resume when TSR/TCR is updated next time.
569 */
570 if (!final)
571 arm_next_watchdog(vcpu);
572}
573
Scott Wooddfd4d472011-11-17 12:39:59 +0000574static void update_timer_ints(struct kvm_vcpu *vcpu)
575{
576 if ((vcpu->arch.tcr & TCR_DIE) && (vcpu->arch.tsr & TSR_DIS))
577 kvmppc_core_queue_dec(vcpu);
578 else
579 kvmppc_core_dequeue_dec(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000580
581 if ((vcpu->arch.tcr & TCR_WIE) && (vcpu->arch.tsr & TSR_WIS))
582 kvmppc_core_queue_watchdog(vcpu);
583 else
584 kvmppc_core_dequeue_watchdog(vcpu);
Scott Wooddfd4d472011-11-17 12:39:59 +0000585}
586
Scott Woodc59a6a32011-11-08 18:23:25 -0600587static void kvmppc_core_check_exceptions(struct kvm_vcpu *vcpu)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500588{
589 unsigned long *pending = &vcpu->arch.pending_exceptions;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500590 unsigned int priority;
591
Hollis Blanchard9ab80842008-11-05 09:36:22 -0600592 priority = __ffs(*pending);
Alexander Graf8b3a00f2012-02-16 14:12:46 +0000593 while (priority < BOOKE_IRQPRIO_MAX) {
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600594 if (kvmppc_booke_irqprio_deliver(vcpu, priority))
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500595 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500596
597 priority = find_next_bit(pending,
598 BITS_PER_BYTE * sizeof(*pending),
599 priority + 1);
600 }
Alexander Graf90bba352010-07-29 14:47:51 +0200601
602 /* Tell the guest about our interrupt status */
Scott Wood29ac26e2011-11-08 18:23:27 -0600603 vcpu->arch.shared->int_pending = !!*pending;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500604}
605
Scott Woodc59a6a32011-11-08 18:23:25 -0600606/* Check pending exceptions and deliver one, if possible. */
Alexander Grafa8e4ef82012-02-16 14:07:37 +0000607int kvmppc_core_prepare_to_enter(struct kvm_vcpu *vcpu)
Scott Woodc59a6a32011-11-08 18:23:25 -0600608{
Alexander Grafa8e4ef82012-02-16 14:07:37 +0000609 int r = 0;
Scott Woodc59a6a32011-11-08 18:23:25 -0600610 WARN_ON_ONCE(!irqs_disabled());
611
612 kvmppc_core_check_exceptions(vcpu);
613
Alexander Grafb8c649a2012-12-20 04:52:39 +0000614 if (vcpu->requests) {
615 /* Exception delivery raised request; start over */
616 return 1;
617 }
618
Scott Woodc59a6a32011-11-08 18:23:25 -0600619 if (vcpu->arch.shared->msr & MSR_WE) {
620 local_irq_enable();
621 kvm_vcpu_block(vcpu);
Alexander Graf966cd0f2012-03-14 16:55:08 +0100622 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Scott Wood6c85f522014-01-09 19:18:40 -0600623 hard_irq_disable();
Scott Woodc59a6a32011-11-08 18:23:25 -0600624
625 kvmppc_set_exit_type(vcpu, EMULATED_MTMSRWE_EXITS);
Alexander Grafa8e4ef82012-02-16 14:07:37 +0000626 r = 1;
Scott Woodc59a6a32011-11-08 18:23:25 -0600627 };
Alexander Grafa8e4ef82012-02-16 14:07:37 +0000628
629 return r;
630}
631
Alexander Graf7c973a22012-08-13 12:50:35 +0200632int kvmppc_core_check_requests(struct kvm_vcpu *vcpu)
Alexander Graf4ffc6352012-08-08 20:31:13 +0200633{
Alexander Graf7c973a22012-08-13 12:50:35 +0200634 int r = 1; /* Indicate we want to get back into the guest */
635
Alexander Graf2d8185d2012-08-10 12:31:12 +0200636 if (kvm_check_request(KVM_REQ_PENDING_TIMER, vcpu))
637 update_timer_ints(vcpu);
Alexander Graf862d31f2012-07-31 00:19:50 +0200638#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Alexander Graf2d8185d2012-08-10 12:31:12 +0200639 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
640 kvmppc_core_flush_tlb(vcpu);
Alexander Graf862d31f2012-07-31 00:19:50 +0200641#endif
Alexander Graf7c973a22012-08-13 12:50:35 +0200642
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000643 if (kvm_check_request(KVM_REQ_WATCHDOG, vcpu)) {
644 vcpu->run->exit_reason = KVM_EXIT_WATCHDOG;
645 r = 0;
646 }
647
Alexander Graf1c810632013-01-04 18:12:48 +0100648 if (kvm_check_request(KVM_REQ_EPR_EXIT, vcpu)) {
649 vcpu->run->epr.epr = 0;
650 vcpu->arch.epr_needed = true;
651 vcpu->run->exit_reason = KVM_EXIT_EPR;
652 r = 0;
653 }
654
Alexander Graf7c973a22012-08-13 12:50:35 +0200655 return r;
Alexander Graf4ffc6352012-08-08 20:31:13 +0200656}
657
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000658int kvmppc_vcpu_run(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
659{
Alexander Graf7ee78852012-08-13 12:44:41 +0200660 int ret, s;
Scott Woodf5f97212013-11-22 15:52:29 -0600661 struct debug_reg debug;
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000662
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200663 if (!vcpu->arch.sane) {
664 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
665 return -EINVAL;
666 }
667
Alexander Graf7ee78852012-08-13 12:44:41 +0200668 s = kvmppc_prepare_to_enter(vcpu);
669 if (s <= 0) {
Alexander Graf7ee78852012-08-13 12:44:41 +0200670 ret = s;
Scott Wood1d1ef222011-11-08 16:11:59 -0600671 goto out;
672 }
Scott Wood6c85f522014-01-09 19:18:40 -0600673 /* interrupts now hard-disabled */
Scott Wood1d1ef222011-11-08 16:11:59 -0600674
Scott Wood8fae8452011-12-20 15:34:45 +0000675#ifdef CONFIG_PPC_FPU
676 /* Save userspace FPU state in stack */
677 enable_kernel_fp();
Scott Wood8fae8452011-12-20 15:34:45 +0000678
679 /*
680 * Since we can't trap on MSR_FP in GS-mode, we consider the guest
681 * as always using the FPU. Kernel usage of FP (via
682 * enable_kernel_fp()) in this thread must not occur while
683 * vcpu->fpu_active is set.
684 */
685 vcpu->fpu_active = 1;
686
687 kvmppc_load_guest_fp(vcpu);
688#endif
689
Bharat Bhushance11e482013-07-04 12:27:47 +0530690 /* Switch to guest debug context */
Scott Woodf5f97212013-11-22 15:52:29 -0600691 debug = vcpu->arch.shadow_dbg_reg;
692 switch_booke_debug_regs(&debug);
693 debug = current->thread.debug;
Bharat Bhushance11e482013-07-04 12:27:47 +0530694 current->thread.debug = vcpu->arch.shadow_dbg_reg;
695
Bharat Bhushan08c9a182013-11-18 11:18:54 +0530696 vcpu->arch.pgdir = current->mm->pgd;
Scott Wood5f1c2482013-07-10 17:47:39 -0500697 kvmppc_fix_ee_before_entry();
Scott Woodf8941fbe2013-06-11 11:38:31 -0500698
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000699 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
Scott Wood8fae8452011-12-20 15:34:45 +0000700
Alexander Graf24afa37b2012-08-12 12:42:30 +0200701 /* No need for kvm_guest_exit. It's done in handle_exit.
702 We also get here with interrupts enabled. */
703
Bharat Bhushance11e482013-07-04 12:27:47 +0530704 /* Switch back to user space debug context */
Scott Woodf5f97212013-11-22 15:52:29 -0600705 switch_booke_debug_regs(&debug);
706 current->thread.debug = debug;
Bharat Bhushance11e482013-07-04 12:27:47 +0530707
Scott Wood8fae8452011-12-20 15:34:45 +0000708#ifdef CONFIG_PPC_FPU
709 kvmppc_save_guest_fp(vcpu);
710
711 vcpu->fpu_active = 0;
Scott Wood8fae8452011-12-20 15:34:45 +0000712#endif
713
Scott Wood1d1ef222011-11-08 16:11:59 -0600714out:
Alexander Grafd69c6432012-08-08 20:44:20 +0200715 vcpu->mode = OUTSIDE_GUEST_MODE;
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000716 return ret;
717}
718
Scott Woodd30f6e42011-12-20 15:34:43 +0000719static int emulation_exit(struct kvm_run *run, struct kvm_vcpu *vcpu)
720{
721 enum emulation_result er;
722
723 er = kvmppc_emulate_instruction(run, vcpu);
724 switch (er) {
725 case EMULATE_DONE:
726 /* don't overwrite subtypes, just account kvm_stats */
727 kvmppc_account_exit_stat(vcpu, EMULATED_INST_EXITS);
728 /* Future optimization: only reload non-volatiles if
729 * they were actually modified by emulation. */
730 return RESUME_GUEST_NV;
731
732 case EMULATE_DO_DCR:
733 run->exit_reason = KVM_EXIT_DCR;
734 return RESUME_HOST;
735
736 case EMULATE_FAIL:
Scott Woodd30f6e42011-12-20 15:34:43 +0000737 printk(KERN_CRIT "%s: emulation at %lx failed (%08x)\n",
738 __func__, vcpu->arch.pc, vcpu->arch.last_inst);
739 /* For debugging, encode the failing instruction and
740 * report it to userspace. */
741 run->hw.hardware_exit_reason = ~0ULL << 32;
742 run->hw.hardware_exit_reason |= vcpu->arch.last_inst;
Alexander Grafd1ff5492012-02-16 13:24:03 +0000743 kvmppc_core_queue_program(vcpu, ESR_PIL);
Scott Woodd30f6e42011-12-20 15:34:43 +0000744 return RESUME_HOST;
745
Bharat Bhushan9b4f5302013-04-08 00:32:15 +0000746 case EMULATE_EXIT_USER:
747 return RESUME_HOST;
748
Scott Woodd30f6e42011-12-20 15:34:43 +0000749 default:
750 BUG();
751 }
752}
753
Bharat Bhushance11e482013-07-04 12:27:47 +0530754static int kvmppc_handle_debug(struct kvm_run *run, struct kvm_vcpu *vcpu)
755{
756 struct debug_reg *dbg_reg = &(vcpu->arch.shadow_dbg_reg);
757 u32 dbsr = vcpu->arch.dbsr;
758
759 run->debug.arch.status = 0;
760 run->debug.arch.address = vcpu->arch.pc;
761
762 if (dbsr & (DBSR_IAC1 | DBSR_IAC2 | DBSR_IAC3 | DBSR_IAC4)) {
763 run->debug.arch.status |= KVMPPC_DEBUG_BREAKPOINT;
764 } else {
765 if (dbsr & (DBSR_DAC1W | DBSR_DAC2W))
766 run->debug.arch.status |= KVMPPC_DEBUG_WATCH_WRITE;
767 else if (dbsr & (DBSR_DAC1R | DBSR_DAC2R))
768 run->debug.arch.status |= KVMPPC_DEBUG_WATCH_READ;
769 if (dbsr & (DBSR_DAC1R | DBSR_DAC1W))
770 run->debug.arch.address = dbg_reg->dac1;
771 else if (dbsr & (DBSR_DAC2R | DBSR_DAC2W))
772 run->debug.arch.address = dbg_reg->dac2;
773 }
774
775 return RESUME_HOST;
776}
777
Alexander Graf4e642cc2012-02-20 23:57:26 +0100778static void kvmppc_fill_pt_regs(struct pt_regs *regs)
779{
780 ulong r1, ip, msr, lr;
781
782 asm("mr %0, 1" : "=r"(r1));
783 asm("mflr %0" : "=r"(lr));
784 asm("mfmsr %0" : "=r"(msr));
785 asm("bl 1f; 1: mflr %0" : "=r"(ip));
786
787 memset(regs, 0, sizeof(*regs));
788 regs->gpr[1] = r1;
789 regs->nip = ip;
790 regs->msr = msr;
791 regs->link = lr;
792}
793
Bharat Bhushan6328e592012-06-20 05:56:53 +0000794/*
795 * For interrupts needed to be handled by host interrupt handlers,
796 * corresponding host handler are called from here in similar way
797 * (but not exact) as they are called from low level handler
798 * (such as from arch/powerpc/kernel/head_fsl_booke.S).
799 */
Alexander Graf4e642cc2012-02-20 23:57:26 +0100800static void kvmppc_restart_interrupt(struct kvm_vcpu *vcpu,
801 unsigned int exit_nr)
802{
803 struct pt_regs regs;
804
805 switch (exit_nr) {
806 case BOOKE_INTERRUPT_EXTERNAL:
807 kvmppc_fill_pt_regs(&regs);
808 do_IRQ(&regs);
809 break;
810 case BOOKE_INTERRUPT_DECREMENTER:
811 kvmppc_fill_pt_regs(&regs);
812 timer_interrupt(&regs);
813 break;
Tiejun Chen5f17ce82013-05-13 10:00:45 +0800814#if defined(CONFIG_PPC_DOORBELL)
Alexander Graf4e642cc2012-02-20 23:57:26 +0100815 case BOOKE_INTERRUPT_DOORBELL:
816 kvmppc_fill_pt_regs(&regs);
817 doorbell_exception(&regs);
818 break;
819#endif
820 case BOOKE_INTERRUPT_MACHINE_CHECK:
821 /* FIXME */
822 break;
Alexander Graf7cc1e8e2012-02-22 16:26:34 +0100823 case BOOKE_INTERRUPT_PERFORMANCE_MONITOR:
824 kvmppc_fill_pt_regs(&regs);
825 performance_monitor_exception(&regs);
826 break;
Bharat Bhushan6328e592012-06-20 05:56:53 +0000827 case BOOKE_INTERRUPT_WATCHDOG:
828 kvmppc_fill_pt_regs(&regs);
829#ifdef CONFIG_BOOKE_WDT
830 WatchdogException(&regs);
831#else
832 unknown_exception(&regs);
833#endif
834 break;
835 case BOOKE_INTERRUPT_CRITICAL:
836 unknown_exception(&regs);
837 break;
Bharat Bhushance11e482013-07-04 12:27:47 +0530838 case BOOKE_INTERRUPT_DEBUG:
839 /* Save DBSR before preemption is enabled */
840 vcpu->arch.dbsr = mfspr(SPRN_DBSR);
841 kvmppc_clear_dbsr();
842 break;
Alexander Graf4e642cc2012-02-20 23:57:26 +0100843 }
844}
845
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500846/**
847 * kvmppc_handle_exit
848 *
849 * Return value is in the form (errcode<<2 | RESUME_FLAG_HOST | RESUME_FLAG_NV)
850 */
851int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu,
852 unsigned int exit_nr)
853{
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500854 int r = RESUME_HOST;
Alexander Graf7ee78852012-08-13 12:44:41 +0200855 int s;
Scott Woodf1e89022013-06-06 19:16:31 -0500856 int idx;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500857
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600858 /* update before a new last_exit_type is rewritten */
859 kvmppc_update_timing_stats(vcpu);
860
Alexander Graf4e642cc2012-02-20 23:57:26 +0100861 /* restart interrupts if they were meant for the host */
862 kvmppc_restart_interrupt(vcpu, exit_nr);
Scott Woodd30f6e42011-12-20 15:34:43 +0000863
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500864 local_irq_enable();
865
Alexander Graf97c95052012-08-02 15:10:00 +0200866 trace_kvm_exit(exit_nr, vcpu);
Alexander Graf706fb732012-08-12 11:29:09 +0200867 kvm_guest_exit();
Alexander Graf97c95052012-08-02 15:10:00 +0200868
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500869 run->exit_reason = KVM_EXIT_UNKNOWN;
870 run->ready_for_interrupt_injection = 1;
871
872 switch (exit_nr) {
873 case BOOKE_INTERRUPT_MACHINE_CHECK:
Alexander Grafc35c9d82012-02-20 12:21:18 +0100874 printk("MACHINE CHECK: %lx\n", mfspr(SPRN_MCSR));
875 kvmppc_dump_vcpu(vcpu);
876 /* For debugging, send invalid exit reason to user space */
877 run->hw.hardware_exit_reason = ~1ULL << 32;
878 run->hw.hardware_exit_reason |= mfspr(SPRN_MCSR);
879 r = RESUME_HOST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500880 break;
881
882 case BOOKE_INTERRUPT_EXTERNAL:
Hollis Blanchard7b701592008-12-02 15:51:58 -0600883 kvmppc_account_exit(vcpu, EXT_INTR_EXITS);
Hollis Blanchard1b6766c2008-11-05 09:36:21 -0600884 r = RESUME_GUEST;
885 break;
886
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500887 case BOOKE_INTERRUPT_DECREMENTER:
Hollis Blanchard7b701592008-12-02 15:51:58 -0600888 kvmppc_account_exit(vcpu, DEC_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500889 r = RESUME_GUEST;
890 break;
891
Bharat Bhushan6328e592012-06-20 05:56:53 +0000892 case BOOKE_INTERRUPT_WATCHDOG:
893 r = RESUME_GUEST;
894 break;
895
Scott Woodd30f6e42011-12-20 15:34:43 +0000896 case BOOKE_INTERRUPT_DOORBELL:
897 kvmppc_account_exit(vcpu, DBELL_EXITS);
Scott Woodd30f6e42011-12-20 15:34:43 +0000898 r = RESUME_GUEST;
899 break;
900
901 case BOOKE_INTERRUPT_GUEST_DBELL_CRIT:
902 kvmppc_account_exit(vcpu, GDBELL_EXITS);
903
904 /*
905 * We are here because there is a pending guest interrupt
906 * which could not be delivered as MSR_CE or MSR_ME was not
907 * set. Once we break from here we will retry delivery.
908 */
909 r = RESUME_GUEST;
910 break;
911
912 case BOOKE_INTERRUPT_GUEST_DBELL:
913 kvmppc_account_exit(vcpu, GDBELL_EXITS);
914
915 /*
916 * We are here because there is a pending guest interrupt
917 * which could not be delivered as MSR_EE was not set. Once
918 * we break from here we will retry delivery.
919 */
920 r = RESUME_GUEST;
921 break;
922
Alexander Graf95f2e922012-02-20 22:45:12 +0100923 case BOOKE_INTERRUPT_PERFORMANCE_MONITOR:
924 r = RESUME_GUEST;
925 break;
926
Scott Woodd30f6e42011-12-20 15:34:43 +0000927 case BOOKE_INTERRUPT_HV_PRIV:
928 r = emulation_exit(run, vcpu);
929 break;
930
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500931 case BOOKE_INTERRUPT_PROGRAM:
Scott Woodd30f6e42011-12-20 15:34:43 +0000932 if (vcpu->arch.shared->msr & (MSR_PR | MSR_GS)) {
Alexander Graf0268597c2012-02-20 12:33:22 +0100933 /*
934 * Program traps generated by user-level software must
935 * be handled by the guest kernel.
936 *
937 * In GS mode, hypervisor privileged instructions trap
938 * on BOOKE_INTERRUPT_HV_PRIV, not here, so these are
939 * actual program interrupts, handled by the guest.
940 */
Liu Yudaf5e272010-02-02 19:44:35 +0800941 kvmppc_core_queue_program(vcpu, vcpu->arch.fault_esr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500942 r = RESUME_GUEST;
Hollis Blanchard7b701592008-12-02 15:51:58 -0600943 kvmppc_account_exit(vcpu, USR_PR_INST);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500944 break;
945 }
946
Scott Woodd30f6e42011-12-20 15:34:43 +0000947 r = emulation_exit(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500948 break;
949
Christian Ehrhardtde368dc2008-04-29 18:18:23 +0200950 case BOOKE_INTERRUPT_FP_UNAVAIL:
Hollis Blanchardd4cf3892008-11-05 09:36:23 -0600951 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_FP_UNAVAIL);
Hollis Blanchard7b701592008-12-02 15:51:58 -0600952 kvmppc_account_exit(vcpu, FP_UNAVAIL);
Christian Ehrhardtde368dc2008-04-29 18:18:23 +0200953 r = RESUME_GUEST;
954 break;
955
Scott Wood4cd35f62011-06-14 18:34:31 -0500956#ifdef CONFIG_SPE
957 case BOOKE_INTERRUPT_SPE_UNAVAIL: {
958 if (vcpu->arch.shared->msr & MSR_SPE)
959 kvmppc_vcpu_enable_spe(vcpu);
960 else
961 kvmppc_booke_queue_irqprio(vcpu,
962 BOOKE_IRQPRIO_SPE_UNAVAIL);
Hollis Blanchardbb3a8a12009-01-03 16:23:13 -0600963 r = RESUME_GUEST;
964 break;
Scott Wood4cd35f62011-06-14 18:34:31 -0500965 }
Hollis Blanchardbb3a8a12009-01-03 16:23:13 -0600966
967 case BOOKE_INTERRUPT_SPE_FP_DATA:
968 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SPE_FP_DATA);
969 r = RESUME_GUEST;
970 break;
971
972 case BOOKE_INTERRUPT_SPE_FP_ROUND:
973 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SPE_FP_ROUND);
974 r = RESUME_GUEST;
975 break;
Scott Wood4cd35f62011-06-14 18:34:31 -0500976#else
977 case BOOKE_INTERRUPT_SPE_UNAVAIL:
978 /*
979 * Guest wants SPE, but host kernel doesn't support it. Send
980 * an "unimplemented operation" program check to the guest.
981 */
982 kvmppc_core_queue_program(vcpu, ESR_PUO | ESR_SPV);
983 r = RESUME_GUEST;
984 break;
985
986 /*
987 * These really should never happen without CONFIG_SPE,
988 * as we should never enable the real MSR[SPE] in the guest.
989 */
990 case BOOKE_INTERRUPT_SPE_FP_DATA:
991 case BOOKE_INTERRUPT_SPE_FP_ROUND:
992 printk(KERN_CRIT "%s: unexpected SPE interrupt %u at %08lx\n",
993 __func__, exit_nr, vcpu->arch.pc);
994 run->hw.hardware_exit_reason = exit_nr;
995 r = RESUME_HOST;
996 break;
997#endif
Hollis Blanchardbb3a8a12009-01-03 16:23:13 -0600998
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500999 case BOOKE_INTERRUPT_DATA_STORAGE:
Liu Yudaf5e272010-02-02 19:44:35 +08001000 kvmppc_core_queue_data_storage(vcpu, vcpu->arch.fault_dear,
1001 vcpu->arch.fault_esr);
Hollis Blanchard7b701592008-12-02 15:51:58 -06001002 kvmppc_account_exit(vcpu, DSI_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001003 r = RESUME_GUEST;
1004 break;
1005
1006 case BOOKE_INTERRUPT_INST_STORAGE:
Liu Yudaf5e272010-02-02 19:44:35 +08001007 kvmppc_core_queue_inst_storage(vcpu, vcpu->arch.fault_esr);
Hollis Blanchard7b701592008-12-02 15:51:58 -06001008 kvmppc_account_exit(vcpu, ISI_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001009 r = RESUME_GUEST;
1010 break;
1011
Alexander Graf011da892013-01-31 14:17:38 +01001012 case BOOKE_INTERRUPT_ALIGNMENT:
1013 kvmppc_core_queue_alignment(vcpu, vcpu->arch.fault_dear,
1014 vcpu->arch.fault_esr);
1015 r = RESUME_GUEST;
1016 break;
1017
Scott Woodd30f6e42011-12-20 15:34:43 +00001018#ifdef CONFIG_KVM_BOOKE_HV
1019 case BOOKE_INTERRUPT_HV_SYSCALL:
1020 if (!(vcpu->arch.shared->msr & MSR_PR)) {
1021 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
1022 } else {
1023 /*
1024 * hcall from guest userspace -- send privileged
1025 * instruction program check.
1026 */
1027 kvmppc_core_queue_program(vcpu, ESR_PPR);
1028 }
1029
1030 r = RESUME_GUEST;
1031 break;
1032#else
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001033 case BOOKE_INTERRUPT_SYSCALL:
Alexander Graf2a342ed2010-07-29 14:47:48 +02001034 if (!(vcpu->arch.shared->msr & MSR_PR) &&
1035 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
1036 /* KVM PV hypercalls */
1037 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
1038 r = RESUME_GUEST;
1039 } else {
1040 /* Guest syscalls */
1041 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_SYSCALL);
1042 }
Hollis Blanchard7b701592008-12-02 15:51:58 -06001043 kvmppc_account_exit(vcpu, SYSCALL_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001044 r = RESUME_GUEST;
1045 break;
Scott Woodd30f6e42011-12-20 15:34:43 +00001046#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001047
1048 case BOOKE_INTERRUPT_DTLB_MISS: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001049 unsigned long eaddr = vcpu->arch.fault_dear;
Hollis Blanchard7924bd42008-12-02 15:51:55 -06001050 int gtlb_index;
Hollis Blanchard475e7cd2009-01-03 16:23:00 -06001051 gpa_t gpaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001052 gfn_t gfn;
1053
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001054#ifdef CONFIG_KVM_E500V2
Scott Wooda4cd8b22011-06-14 18:34:41 -05001055 if (!(vcpu->arch.shared->msr & MSR_PR) &&
1056 (eaddr & PAGE_MASK) == vcpu->arch.magic_page_ea) {
1057 kvmppc_map_magic(vcpu);
1058 kvmppc_account_exit(vcpu, DTLB_VIRT_MISS_EXITS);
1059 r = RESUME_GUEST;
1060
1061 break;
1062 }
1063#endif
1064
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001065 /* Check the guest TLB. */
Hollis Blanchardfa86b8d2009-01-03 16:23:03 -06001066 gtlb_index = kvmppc_mmu_dtlb_index(vcpu, eaddr);
Hollis Blanchard7924bd42008-12-02 15:51:55 -06001067 if (gtlb_index < 0) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001068 /* The guest didn't have a mapping for it. */
Liu Yudaf5e272010-02-02 19:44:35 +08001069 kvmppc_core_queue_dtlb_miss(vcpu,
1070 vcpu->arch.fault_dear,
1071 vcpu->arch.fault_esr);
Hollis Blanchardb52a6382009-01-03 16:23:11 -06001072 kvmppc_mmu_dtlb_miss(vcpu);
Hollis Blanchard7b701592008-12-02 15:51:58 -06001073 kvmppc_account_exit(vcpu, DTLB_REAL_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001074 r = RESUME_GUEST;
1075 break;
1076 }
1077
Scott Woodf1e89022013-06-06 19:16:31 -05001078 idx = srcu_read_lock(&vcpu->kvm->srcu);
1079
Hollis Blanchardbe8d1ca2009-01-03 16:23:02 -06001080 gpaddr = kvmppc_mmu_xlate(vcpu, gtlb_index, eaddr);
Hollis Blanchard475e7cd2009-01-03 16:23:00 -06001081 gfn = gpaddr >> PAGE_SHIFT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001082
1083 if (kvm_is_visible_gfn(vcpu->kvm, gfn)) {
1084 /* The guest TLB had a mapping, but the shadow TLB
1085 * didn't, and it is RAM. This could be because:
1086 * a) the entry is mapping the host kernel, or
1087 * b) the guest used a large mapping which we're faking
1088 * Either way, we need to satisfy the fault without
1089 * invoking the guest. */
Hollis Blanchard58a96212009-01-03 16:23:01 -06001090 kvmppc_mmu_map(vcpu, eaddr, gpaddr, gtlb_index);
Hollis Blanchard7b701592008-12-02 15:51:58 -06001091 kvmppc_account_exit(vcpu, DTLB_VIRT_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001092 r = RESUME_GUEST;
1093 } else {
1094 /* Guest has mapped and accessed a page which is not
1095 * actually RAM. */
Hollis Blanchard475e7cd2009-01-03 16:23:00 -06001096 vcpu->arch.paddr_accessed = gpaddr;
Alexander Graf6020c0f2012-03-12 02:26:30 +01001097 vcpu->arch.vaddr_accessed = eaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001098 r = kvmppc_emulate_mmio(run, vcpu);
Hollis Blanchard7b701592008-12-02 15:51:58 -06001099 kvmppc_account_exit(vcpu, MMIO_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001100 }
1101
Scott Woodf1e89022013-06-06 19:16:31 -05001102 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001103 break;
1104 }
1105
1106 case BOOKE_INTERRUPT_ITLB_MISS: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001107 unsigned long eaddr = vcpu->arch.pc;
Hollis Blanchard89168612008-12-02 15:51:53 -06001108 gpa_t gpaddr;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001109 gfn_t gfn;
Hollis Blanchard7924bd42008-12-02 15:51:55 -06001110 int gtlb_index;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001111
1112 r = RESUME_GUEST;
1113
1114 /* Check the guest TLB. */
Hollis Blanchardfa86b8d2009-01-03 16:23:03 -06001115 gtlb_index = kvmppc_mmu_itlb_index(vcpu, eaddr);
Hollis Blanchard7924bd42008-12-02 15:51:55 -06001116 if (gtlb_index < 0) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001117 /* The guest didn't have a mapping for it. */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -06001118 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_ITLB_MISS);
Hollis Blanchardb52a6382009-01-03 16:23:11 -06001119 kvmppc_mmu_itlb_miss(vcpu);
Hollis Blanchard7b701592008-12-02 15:51:58 -06001120 kvmppc_account_exit(vcpu, ITLB_REAL_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001121 break;
1122 }
1123
Hollis Blanchard7b701592008-12-02 15:51:58 -06001124 kvmppc_account_exit(vcpu, ITLB_VIRT_MISS_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001125
Scott Woodf1e89022013-06-06 19:16:31 -05001126 idx = srcu_read_lock(&vcpu->kvm->srcu);
1127
Hollis Blanchardbe8d1ca2009-01-03 16:23:02 -06001128 gpaddr = kvmppc_mmu_xlate(vcpu, gtlb_index, eaddr);
Hollis Blanchard89168612008-12-02 15:51:53 -06001129 gfn = gpaddr >> PAGE_SHIFT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001130
1131 if (kvm_is_visible_gfn(vcpu->kvm, gfn)) {
1132 /* The guest TLB had a mapping, but the shadow TLB
1133 * didn't. This could be because:
1134 * a) the entry is mapping the host kernel, or
1135 * b) the guest used a large mapping which we're faking
1136 * Either way, we need to satisfy the fault without
1137 * invoking the guest. */
Hollis Blanchard58a96212009-01-03 16:23:01 -06001138 kvmppc_mmu_map(vcpu, eaddr, gpaddr, gtlb_index);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001139 } else {
1140 /* Guest mapped and leaped at non-RAM! */
Hollis Blanchardd4cf3892008-11-05 09:36:23 -06001141 kvmppc_booke_queue_irqprio(vcpu, BOOKE_IRQPRIO_MACHINE_CHECK);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001142 }
1143
Scott Woodf1e89022013-06-06 19:16:31 -05001144 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001145 break;
1146 }
1147
Hollis Blanchard6a0ab732008-07-25 13:54:49 -05001148 case BOOKE_INTERRUPT_DEBUG: {
Bharat Bhushance11e482013-07-04 12:27:47 +05301149 r = kvmppc_handle_debug(run, vcpu);
1150 if (r == RESUME_HOST)
1151 run->exit_reason = KVM_EXIT_DEBUG;
Hollis Blanchard7b701592008-12-02 15:51:58 -06001152 kvmppc_account_exit(vcpu, DEBUG_EXITS);
Hollis Blanchard6a0ab732008-07-25 13:54:49 -05001153 break;
1154 }
1155
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001156 default:
1157 printk(KERN_EMERG "exit_nr %d\n", exit_nr);
1158 BUG();
1159 }
1160
Alexander Grafa8e4ef82012-02-16 14:07:37 +00001161 /*
1162 * To avoid clobbering exit_reason, only check for signals if we
1163 * aren't already exiting to userspace for some other reason.
1164 */
Alexander Graf03660ba2012-02-28 12:00:41 +01001165 if (!(r & RESUME_HOST)) {
Alexander Graf7ee78852012-08-13 12:44:41 +02001166 s = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001167 if (s <= 0)
Alexander Graf7ee78852012-08-13 12:44:41 +02001168 r = (s << 2) | RESUME_HOST | (r & RESUME_FLAG_NV);
Scott Wood6c85f522014-01-09 19:18:40 -06001169 else {
1170 /* interrupts now hard-disabled */
Scott Wood5f1c2482013-07-10 17:47:39 -05001171 kvmppc_fix_ee_before_entry();
Alexander Graf03660ba2012-02-28 12:00:41 +01001172 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001173 }
1174
1175 return r;
1176}
1177
Bharat Bhushand26f22c2013-02-24 18:57:11 +00001178static void kvmppc_set_tsr(struct kvm_vcpu *vcpu, u32 new_tsr)
1179{
1180 u32 old_tsr = vcpu->arch.tsr;
1181
1182 vcpu->arch.tsr = new_tsr;
1183
1184 if ((old_tsr ^ vcpu->arch.tsr) & (TSR_ENW | TSR_WIS))
1185 arm_next_watchdog(vcpu);
1186
1187 update_timer_ints(vcpu);
1188}
1189
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001190/* Initial guest state: 16MB mapping 0 -> 0, PC = 0, MSR = 0, R1 = 16MB */
1191int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
1192{
Hollis Blanchard082decf2010-08-07 10:33:56 -07001193 int i;
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001194 int r;
Hollis Blanchard082decf2010-08-07 10:33:56 -07001195
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001196 vcpu->arch.pc = 0;
Scott Woodb5904972011-11-08 18:23:30 -06001197 vcpu->arch.shared->pir = vcpu->vcpu_id;
Alexander Graf8e5b26b2010-01-08 02:58:01 +01001198 kvmppc_set_gpr(vcpu, 1, (16<<20) - 8); /* -8 for the callee-save LR slot */
Scott Woodd30f6e42011-12-20 15:34:43 +00001199 kvmppc_set_msr(vcpu, 0);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001200
Scott Woodd30f6e42011-12-20 15:34:43 +00001201#ifndef CONFIG_KVM_BOOKE_HV
Bharat Bhushance11e482013-07-04 12:27:47 +05301202 vcpu->arch.shadow_msr = MSR_USER | MSR_IS | MSR_DS;
Hollis Blanchard49dd2c42008-07-25 13:54:53 -05001203 vcpu->arch.shadow_pid = 1;
Scott Woodd30f6e42011-12-20 15:34:43 +00001204 vcpu->arch.shared->msr = 0;
1205#endif
Hollis Blanchard49dd2c42008-07-25 13:54:53 -05001206
Hollis Blanchard082decf2010-08-07 10:33:56 -07001207 /* Eye-catching numbers so we know if the guest takes an interrupt
1208 * before it's programmed its own IVPR/IVORs. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001209 vcpu->arch.ivpr = 0x55550000;
Hollis Blanchard082decf2010-08-07 10:33:56 -07001210 for (i = 0; i < BOOKE_IRQPRIO_MAX; i++)
1211 vcpu->arch.ivor[i] = 0x7700 | i * 4;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001212
Hollis Blanchard73e75b42008-12-02 15:51:57 -06001213 kvmppc_init_timing_stats(vcpu);
1214
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001215 r = kvmppc_core_vcpu_setup(vcpu);
1216 kvmppc_sanity_check(vcpu);
1217 return r;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001218}
1219
Bharat Bhushanf61c94b2012-08-08 20:38:19 +00001220int kvmppc_subarch_vcpu_init(struct kvm_vcpu *vcpu)
1221{
1222 /* setup watchdog timer once */
1223 spin_lock_init(&vcpu->arch.wdt_lock);
1224 setup_timer(&vcpu->arch.wdt_timer, kvmppc_watchdog_func,
1225 (unsigned long)vcpu);
1226
1227 return 0;
1228}
1229
1230void kvmppc_subarch_vcpu_uninit(struct kvm_vcpu *vcpu)
1231{
1232 del_timer_sync(&vcpu->arch.wdt_timer);
1233}
1234
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001235int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
1236{
1237 int i;
1238
1239 regs->pc = vcpu->arch.pc;
Alexander Graf992b5b22010-01-08 02:58:02 +01001240 regs->cr = kvmppc_get_cr(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001241 regs->ctr = vcpu->arch.ctr;
1242 regs->lr = vcpu->arch.lr;
Alexander Graf992b5b22010-01-08 02:58:02 +01001243 regs->xer = kvmppc_get_xer(vcpu);
Alexander Graf666e7252010-07-29 14:47:43 +02001244 regs->msr = vcpu->arch.shared->msr;
Bharat Bhushan31579ee2014-07-17 17:01:36 +05301245 regs->srr0 = kvmppc_get_srr0(vcpu);
1246 regs->srr1 = kvmppc_get_srr1(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001247 regs->pid = vcpu->arch.pid;
Alexander Grafa73a9592010-07-29 14:47:47 +02001248 regs->sprg0 = vcpu->arch.shared->sprg0;
1249 regs->sprg1 = vcpu->arch.shared->sprg1;
1250 regs->sprg2 = vcpu->arch.shared->sprg2;
1251 regs->sprg3 = vcpu->arch.shared->sprg3;
Scott Woodb5904972011-11-08 18:23:30 -06001252 regs->sprg4 = vcpu->arch.shared->sprg4;
1253 regs->sprg5 = vcpu->arch.shared->sprg5;
1254 regs->sprg6 = vcpu->arch.shared->sprg6;
1255 regs->sprg7 = vcpu->arch.shared->sprg7;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001256
1257 for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
Alexander Graf8e5b26b2010-01-08 02:58:01 +01001258 regs->gpr[i] = kvmppc_get_gpr(vcpu, i);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001259
1260 return 0;
1261}
1262
1263int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
1264{
1265 int i;
1266
1267 vcpu->arch.pc = regs->pc;
Alexander Graf992b5b22010-01-08 02:58:02 +01001268 kvmppc_set_cr(vcpu, regs->cr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001269 vcpu->arch.ctr = regs->ctr;
1270 vcpu->arch.lr = regs->lr;
Alexander Graf992b5b22010-01-08 02:58:02 +01001271 kvmppc_set_xer(vcpu, regs->xer);
Hollis Blanchardb8fd68a2008-11-05 09:36:20 -06001272 kvmppc_set_msr(vcpu, regs->msr);
Bharat Bhushan31579ee2014-07-17 17:01:36 +05301273 kvmppc_set_srr0(vcpu, regs->srr0);
1274 kvmppc_set_srr1(vcpu, regs->srr1);
Scott Wood5ce941e2011-04-27 17:24:21 -05001275 kvmppc_set_pid(vcpu, regs->pid);
Alexander Grafa73a9592010-07-29 14:47:47 +02001276 vcpu->arch.shared->sprg0 = regs->sprg0;
1277 vcpu->arch.shared->sprg1 = regs->sprg1;
1278 vcpu->arch.shared->sprg2 = regs->sprg2;
1279 vcpu->arch.shared->sprg3 = regs->sprg3;
Scott Woodb5904972011-11-08 18:23:30 -06001280 vcpu->arch.shared->sprg4 = regs->sprg4;
1281 vcpu->arch.shared->sprg5 = regs->sprg5;
1282 vcpu->arch.shared->sprg6 = regs->sprg6;
1283 vcpu->arch.shared->sprg7 = regs->sprg7;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001284
Alexander Graf8e5b26b2010-01-08 02:58:01 +01001285 for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
1286 kvmppc_set_gpr(vcpu, i, regs->gpr[i]);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001287
1288 return 0;
1289}
1290
Scott Wood5ce941e2011-04-27 17:24:21 -05001291static void get_sregs_base(struct kvm_vcpu *vcpu,
1292 struct kvm_sregs *sregs)
1293{
1294 u64 tb = get_tb();
1295
1296 sregs->u.e.features |= KVM_SREGS_E_BASE;
1297
1298 sregs->u.e.csrr0 = vcpu->arch.csrr0;
1299 sregs->u.e.csrr1 = vcpu->arch.csrr1;
1300 sregs->u.e.mcsr = vcpu->arch.mcsr;
Scott Woodd30f6e42011-12-20 15:34:43 +00001301 sregs->u.e.esr = get_guest_esr(vcpu);
Bharat Bhushana5414d42014-07-17 17:01:37 +05301302 sregs->u.e.dear = kvmppc_get_dar(vcpu);
Scott Wood5ce941e2011-04-27 17:24:21 -05001303 sregs->u.e.tsr = vcpu->arch.tsr;
1304 sregs->u.e.tcr = vcpu->arch.tcr;
1305 sregs->u.e.dec = kvmppc_get_dec(vcpu, tb);
1306 sregs->u.e.tb = tb;
1307 sregs->u.e.vrsave = vcpu->arch.vrsave;
1308}
1309
1310static int set_sregs_base(struct kvm_vcpu *vcpu,
1311 struct kvm_sregs *sregs)
1312{
1313 if (!(sregs->u.e.features & KVM_SREGS_E_BASE))
1314 return 0;
1315
1316 vcpu->arch.csrr0 = sregs->u.e.csrr0;
1317 vcpu->arch.csrr1 = sregs->u.e.csrr1;
1318 vcpu->arch.mcsr = sregs->u.e.mcsr;
Scott Woodd30f6e42011-12-20 15:34:43 +00001319 set_guest_esr(vcpu, sregs->u.e.esr);
Bharat Bhushana5414d42014-07-17 17:01:37 +05301320 kvmppc_set_dar(vcpu, sregs->u.e.dear);
Scott Wood5ce941e2011-04-27 17:24:21 -05001321 vcpu->arch.vrsave = sregs->u.e.vrsave;
Scott Wooddfd4d472011-11-17 12:39:59 +00001322 kvmppc_set_tcr(vcpu, sregs->u.e.tcr);
Scott Wood5ce941e2011-04-27 17:24:21 -05001323
Scott Wooddfd4d472011-11-17 12:39:59 +00001324 if (sregs->u.e.update_special & KVM_SREGS_E_UPDATE_DEC) {
Scott Wood5ce941e2011-04-27 17:24:21 -05001325 vcpu->arch.dec = sregs->u.e.dec;
Scott Wooddfd4d472011-11-17 12:39:59 +00001326 kvmppc_emulate_dec(vcpu);
1327 }
Scott Wood5ce941e2011-04-27 17:24:21 -05001328
Bharat Bhushand26f22c2013-02-24 18:57:11 +00001329 if (sregs->u.e.update_special & KVM_SREGS_E_UPDATE_TSR)
1330 kvmppc_set_tsr(vcpu, sregs->u.e.tsr);
Scott Wood5ce941e2011-04-27 17:24:21 -05001331
1332 return 0;
1333}
1334
1335static void get_sregs_arch206(struct kvm_vcpu *vcpu,
1336 struct kvm_sregs *sregs)
1337{
1338 sregs->u.e.features |= KVM_SREGS_E_ARCH206;
1339
Scott Wood841741f2011-09-02 17:39:37 -05001340 sregs->u.e.pir = vcpu->vcpu_id;
Scott Wood5ce941e2011-04-27 17:24:21 -05001341 sregs->u.e.mcsrr0 = vcpu->arch.mcsrr0;
1342 sregs->u.e.mcsrr1 = vcpu->arch.mcsrr1;
1343 sregs->u.e.decar = vcpu->arch.decar;
1344 sregs->u.e.ivpr = vcpu->arch.ivpr;
1345}
1346
1347static int set_sregs_arch206(struct kvm_vcpu *vcpu,
1348 struct kvm_sregs *sregs)
1349{
1350 if (!(sregs->u.e.features & KVM_SREGS_E_ARCH206))
1351 return 0;
1352
Scott Wood841741f2011-09-02 17:39:37 -05001353 if (sregs->u.e.pir != vcpu->vcpu_id)
Scott Wood5ce941e2011-04-27 17:24:21 -05001354 return -EINVAL;
1355
1356 vcpu->arch.mcsrr0 = sregs->u.e.mcsrr0;
1357 vcpu->arch.mcsrr1 = sregs->u.e.mcsrr1;
1358 vcpu->arch.decar = sregs->u.e.decar;
1359 vcpu->arch.ivpr = sregs->u.e.ivpr;
1360
1361 return 0;
1362}
1363
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301364int kvmppc_get_sregs_ivor(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Scott Wood5ce941e2011-04-27 17:24:21 -05001365{
1366 sregs->u.e.features |= KVM_SREGS_E_IVOR;
1367
1368 sregs->u.e.ivor_low[0] = vcpu->arch.ivor[BOOKE_IRQPRIO_CRITICAL];
1369 sregs->u.e.ivor_low[1] = vcpu->arch.ivor[BOOKE_IRQPRIO_MACHINE_CHECK];
1370 sregs->u.e.ivor_low[2] = vcpu->arch.ivor[BOOKE_IRQPRIO_DATA_STORAGE];
1371 sregs->u.e.ivor_low[3] = vcpu->arch.ivor[BOOKE_IRQPRIO_INST_STORAGE];
1372 sregs->u.e.ivor_low[4] = vcpu->arch.ivor[BOOKE_IRQPRIO_EXTERNAL];
1373 sregs->u.e.ivor_low[5] = vcpu->arch.ivor[BOOKE_IRQPRIO_ALIGNMENT];
1374 sregs->u.e.ivor_low[6] = vcpu->arch.ivor[BOOKE_IRQPRIO_PROGRAM];
1375 sregs->u.e.ivor_low[7] = vcpu->arch.ivor[BOOKE_IRQPRIO_FP_UNAVAIL];
1376 sregs->u.e.ivor_low[8] = vcpu->arch.ivor[BOOKE_IRQPRIO_SYSCALL];
1377 sregs->u.e.ivor_low[9] = vcpu->arch.ivor[BOOKE_IRQPRIO_AP_UNAVAIL];
1378 sregs->u.e.ivor_low[10] = vcpu->arch.ivor[BOOKE_IRQPRIO_DECREMENTER];
1379 sregs->u.e.ivor_low[11] = vcpu->arch.ivor[BOOKE_IRQPRIO_FIT];
1380 sregs->u.e.ivor_low[12] = vcpu->arch.ivor[BOOKE_IRQPRIO_WATCHDOG];
1381 sregs->u.e.ivor_low[13] = vcpu->arch.ivor[BOOKE_IRQPRIO_DTLB_MISS];
1382 sregs->u.e.ivor_low[14] = vcpu->arch.ivor[BOOKE_IRQPRIO_ITLB_MISS];
1383 sregs->u.e.ivor_low[15] = vcpu->arch.ivor[BOOKE_IRQPRIO_DEBUG];
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301384 return 0;
Scott Wood5ce941e2011-04-27 17:24:21 -05001385}
1386
1387int kvmppc_set_sregs_ivor(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
1388{
1389 if (!(sregs->u.e.features & KVM_SREGS_E_IVOR))
1390 return 0;
1391
1392 vcpu->arch.ivor[BOOKE_IRQPRIO_CRITICAL] = sregs->u.e.ivor_low[0];
1393 vcpu->arch.ivor[BOOKE_IRQPRIO_MACHINE_CHECK] = sregs->u.e.ivor_low[1];
1394 vcpu->arch.ivor[BOOKE_IRQPRIO_DATA_STORAGE] = sregs->u.e.ivor_low[2];
1395 vcpu->arch.ivor[BOOKE_IRQPRIO_INST_STORAGE] = sregs->u.e.ivor_low[3];
1396 vcpu->arch.ivor[BOOKE_IRQPRIO_EXTERNAL] = sregs->u.e.ivor_low[4];
1397 vcpu->arch.ivor[BOOKE_IRQPRIO_ALIGNMENT] = sregs->u.e.ivor_low[5];
1398 vcpu->arch.ivor[BOOKE_IRQPRIO_PROGRAM] = sregs->u.e.ivor_low[6];
1399 vcpu->arch.ivor[BOOKE_IRQPRIO_FP_UNAVAIL] = sregs->u.e.ivor_low[7];
1400 vcpu->arch.ivor[BOOKE_IRQPRIO_SYSCALL] = sregs->u.e.ivor_low[8];
1401 vcpu->arch.ivor[BOOKE_IRQPRIO_AP_UNAVAIL] = sregs->u.e.ivor_low[9];
1402 vcpu->arch.ivor[BOOKE_IRQPRIO_DECREMENTER] = sregs->u.e.ivor_low[10];
1403 vcpu->arch.ivor[BOOKE_IRQPRIO_FIT] = sregs->u.e.ivor_low[11];
1404 vcpu->arch.ivor[BOOKE_IRQPRIO_WATCHDOG] = sregs->u.e.ivor_low[12];
1405 vcpu->arch.ivor[BOOKE_IRQPRIO_DTLB_MISS] = sregs->u.e.ivor_low[13];
1406 vcpu->arch.ivor[BOOKE_IRQPRIO_ITLB_MISS] = sregs->u.e.ivor_low[14];
1407 vcpu->arch.ivor[BOOKE_IRQPRIO_DEBUG] = sregs->u.e.ivor_low[15];
1408
1409 return 0;
1410}
1411
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001412int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
1413 struct kvm_sregs *sregs)
1414{
Scott Wood5ce941e2011-04-27 17:24:21 -05001415 sregs->pvr = vcpu->arch.pvr;
1416
1417 get_sregs_base(vcpu, sregs);
1418 get_sregs_arch206(vcpu, sregs);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301419 return vcpu->kvm->arch.kvm_ops->get_sregs(vcpu, sregs);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001420}
1421
1422int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
1423 struct kvm_sregs *sregs)
1424{
Scott Wood5ce941e2011-04-27 17:24:21 -05001425 int ret;
1426
1427 if (vcpu->arch.pvr != sregs->pvr)
1428 return -EINVAL;
1429
1430 ret = set_sregs_base(vcpu, sregs);
1431 if (ret < 0)
1432 return ret;
1433
1434 ret = set_sregs_arch206(vcpu, sregs);
1435 if (ret < 0)
1436 return ret;
1437
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301438 return vcpu->kvm->arch.kvm_ops->set_sregs(vcpu, sregs);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001439}
1440
Paul Mackerras31f34382011-12-12 12:26:50 +00001441int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1442{
Mihai Caraman35b299e2013-04-11 00:03:07 +00001443 int r = 0;
1444 union kvmppc_one_reg val;
1445 int size;
Mihai Caraman35b299e2013-04-11 00:03:07 +00001446
1447 size = one_reg_size(reg->id);
1448 if (size > sizeof(val))
1449 return -EINVAL;
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001450
1451 switch (reg->id) {
1452 case KVM_REG_PPC_IAC1:
Bharat Bhushan547465e2013-07-04 12:27:46 +05301453 val = get_reg_val(reg->id, vcpu->arch.dbg_reg.iac1);
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001454 break;
Bharat Bhushan547465e2013-07-04 12:27:46 +05301455 case KVM_REG_PPC_IAC2:
1456 val = get_reg_val(reg->id, vcpu->arch.dbg_reg.iac2);
1457 break;
1458#if CONFIG_PPC_ADV_DEBUG_IACS > 2
1459 case KVM_REG_PPC_IAC3:
1460 val = get_reg_val(reg->id, vcpu->arch.dbg_reg.iac3);
1461 break;
1462 case KVM_REG_PPC_IAC4:
1463 val = get_reg_val(reg->id, vcpu->arch.dbg_reg.iac4);
1464 break;
1465#endif
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001466 case KVM_REG_PPC_DAC1:
Bharat Bhushan547465e2013-07-04 12:27:46 +05301467 val = get_reg_val(reg->id, vcpu->arch.dbg_reg.dac1);
1468 break;
Mihai Caraman35b299e2013-04-11 00:03:07 +00001469 case KVM_REG_PPC_DAC2:
Bharat Bhushan547465e2013-07-04 12:27:46 +05301470 val = get_reg_val(reg->id, vcpu->arch.dbg_reg.dac2);
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001471 break;
Alexander Graf324b3e62013-01-04 18:28:51 +01001472 case KVM_REG_PPC_EPR: {
1473 u32 epr = get_guest_epr(vcpu);
Mihai Caraman35b299e2013-04-11 00:03:07 +00001474 val = get_reg_val(reg->id, epr);
Alexander Graf324b3e62013-01-04 18:28:51 +01001475 break;
1476 }
Mihai Caraman352df1d2012-10-11 06:13:29 +00001477#if defined(CONFIG_64BIT)
1478 case KVM_REG_PPC_EPCR:
Mihai Caraman35b299e2013-04-11 00:03:07 +00001479 val = get_reg_val(reg->id, vcpu->arch.epcr);
Mihai Caraman352df1d2012-10-11 06:13:29 +00001480 break;
1481#endif
Bharat Bhushan78accda2013-02-24 18:57:12 +00001482 case KVM_REG_PPC_TCR:
Mihai Caraman35b299e2013-04-11 00:03:07 +00001483 val = get_reg_val(reg->id, vcpu->arch.tcr);
Bharat Bhushan78accda2013-02-24 18:57:12 +00001484 break;
1485 case KVM_REG_PPC_TSR:
Mihai Caraman35b299e2013-04-11 00:03:07 +00001486 val = get_reg_val(reg->id, vcpu->arch.tsr);
Bharat Bhushan78accda2013-02-24 18:57:12 +00001487 break;
Mihai Caraman35b299e2013-04-11 00:03:07 +00001488 case KVM_REG_PPC_DEBUG_INST:
Bharat Bhushanb12c7842013-07-04 12:27:45 +05301489 val = get_reg_val(reg->id, KVMPPC_INST_EHPRIV_DEBUG);
Bharat Bhushan8c32a2e2013-03-20 20:24:58 +00001490 break;
Paul Mackerras8b75cbb2013-09-20 14:52:37 +10001491 case KVM_REG_PPC_VRSAVE:
1492 val = get_reg_val(reg->id, vcpu->arch.vrsave);
Bharat Bhushan8c32a2e2013-03-20 20:24:58 +00001493 break;
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001494 default:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301495 r = vcpu->kvm->arch.kvm_ops->get_one_reg(vcpu, reg->id, &val);
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001496 break;
1497 }
Mihai Caraman35b299e2013-04-11 00:03:07 +00001498
1499 if (r)
1500 return r;
1501
1502 if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size))
1503 r = -EFAULT;
1504
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001505 return r;
Paul Mackerras31f34382011-12-12 12:26:50 +00001506}
1507
1508int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1509{
Mihai Caraman35b299e2013-04-11 00:03:07 +00001510 int r = 0;
1511 union kvmppc_one_reg val;
1512 int size;
Mihai Caraman35b299e2013-04-11 00:03:07 +00001513
1514 size = one_reg_size(reg->id);
1515 if (size > sizeof(val))
1516 return -EINVAL;
1517
1518 if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size))
1519 return -EFAULT;
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001520
1521 switch (reg->id) {
1522 case KVM_REG_PPC_IAC1:
Bharat Bhushan547465e2013-07-04 12:27:46 +05301523 vcpu->arch.dbg_reg.iac1 = set_reg_val(reg->id, val);
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001524 break;
Bharat Bhushan547465e2013-07-04 12:27:46 +05301525 case KVM_REG_PPC_IAC2:
1526 vcpu->arch.dbg_reg.iac2 = set_reg_val(reg->id, val);
1527 break;
1528#if CONFIG_PPC_ADV_DEBUG_IACS > 2
1529 case KVM_REG_PPC_IAC3:
1530 vcpu->arch.dbg_reg.iac3 = set_reg_val(reg->id, val);
1531 break;
1532 case KVM_REG_PPC_IAC4:
1533 vcpu->arch.dbg_reg.iac4 = set_reg_val(reg->id, val);
1534 break;
1535#endif
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001536 case KVM_REG_PPC_DAC1:
Bharat Bhushan547465e2013-07-04 12:27:46 +05301537 vcpu->arch.dbg_reg.dac1 = set_reg_val(reg->id, val);
1538 break;
Mihai Caraman35b299e2013-04-11 00:03:07 +00001539 case KVM_REG_PPC_DAC2:
Bharat Bhushan547465e2013-07-04 12:27:46 +05301540 vcpu->arch.dbg_reg.dac2 = set_reg_val(reg->id, val);
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001541 break;
Alexander Graf324b3e62013-01-04 18:28:51 +01001542 case KVM_REG_PPC_EPR: {
Mihai Caraman35b299e2013-04-11 00:03:07 +00001543 u32 new_epr = set_reg_val(reg->id, val);
1544 kvmppc_set_epr(vcpu, new_epr);
Alexander Graf324b3e62013-01-04 18:28:51 +01001545 break;
1546 }
Mihai Caraman352df1d2012-10-11 06:13:29 +00001547#if defined(CONFIG_64BIT)
1548 case KVM_REG_PPC_EPCR: {
Mihai Caraman35b299e2013-04-11 00:03:07 +00001549 u32 new_epcr = set_reg_val(reg->id, val);
1550 kvmppc_set_epcr(vcpu, new_epcr);
Mihai Caraman352df1d2012-10-11 06:13:29 +00001551 break;
1552 }
1553#endif
Bharat Bhushan78accda2013-02-24 18:57:12 +00001554 case KVM_REG_PPC_OR_TSR: {
Mihai Caraman35b299e2013-04-11 00:03:07 +00001555 u32 tsr_bits = set_reg_val(reg->id, val);
Bharat Bhushan78accda2013-02-24 18:57:12 +00001556 kvmppc_set_tsr_bits(vcpu, tsr_bits);
1557 break;
1558 }
1559 case KVM_REG_PPC_CLEAR_TSR: {
Mihai Caraman35b299e2013-04-11 00:03:07 +00001560 u32 tsr_bits = set_reg_val(reg->id, val);
Bharat Bhushan78accda2013-02-24 18:57:12 +00001561 kvmppc_clr_tsr_bits(vcpu, tsr_bits);
1562 break;
1563 }
1564 case KVM_REG_PPC_TSR: {
Mihai Caraman35b299e2013-04-11 00:03:07 +00001565 u32 tsr = set_reg_val(reg->id, val);
Bharat Bhushan78accda2013-02-24 18:57:12 +00001566 kvmppc_set_tsr(vcpu, tsr);
1567 break;
1568 }
1569 case KVM_REG_PPC_TCR: {
Mihai Caraman35b299e2013-04-11 00:03:07 +00001570 u32 tcr = set_reg_val(reg->id, val);
Bharat Bhushan78accda2013-02-24 18:57:12 +00001571 kvmppc_set_tcr(vcpu, tcr);
1572 break;
1573 }
Paul Mackerras8b75cbb2013-09-20 14:52:37 +10001574 case KVM_REG_PPC_VRSAVE:
1575 vcpu->arch.vrsave = set_reg_val(reg->id, val);
1576 break;
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001577 default:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301578 r = vcpu->kvm->arch.kvm_ops->set_one_reg(vcpu, reg->id, &val);
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001579 break;
1580 }
Mihai Caraman35b299e2013-04-11 00:03:07 +00001581
Bharat Bhushan6df8d3f2012-08-08 21:17:55 +00001582 return r;
Paul Mackerras31f34382011-12-12 12:26:50 +00001583}
1584
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001585int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
1586{
1587 return -ENOTSUPP;
1588}
1589
1590int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
1591{
1592 return -ENOTSUPP;
1593}
1594
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001595int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
1596 struct kvm_translation *tr)
1597{
Avi Kivity98001d82010-05-13 11:05:49 +03001598 int r;
1599
Avi Kivity98001d82010-05-13 11:05:49 +03001600 r = kvmppc_core_vcpu_translate(vcpu, tr);
Avi Kivity98001d82010-05-13 11:05:49 +03001601 return r;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001602}
Hollis Blanchardd9fbd032008-11-05 09:36:13 -06001603
Alexander Graf4e755752009-10-30 05:47:01 +00001604int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
1605{
1606 return -ENOTSUPP;
1607}
1608
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05301609void kvmppc_core_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00001610 struct kvm_memory_slot *dont)
1611{
1612}
1613
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05301614int kvmppc_core_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00001615 unsigned long npages)
1616{
1617 return 0;
1618}
1619
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001620int kvmppc_core_prepare_memory_region(struct kvm *kvm,
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00001621 struct kvm_memory_slot *memslot,
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001622 struct kvm_userspace_memory_region *mem)
1623{
1624 return 0;
1625}
1626
1627void kvmppc_core_commit_memory_region(struct kvm *kvm,
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00001628 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09001629 const struct kvm_memory_slot *old)
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00001630{
1631}
1632
1633void kvmppc_core_flush_memslot(struct kvm *kvm, struct kvm_memory_slot *memslot)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001634{
1635}
1636
Mihai Caraman38f98822012-10-11 06:13:27 +00001637void kvmppc_set_epcr(struct kvm_vcpu *vcpu, u32 new_epcr)
1638{
1639#if defined(CONFIG_64BIT)
1640 vcpu->arch.epcr = new_epcr;
1641#ifdef CONFIG_KVM_BOOKE_HV
1642 vcpu->arch.shadow_epcr &= ~SPRN_EPCR_GICM;
1643 if (vcpu->arch.epcr & SPRN_EPCR_ICM)
1644 vcpu->arch.shadow_epcr |= SPRN_EPCR_GICM;
1645#endif
1646#endif
1647}
1648
Scott Wooddfd4d472011-11-17 12:39:59 +00001649void kvmppc_set_tcr(struct kvm_vcpu *vcpu, u32 new_tcr)
1650{
1651 vcpu->arch.tcr = new_tcr;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +00001652 arm_next_watchdog(vcpu);
Scott Wooddfd4d472011-11-17 12:39:59 +00001653 update_timer_ints(vcpu);
1654}
1655
1656void kvmppc_set_tsr_bits(struct kvm_vcpu *vcpu, u32 tsr_bits)
1657{
1658 set_bits(tsr_bits, &vcpu->arch.tsr);
1659 smp_wmb();
1660 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1661 kvm_vcpu_kick(vcpu);
1662}
1663
1664void kvmppc_clr_tsr_bits(struct kvm_vcpu *vcpu, u32 tsr_bits)
1665{
1666 clear_bits(tsr_bits, &vcpu->arch.tsr);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +00001667
1668 /*
1669 * We may have stopped the watchdog due to
1670 * being stuck on final expiration.
1671 */
1672 if (tsr_bits & (TSR_ENW | TSR_WIS))
1673 arm_next_watchdog(vcpu);
1674
Scott Wooddfd4d472011-11-17 12:39:59 +00001675 update_timer_ints(vcpu);
1676}
1677
1678void kvmppc_decrementer_func(unsigned long data)
1679{
1680 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
1681
Bharat Bhushan21bd0002012-05-20 23:21:23 +00001682 if (vcpu->arch.tcr & TCR_ARE) {
1683 vcpu->arch.dec = vcpu->arch.decar;
1684 kvmppc_emulate_dec(vcpu);
1685 }
1686
Scott Wooddfd4d472011-11-17 12:39:59 +00001687 kvmppc_set_tsr_bits(vcpu, TSR_DIS);
1688}
1689
Bharat Bhushance11e482013-07-04 12:27:47 +05301690static int kvmppc_booke_add_breakpoint(struct debug_reg *dbg_reg,
1691 uint64_t addr, int index)
1692{
1693 switch (index) {
1694 case 0:
1695 dbg_reg->dbcr0 |= DBCR0_IAC1;
1696 dbg_reg->iac1 = addr;
1697 break;
1698 case 1:
1699 dbg_reg->dbcr0 |= DBCR0_IAC2;
1700 dbg_reg->iac2 = addr;
1701 break;
1702#if CONFIG_PPC_ADV_DEBUG_IACS > 2
1703 case 2:
1704 dbg_reg->dbcr0 |= DBCR0_IAC3;
1705 dbg_reg->iac3 = addr;
1706 break;
1707 case 3:
1708 dbg_reg->dbcr0 |= DBCR0_IAC4;
1709 dbg_reg->iac4 = addr;
1710 break;
1711#endif
1712 default:
1713 return -EINVAL;
1714 }
1715
1716 dbg_reg->dbcr0 |= DBCR0_IDM;
1717 return 0;
1718}
1719
1720static int kvmppc_booke_add_watchpoint(struct debug_reg *dbg_reg, uint64_t addr,
1721 int type, int index)
1722{
1723 switch (index) {
1724 case 0:
1725 if (type & KVMPPC_DEBUG_WATCH_READ)
1726 dbg_reg->dbcr0 |= DBCR0_DAC1R;
1727 if (type & KVMPPC_DEBUG_WATCH_WRITE)
1728 dbg_reg->dbcr0 |= DBCR0_DAC1W;
1729 dbg_reg->dac1 = addr;
1730 break;
1731 case 1:
1732 if (type & KVMPPC_DEBUG_WATCH_READ)
1733 dbg_reg->dbcr0 |= DBCR0_DAC2R;
1734 if (type & KVMPPC_DEBUG_WATCH_WRITE)
1735 dbg_reg->dbcr0 |= DBCR0_DAC2W;
1736 dbg_reg->dac2 = addr;
1737 break;
1738 default:
1739 return -EINVAL;
1740 }
1741
1742 dbg_reg->dbcr0 |= DBCR0_IDM;
1743 return 0;
1744}
1745void kvm_guest_protect_msr(struct kvm_vcpu *vcpu, ulong prot_bitmap, bool set)
1746{
1747 /* XXX: Add similar MSR protection for BookE-PR */
1748#ifdef CONFIG_KVM_BOOKE_HV
1749 BUG_ON(prot_bitmap & ~(MSRP_UCLEP | MSRP_DEP | MSRP_PMMP));
1750 if (set) {
1751 if (prot_bitmap & MSR_UCLE)
1752 vcpu->arch.shadow_msrp |= MSRP_UCLEP;
1753 if (prot_bitmap & MSR_DE)
1754 vcpu->arch.shadow_msrp |= MSRP_DEP;
1755 if (prot_bitmap & MSR_PMM)
1756 vcpu->arch.shadow_msrp |= MSRP_PMMP;
1757 } else {
1758 if (prot_bitmap & MSR_UCLE)
1759 vcpu->arch.shadow_msrp &= ~MSRP_UCLEP;
1760 if (prot_bitmap & MSR_DE)
1761 vcpu->arch.shadow_msrp &= ~MSRP_DEP;
1762 if (prot_bitmap & MSR_PMM)
1763 vcpu->arch.shadow_msrp &= ~MSRP_PMMP;
1764 }
1765#endif
1766}
1767
1768int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
1769 struct kvm_guest_debug *dbg)
1770{
1771 struct debug_reg *dbg_reg;
1772 int n, b = 0, w = 0;
1773
1774 if (!(dbg->control & KVM_GUESTDBG_ENABLE)) {
1775 vcpu->arch.shadow_dbg_reg.dbcr0 = 0;
1776 vcpu->guest_debug = 0;
1777 kvm_guest_protect_msr(vcpu, MSR_DE, false);
1778 return 0;
1779 }
1780
1781 kvm_guest_protect_msr(vcpu, MSR_DE, true);
1782 vcpu->guest_debug = dbg->control;
1783 vcpu->arch.shadow_dbg_reg.dbcr0 = 0;
1784 /* Set DBCR0_EDM in guest visible DBCR0 register. */
1785 vcpu->arch.dbg_reg.dbcr0 = DBCR0_EDM;
1786
1787 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
1788 vcpu->arch.shadow_dbg_reg.dbcr0 |= DBCR0_IDM | DBCR0_IC;
1789
1790 /* Code below handles only HW breakpoints */
1791 dbg_reg = &(vcpu->arch.shadow_dbg_reg);
1792
1793#ifdef CONFIG_KVM_BOOKE_HV
1794 /*
1795 * On BookE-HV (e500mc) the guest is always executed with MSR.GS=1
1796 * DBCR1 and DBCR2 are set to trigger debug events when MSR.PR is 0
1797 */
1798 dbg_reg->dbcr1 = 0;
1799 dbg_reg->dbcr2 = 0;
1800#else
1801 /*
1802 * On BookE-PR (e500v2) the guest is always executed with MSR.PR=1
1803 * We set DBCR1 and DBCR2 to only trigger debug events when MSR.PR
1804 * is set.
1805 */
1806 dbg_reg->dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US | DBCR1_IAC3US |
1807 DBCR1_IAC4US;
1808 dbg_reg->dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
1809#endif
1810
1811 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1812 return 0;
1813
1814 for (n = 0; n < (KVMPPC_BOOKE_IAC_NUM + KVMPPC_BOOKE_DAC_NUM); n++) {
1815 uint64_t addr = dbg->arch.bp[n].addr;
1816 uint32_t type = dbg->arch.bp[n].type;
1817
1818 if (type == KVMPPC_DEBUG_NONE)
1819 continue;
1820
1821 if (type & !(KVMPPC_DEBUG_WATCH_READ |
1822 KVMPPC_DEBUG_WATCH_WRITE |
1823 KVMPPC_DEBUG_BREAKPOINT))
1824 return -EINVAL;
1825
1826 if (type & KVMPPC_DEBUG_BREAKPOINT) {
1827 /* Setting H/W breakpoint */
1828 if (kvmppc_booke_add_breakpoint(dbg_reg, addr, b++))
1829 return -EINVAL;
1830 } else {
1831 /* Setting H/W watchpoint */
1832 if (kvmppc_booke_add_watchpoint(dbg_reg, addr,
1833 type, w++))
1834 return -EINVAL;
1835 }
1836 }
1837
1838 return 0;
1839}
1840
Scott Wood94fa9d92011-12-20 15:34:22 +00001841void kvmppc_booke_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1842{
Paul Mackerrasa47d72f2012-09-20 19:35:51 +00001843 vcpu->cpu = smp_processor_id();
Scott Woodd30f6e42011-12-20 15:34:43 +00001844 current->thread.kvm_vcpu = vcpu;
Scott Wood94fa9d92011-12-20 15:34:22 +00001845}
1846
1847void kvmppc_booke_vcpu_put(struct kvm_vcpu *vcpu)
1848{
Scott Woodd30f6e42011-12-20 15:34:43 +00001849 current->thread.kvm_vcpu = NULL;
Paul Mackerrasa47d72f2012-09-20 19:35:51 +00001850 vcpu->cpu = -1;
Bharat Bhushance11e482013-07-04 12:27:47 +05301851
1852 /* Clear pending debug event in DBSR */
1853 kvmppc_clear_dbsr();
Scott Wood94fa9d92011-12-20 15:34:22 +00001854}
1855
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301856void kvmppc_mmu_destroy(struct kvm_vcpu *vcpu)
1857{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301858 vcpu->kvm->arch.kvm_ops->mmu_destroy(vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301859}
1860
1861int kvmppc_core_init_vm(struct kvm *kvm)
1862{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301863 return kvm->arch.kvm_ops->init_vm(kvm);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301864}
1865
1866struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id)
1867{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301868 return kvm->arch.kvm_ops->vcpu_create(kvm, id);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301869}
1870
1871void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu)
1872{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301873 vcpu->kvm->arch.kvm_ops->vcpu_free(vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301874}
1875
1876void kvmppc_core_destroy_vm(struct kvm *kvm)
1877{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301878 kvm->arch.kvm_ops->destroy_vm(kvm);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301879}
1880
1881void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1882{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301883 vcpu->kvm->arch.kvm_ops->vcpu_load(vcpu, cpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301884}
1885
1886void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu)
1887{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301888 vcpu->kvm->arch.kvm_ops->vcpu_put(vcpu);
Hollis Blanchardd9fbd032008-11-05 09:36:13 -06001889}
1890
1891int __init kvmppc_booke_init(void)
1892{
Scott Woodd30f6e42011-12-20 15:34:43 +00001893#ifndef CONFIG_KVM_BOOKE_HV
Hollis Blanchardd9fbd032008-11-05 09:36:13 -06001894 unsigned long ivor[16];
Bharat Bhushan1d542d92013-01-15 22:24:39 +00001895 unsigned long *handler = kvmppc_booke_handler_addr;
Hollis Blanchardd9fbd032008-11-05 09:36:13 -06001896 unsigned long max_ivor = 0;
Bharat Bhushan1d542d92013-01-15 22:24:39 +00001897 unsigned long handler_len;
Hollis Blanchardd9fbd032008-11-05 09:36:13 -06001898 int i;
1899
1900 /* We install our own exception handlers by hijacking IVPR. IVPR must
1901 * be 16-bit aligned, so we need a 64KB allocation. */
1902 kvmppc_booke_handlers = __get_free_pages(GFP_KERNEL | __GFP_ZERO,
1903 VCPU_SIZE_ORDER);
1904 if (!kvmppc_booke_handlers)
1905 return -ENOMEM;
1906
1907 /* XXX make sure our handlers are smaller than Linux's */
1908
1909 /* Copy our interrupt handlers to match host IVORs. That way we don't
1910 * have to swap the IVORs on every guest/host transition. */
1911 ivor[0] = mfspr(SPRN_IVOR0);
1912 ivor[1] = mfspr(SPRN_IVOR1);
1913 ivor[2] = mfspr(SPRN_IVOR2);
1914 ivor[3] = mfspr(SPRN_IVOR3);
1915 ivor[4] = mfspr(SPRN_IVOR4);
1916 ivor[5] = mfspr(SPRN_IVOR5);
1917 ivor[6] = mfspr(SPRN_IVOR6);
1918 ivor[7] = mfspr(SPRN_IVOR7);
1919 ivor[8] = mfspr(SPRN_IVOR8);
1920 ivor[9] = mfspr(SPRN_IVOR9);
1921 ivor[10] = mfspr(SPRN_IVOR10);
1922 ivor[11] = mfspr(SPRN_IVOR11);
1923 ivor[12] = mfspr(SPRN_IVOR12);
1924 ivor[13] = mfspr(SPRN_IVOR13);
1925 ivor[14] = mfspr(SPRN_IVOR14);
1926 ivor[15] = mfspr(SPRN_IVOR15);
1927
1928 for (i = 0; i < 16; i++) {
1929 if (ivor[i] > max_ivor)
Bharat Bhushan1d542d92013-01-15 22:24:39 +00001930 max_ivor = i;
Hollis Blanchardd9fbd032008-11-05 09:36:13 -06001931
Bharat Bhushan1d542d92013-01-15 22:24:39 +00001932 handler_len = handler[i + 1] - handler[i];
Hollis Blanchardd9fbd032008-11-05 09:36:13 -06001933 memcpy((void *)kvmppc_booke_handlers + ivor[i],
Bharat Bhushan1d542d92013-01-15 22:24:39 +00001934 (void *)handler[i], handler_len);
Hollis Blanchardd9fbd032008-11-05 09:36:13 -06001935 }
Bharat Bhushan1d542d92013-01-15 22:24:39 +00001936
1937 handler_len = handler[max_ivor + 1] - handler[max_ivor];
1938 flush_icache_range(kvmppc_booke_handlers, kvmppc_booke_handlers +
1939 ivor[max_ivor] + handler_len);
Scott Woodd30f6e42011-12-20 15:34:43 +00001940#endif /* !BOOKE_HV */
Hollis Blancharddb93f572008-11-05 09:36:18 -06001941 return 0;
Hollis Blanchardd9fbd032008-11-05 09:36:13 -06001942}
1943
Hollis Blancharddb93f572008-11-05 09:36:18 -06001944void __exit kvmppc_booke_exit(void)
Hollis Blanchardd9fbd032008-11-05 09:36:13 -06001945{
1946 free_pages(kvmppc_booke_handlers, VCPU_SIZE_ORDER);
1947 kvm_exit();
1948}