blob: 638c6d9be9e08bec96542312aaf18ce8e21900e6 [file] [log] [blame]
Alexander Graf2f4cf5e2009-10-30 05:47:10 +00001/*
2 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
3 *
4 * Authors:
5 * Alexander Graf <agraf@suse.de>
6 * Kevin Wolf <mail@kevin-wolf.de>
7 *
8 * Description:
9 * This file is derived from arch/powerpc/kvm/44x.c,
10 * by Hollis Blanchard <hollisb@us.ibm.com>.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License, version 2, as
14 * published by the Free Software Foundation.
15 */
16
17#include <linux/kvm_host.h>
18#include <linux/err.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040019#include <linux/export.h>
Stephen Rothwell329d20b2010-04-27 15:49:17 +100020#include <linux/slab.h>
Alexander Graf398a76c2013-12-09 13:53:42 +010021#include <linux/module.h>
22#include <linux/miscdevice.h>
Alexander Graf2f4cf5e2009-10-30 05:47:10 +000023
24#include <asm/reg.h>
25#include <asm/cputable.h>
26#include <asm/cacheflush.h>
27#include <asm/tlbflush.h>
28#include <asm/uaccess.h>
29#include <asm/io.h>
30#include <asm/kvm_ppc.h>
31#include <asm/kvm_book3s.h>
32#include <asm/mmu_context.h>
Paul Mackerras149dbdb2011-06-29 00:16:42 +000033#include <asm/page.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/gfp.h>
Alexander Graf2f4cf5e2009-10-30 05:47:10 +000035#include <linux/sched.h>
36#include <linux/vmalloc.h>
Alexander Graf9fb244a2010-03-24 21:48:32 +010037#include <linux/highmem.h>
Alexander Graf2f4cf5e2009-10-30 05:47:10 +000038
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +053039#include "book3s.h"
Paul Mackerrasc4befc52011-06-29 00:17:33 +000040#include "trace.h"
41
Alexander Graf2f4cf5e2009-10-30 05:47:10 +000042#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
43
44/* #define EXIT_DEBUG */
Alexander Graf07b09072010-04-16 00:11:53 +020045
Alexander Graf2f4cf5e2009-10-30 05:47:10 +000046struct kvm_stats_debugfs_item debugfs_entries[] = {
47 { "exits", VCPU_STAT(sum_exits) },
48 { "mmio", VCPU_STAT(mmio_exits) },
49 { "sig", VCPU_STAT(signal_exits) },
50 { "sysc", VCPU_STAT(syscall_exits) },
51 { "inst_emu", VCPU_STAT(emulated_inst_exits) },
52 { "dec", VCPU_STAT(dec_exits) },
53 { "ext_intr", VCPU_STAT(ext_intr_exits) },
54 { "queue_intr", VCPU_STAT(queue_intr) },
Paolo Bonzinif7819512015-02-04 18:20:58 +010055 { "halt_successful_poll", VCPU_STAT(halt_successful_poll), },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +020056 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll), },
Alexander Graf2f4cf5e2009-10-30 05:47:10 +000057 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
58 { "pf_storage", VCPU_STAT(pf_storage) },
59 { "sp_storage", VCPU_STAT(sp_storage) },
60 { "pf_instruc", VCPU_STAT(pf_instruc) },
61 { "sp_instruc", VCPU_STAT(sp_instruc) },
62 { "ld", VCPU_STAT(ld) },
63 { "ld_slow", VCPU_STAT(ld_slow) },
64 { "st", VCPU_STAT(st) },
65 { "st_slow", VCPU_STAT(st_slow) },
66 { NULL }
67};
68
Alexander Grafc01e3f62014-07-11 02:58:58 +020069void kvmppc_unfixup_split_real(struct kvm_vcpu *vcpu)
70{
71 if (vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK) {
72 ulong pc = kvmppc_get_pc(vcpu);
73 if ((pc & SPLIT_HACK_MASK) == SPLIT_HACK_OFFS)
74 kvmppc_set_pc(vcpu, pc & ~SPLIT_HACK_MASK);
75 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SPLIT_HACK;
76 }
77}
78EXPORT_SYMBOL_GPL(kvmppc_unfixup_split_real);
79
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +053080static inline unsigned long kvmppc_interrupt_offset(struct kvm_vcpu *vcpu)
81{
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +053082 if (!is_kvmppc_hv_enabled(vcpu->kvm))
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +053083 return to_book3s(vcpu)->hior;
84 return 0;
85}
86
87static inline void kvmppc_update_int_pending(struct kvm_vcpu *vcpu,
88 unsigned long pending_now, unsigned long old_pending)
89{
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +053090 if (is_kvmppc_hv_enabled(vcpu->kvm))
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +053091 return;
92 if (pending_now)
Alexander Graf5deb8e72014-04-24 13:46:24 +020093 kvmppc_set_int_pending(vcpu, 1);
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +053094 else if (old_pending)
Alexander Graf5deb8e72014-04-24 13:46:24 +020095 kvmppc_set_int_pending(vcpu, 0);
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +053096}
97
98static inline bool kvmppc_critical_section(struct kvm_vcpu *vcpu)
99{
100 ulong crit_raw;
101 ulong crit_r1;
102 bool crit;
103
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530104 if (is_kvmppc_hv_enabled(vcpu->kvm))
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530105 return false;
106
Alexander Graf5deb8e72014-04-24 13:46:24 +0200107 crit_raw = kvmppc_get_critical(vcpu);
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530108 crit_r1 = kvmppc_get_gpr(vcpu, 1);
109
110 /* Truncate crit indicators in 32 bit mode */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200111 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530112 crit_raw &= 0xffffffff;
113 crit_r1 &= 0xffffffff;
114 }
115
116 /* Critical section when crit == r1 */
117 crit = (crit_raw == crit_r1);
118 /* ... and we're in supervisor mode */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200119 crit = crit && !(kvmppc_get_msr(vcpu) & MSR_PR);
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530120
121 return crit;
122}
123
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000124void kvmppc_inject_interrupt(struct kvm_vcpu *vcpu, int vec, u64 flags)
125{
Alexander Grafc01e3f62014-07-11 02:58:58 +0200126 kvmppc_unfixup_split_real(vcpu);
Alexander Graf5deb8e72014-04-24 13:46:24 +0200127 kvmppc_set_srr0(vcpu, kvmppc_get_pc(vcpu));
128 kvmppc_set_srr1(vcpu, kvmppc_get_msr(vcpu) | flags);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000129 kvmppc_set_pc(vcpu, kvmppc_interrupt_offset(vcpu) + vec);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000130 vcpu->arch.mmu.reset_msr(vcpu);
131}
132
Alexander Graf583617b2009-12-21 20:21:23 +0100133static int kvmppc_book3s_vec2irqprio(unsigned int vec)
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000134{
135 unsigned int prio;
136
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000137 switch (vec) {
138 case 0x100: prio = BOOK3S_IRQPRIO_SYSTEM_RESET; break;
139 case 0x200: prio = BOOK3S_IRQPRIO_MACHINE_CHECK; break;
140 case 0x300: prio = BOOK3S_IRQPRIO_DATA_STORAGE; break;
141 case 0x380: prio = BOOK3S_IRQPRIO_DATA_SEGMENT; break;
142 case 0x400: prio = BOOK3S_IRQPRIO_INST_STORAGE; break;
143 case 0x480: prio = BOOK3S_IRQPRIO_INST_SEGMENT; break;
144 case 0x500: prio = BOOK3S_IRQPRIO_EXTERNAL; break;
Alexander Graf17bd1582010-08-30 10:44:15 +0200145 case 0x501: prio = BOOK3S_IRQPRIO_EXTERNAL_LEVEL; break;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000146 case 0x600: prio = BOOK3S_IRQPRIO_ALIGNMENT; break;
147 case 0x700: prio = BOOK3S_IRQPRIO_PROGRAM; break;
148 case 0x800: prio = BOOK3S_IRQPRIO_FP_UNAVAIL; break;
149 case 0x900: prio = BOOK3S_IRQPRIO_DECREMENTER; break;
150 case 0xc00: prio = BOOK3S_IRQPRIO_SYSCALL; break;
151 case 0xd00: prio = BOOK3S_IRQPRIO_DEBUG; break;
152 case 0xf20: prio = BOOK3S_IRQPRIO_ALTIVEC; break;
153 case 0xf40: prio = BOOK3S_IRQPRIO_VSX; break;
Alexander Graf616dff82014-04-29 16:48:44 +0200154 case 0xf60: prio = BOOK3S_IRQPRIO_FAC_UNAVAIL; break;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000155 default: prio = BOOK3S_IRQPRIO_MAX; break;
156 }
157
Alexander Graf583617b2009-12-21 20:21:23 +0100158 return prio;
159}
160
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000161void kvmppc_book3s_dequeue_irqprio(struct kvm_vcpu *vcpu,
Alexander Graf7706664d2009-12-21 20:21:24 +0100162 unsigned int vec)
163{
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000164 unsigned long old_pending = vcpu->arch.pending_exceptions;
165
Alexander Graf7706664d2009-12-21 20:21:24 +0100166 clear_bit(kvmppc_book3s_vec2irqprio(vec),
167 &vcpu->arch.pending_exceptions);
Alexander Graf9ee18b12010-08-05 12:24:40 +0200168
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000169 kvmppc_update_int_pending(vcpu, vcpu->arch.pending_exceptions,
170 old_pending);
Alexander Graf7706664d2009-12-21 20:21:24 +0100171}
172
Alexander Graf583617b2009-12-21 20:21:23 +0100173void kvmppc_book3s_queue_irqprio(struct kvm_vcpu *vcpu, unsigned int vec)
174{
175 vcpu->stat.queue_intr++;
176
177 set_bit(kvmppc_book3s_vec2irqprio(vec),
178 &vcpu->arch.pending_exceptions);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000179#ifdef EXIT_DEBUG
180 printk(KERN_INFO "Queueing interrupt %x\n", vec);
181#endif
182}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530183EXPORT_SYMBOL_GPL(kvmppc_book3s_queue_irqprio);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000184
Alexander Graf25a8a022010-01-08 02:58:07 +0100185void kvmppc_core_queue_program(struct kvm_vcpu *vcpu, ulong flags)
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000186{
Paul Mackerras3cf658b2011-06-29 00:18:52 +0000187 /* might as well deliver this straight away */
188 kvmppc_inject_interrupt(vcpu, BOOK3S_INTERRUPT_PROGRAM, flags);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000189}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530190EXPORT_SYMBOL_GPL(kvmppc_core_queue_program);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000191
192void kvmppc_core_queue_dec(struct kvm_vcpu *vcpu)
193{
194 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_DECREMENTER);
195}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530196EXPORT_SYMBOL_GPL(kvmppc_core_queue_dec);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000197
198int kvmppc_core_pending_dec(struct kvm_vcpu *vcpu)
199{
Paul Mackerras44075d92011-05-11 00:38:50 +0000200 return test_bit(BOOK3S_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000201}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530202EXPORT_SYMBOL_GPL(kvmppc_core_pending_dec);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000203
Alexander Graf7706664d2009-12-21 20:21:24 +0100204void kvmppc_core_dequeue_dec(struct kvm_vcpu *vcpu)
205{
206 kvmppc_book3s_dequeue_irqprio(vcpu, BOOK3S_INTERRUPT_DECREMENTER);
207}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530208EXPORT_SYMBOL_GPL(kvmppc_core_dequeue_dec);
Alexander Graf7706664d2009-12-21 20:21:24 +0100209
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000210void kvmppc_core_queue_external(struct kvm_vcpu *vcpu,
211 struct kvm_interrupt *irq)
212{
Alexander Graf17bd1582010-08-30 10:44:15 +0200213 unsigned int vec = BOOK3S_INTERRUPT_EXTERNAL;
214
215 if (irq->irq == KVM_INTERRUPT_SET_LEVEL)
216 vec = BOOK3S_INTERRUPT_EXTERNAL_LEVEL;
217
218 kvmppc_book3s_queue_irqprio(vcpu, vec);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000219}
220
Paul Mackerras4fe27d22013-02-14 14:00:25 +0000221void kvmppc_core_dequeue_external(struct kvm_vcpu *vcpu)
Alexander Graf18978762010-03-24 21:48:18 +0100222{
223 kvmppc_book3s_dequeue_irqprio(vcpu, BOOK3S_INTERRUPT_EXTERNAL);
Alexander Graf17bd1582010-08-30 10:44:15 +0200224 kvmppc_book3s_dequeue_irqprio(vcpu, BOOK3S_INTERRUPT_EXTERNAL_LEVEL);
Alexander Graf18978762010-03-24 21:48:18 +0100225}
226
Alexander Graf8de12012014-06-18 21:56:55 +0200227void kvmppc_core_queue_data_storage(struct kvm_vcpu *vcpu, ulong dar,
228 ulong flags)
229{
230 kvmppc_set_dar(vcpu, dar);
231 kvmppc_set_dsisr(vcpu, flags);
232 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_DATA_STORAGE);
233}
234
235void kvmppc_core_queue_inst_storage(struct kvm_vcpu *vcpu, ulong flags)
236{
237 u64 msr = kvmppc_get_msr(vcpu);
238 msr &= ~(SRR1_ISI_NOPT | SRR1_ISI_N_OR_G | SRR1_ISI_PROT);
239 msr |= flags & (SRR1_ISI_NOPT | SRR1_ISI_N_OR_G | SRR1_ISI_PROT);
240 kvmppc_set_msr_fast(vcpu, msr);
241 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_INST_STORAGE);
242}
243
Thomas Huth5358a962015-05-22 09:25:02 +0200244static int kvmppc_book3s_irqprio_deliver(struct kvm_vcpu *vcpu,
245 unsigned int priority)
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000246{
247 int deliver = 1;
248 int vec = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000249 bool crit = kvmppc_critical_section(vcpu);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000250
251 switch (priority) {
252 case BOOK3S_IRQPRIO_DECREMENTER:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200253 deliver = (kvmppc_get_msr(vcpu) & MSR_EE) && !crit;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000254 vec = BOOK3S_INTERRUPT_DECREMENTER;
255 break;
256 case BOOK3S_IRQPRIO_EXTERNAL:
Alexander Graf17bd1582010-08-30 10:44:15 +0200257 case BOOK3S_IRQPRIO_EXTERNAL_LEVEL:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200258 deliver = (kvmppc_get_msr(vcpu) & MSR_EE) && !crit;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000259 vec = BOOK3S_INTERRUPT_EXTERNAL;
260 break;
261 case BOOK3S_IRQPRIO_SYSTEM_RESET:
262 vec = BOOK3S_INTERRUPT_SYSTEM_RESET;
263 break;
264 case BOOK3S_IRQPRIO_MACHINE_CHECK:
265 vec = BOOK3S_INTERRUPT_MACHINE_CHECK;
266 break;
267 case BOOK3S_IRQPRIO_DATA_STORAGE:
268 vec = BOOK3S_INTERRUPT_DATA_STORAGE;
269 break;
270 case BOOK3S_IRQPRIO_INST_STORAGE:
271 vec = BOOK3S_INTERRUPT_INST_STORAGE;
272 break;
273 case BOOK3S_IRQPRIO_DATA_SEGMENT:
274 vec = BOOK3S_INTERRUPT_DATA_SEGMENT;
275 break;
276 case BOOK3S_IRQPRIO_INST_SEGMENT:
277 vec = BOOK3S_INTERRUPT_INST_SEGMENT;
278 break;
279 case BOOK3S_IRQPRIO_ALIGNMENT:
280 vec = BOOK3S_INTERRUPT_ALIGNMENT;
281 break;
282 case BOOK3S_IRQPRIO_PROGRAM:
283 vec = BOOK3S_INTERRUPT_PROGRAM;
284 break;
285 case BOOK3S_IRQPRIO_VSX:
286 vec = BOOK3S_INTERRUPT_VSX;
287 break;
288 case BOOK3S_IRQPRIO_ALTIVEC:
289 vec = BOOK3S_INTERRUPT_ALTIVEC;
290 break;
291 case BOOK3S_IRQPRIO_FP_UNAVAIL:
292 vec = BOOK3S_INTERRUPT_FP_UNAVAIL;
293 break;
294 case BOOK3S_IRQPRIO_SYSCALL:
295 vec = BOOK3S_INTERRUPT_SYSCALL;
296 break;
297 case BOOK3S_IRQPRIO_DEBUG:
298 vec = BOOK3S_INTERRUPT_TRACE;
299 break;
300 case BOOK3S_IRQPRIO_PERFORMANCE_MONITOR:
301 vec = BOOK3S_INTERRUPT_PERFMON;
302 break;
Alexander Graf616dff82014-04-29 16:48:44 +0200303 case BOOK3S_IRQPRIO_FAC_UNAVAIL:
304 vec = BOOK3S_INTERRUPT_FAC_UNAVAIL;
305 break;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000306 default:
307 deliver = 0;
308 printk(KERN_ERR "KVM: Unknown interrupt: 0x%x\n", priority);
309 break;
310 }
311
312#if 0
313 printk(KERN_INFO "Deliver interrupt 0x%x? %x\n", vec, deliver);
314#endif
315
316 if (deliver)
Paul Mackerras3cf658b2011-06-29 00:18:52 +0000317 kvmppc_inject_interrupt(vcpu, vec, 0);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000318
319 return deliver;
320}
321
Alexander Graf17bd1582010-08-30 10:44:15 +0200322/*
323 * This function determines if an irqprio should be cleared once issued.
324 */
325static bool clear_irqprio(struct kvm_vcpu *vcpu, unsigned int priority)
326{
327 switch (priority) {
328 case BOOK3S_IRQPRIO_DECREMENTER:
329 /* DEC interrupts get cleared by mtdec */
330 return false;
331 case BOOK3S_IRQPRIO_EXTERNAL_LEVEL:
332 /* External interrupts get cleared by userspace */
333 return false;
334 }
335
336 return true;
337}
338
Alexander Grafa8e4ef82012-02-16 14:07:37 +0000339int kvmppc_core_prepare_to_enter(struct kvm_vcpu *vcpu)
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000340{
341 unsigned long *pending = &vcpu->arch.pending_exceptions;
Alexander Graf90bba352010-07-29 14:47:51 +0200342 unsigned long old_pending = vcpu->arch.pending_exceptions;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000343 unsigned int priority;
344
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000345#ifdef EXIT_DEBUG
346 if (vcpu->arch.pending_exceptions)
347 printk(KERN_EMERG "KVM: Check pending: %lx\n", vcpu->arch.pending_exceptions);
348#endif
349 priority = __ffs(*pending);
Alexander Grafada7ba12010-04-16 00:11:56 +0200350 while (priority < BOOK3S_IRQPRIO_MAX) {
Alexander Graf7706664d2009-12-21 20:21:24 +0100351 if (kvmppc_book3s_irqprio_deliver(vcpu, priority) &&
Alexander Graf17bd1582010-08-30 10:44:15 +0200352 clear_irqprio(vcpu, priority)) {
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000353 clear_bit(priority, &vcpu->arch.pending_exceptions);
354 break;
355 }
356
357 priority = find_next_bit(pending,
358 BITS_PER_BYTE * sizeof(*pending),
359 priority + 1);
360 }
Alexander Graf90bba352010-07-29 14:47:51 +0200361
362 /* Tell the guest about our interrupt status */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000363 kvmppc_update_int_pending(vcpu, *pending, old_pending);
Alexander Grafa8e4ef82012-02-16 14:07:37 +0000364
365 return 0;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000366}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530367EXPORT_SYMBOL_GPL(kvmppc_core_prepare_to_enter);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000368
Dan Williamsba049e92016-01-15 16:56:11 -0800369kvm_pfn_t kvmppc_gpa_to_pfn(struct kvm_vcpu *vcpu, gpa_t gpa, bool writing,
Paul Mackerras93b159b2013-09-20 14:52:51 +1000370 bool *writable)
Alexander Grafe8508942010-07-29 14:47:54 +0200371{
Alexander Graf89b68c92014-07-13 16:37:12 +0200372 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM;
373 gfn_t gfn = gpa >> PAGE_SHIFT;
Alexander Grafe8508942010-07-29 14:47:54 +0200374
Alexander Graf5deb8e72014-04-24 13:46:24 +0200375 if (!(kvmppc_get_msr(vcpu) & MSR_SF))
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000376 mp_pa = (uint32_t)mp_pa;
377
Alexander Grafe8508942010-07-29 14:47:54 +0200378 /* Magic page override */
Alexander Graf89b68c92014-07-13 16:37:12 +0200379 gpa &= ~0xFFFULL;
380 if (unlikely(mp_pa) && unlikely((gpa & KVM_PAM) == mp_pa)) {
Alexander Grafe8508942010-07-29 14:47:54 +0200381 ulong shared_page = ((ulong)vcpu->arch.shared) & PAGE_MASK;
Dan Williamsba049e92016-01-15 16:56:11 -0800382 kvm_pfn_t pfn;
Alexander Grafe8508942010-07-29 14:47:54 +0200383
Dan Williamsba049e92016-01-15 16:56:11 -0800384 pfn = (kvm_pfn_t)virt_to_phys((void*)shared_page) >> PAGE_SHIFT;
Alexander Grafe8508942010-07-29 14:47:54 +0200385 get_page(pfn_to_page(pfn));
Paul Mackerras93b159b2013-09-20 14:52:51 +1000386 if (writable)
387 *writable = true;
Alexander Grafe8508942010-07-29 14:47:54 +0200388 return pfn;
389 }
390
Paul Mackerras93b159b2013-09-20 14:52:51 +1000391 return gfn_to_pfn_prot(vcpu->kvm, gfn, writing, writable);
Alexander Grafe8508942010-07-29 14:47:54 +0200392}
Alexander Graf89b68c92014-07-13 16:37:12 +0200393EXPORT_SYMBOL_GPL(kvmppc_gpa_to_pfn);
Alexander Grafe8508942010-07-29 14:47:54 +0200394
Alexander Graf7d15c06f2014-06-20 13:52:36 +0200395int kvmppc_xlate(struct kvm_vcpu *vcpu, ulong eaddr, enum xlate_instdata xlid,
396 enum xlate_readwrite xlrw, struct kvmppc_pte *pte)
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000397{
Alexander Graf7d15c06f2014-06-20 13:52:36 +0200398 bool data = (xlid == XLATE_DATA);
399 bool iswrite = (xlrw == XLATE_WRITE);
Alexander Graf5deb8e72014-04-24 13:46:24 +0200400 int relocated = (kvmppc_get_msr(vcpu) & (data ? MSR_DR : MSR_IR));
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000401 int r;
402
403 if (relocated) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000404 r = vcpu->arch.mmu.xlate(vcpu, eaddr, pte, data, iswrite);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000405 } else {
406 pte->eaddr = eaddr;
Alexander Graf28e83b42010-07-29 14:47:52 +0200407 pte->raddr = eaddr & KVM_PAM;
Alexander Graf3eeafd72010-03-24 21:48:17 +0100408 pte->vpage = VSID_REAL | eaddr >> 12;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000409 pte->may_read = true;
410 pte->may_write = true;
411 pte->may_execute = true;
412 r = 0;
Alexander Grafc01e3f62014-07-11 02:58:58 +0200413
414 if ((kvmppc_get_msr(vcpu) & (MSR_IR | MSR_DR)) == MSR_DR &&
415 !data) {
416 if ((vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK) &&
417 ((eaddr & SPLIT_HACK_MASK) == SPLIT_HACK_OFFS))
418 pte->raddr &= ~SPLIT_HACK_MASK;
419 }
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000420 }
421
422 return r;
423}
424
Mihai Caraman51f04722014-07-23 19:06:21 +0300425int kvmppc_load_last_inst(struct kvm_vcpu *vcpu, enum instruction_type type,
426 u32 *inst)
427{
428 ulong pc = kvmppc_get_pc(vcpu);
429 int r;
430
431 if (type == INST_SC)
432 pc -= 4;
433
434 r = kvmppc_ld(vcpu, &pc, sizeof(u32), inst, false);
435 if (r == EMULATE_DONE)
436 return r;
437 else
438 return EMULATE_AGAIN;
439}
440EXPORT_SYMBOL_GPL(kvmppc_load_last_inst);
441
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000442int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
443{
444 return 0;
445}
446
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000447int kvmppc_subarch_vcpu_init(struct kvm_vcpu *vcpu)
448{
449 return 0;
450}
451
452void kvmppc_subarch_vcpu_uninit(struct kvm_vcpu *vcpu)
453{
454}
455
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530456int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
457 struct kvm_sregs *sregs)
458{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530459 return vcpu->kvm->arch.kvm_ops->get_sregs(vcpu, sregs);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530460}
461
462int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
463 struct kvm_sregs *sregs)
464{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530465 return vcpu->kvm->arch.kvm_ops->set_sregs(vcpu, sregs);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530466}
467
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000468int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
469{
470 int i;
471
Alexander Grafc7f38f42010-04-16 00:11:40 +0200472 regs->pc = kvmppc_get_pc(vcpu);
Alexander Graf992b5b22010-01-08 02:58:02 +0100473 regs->cr = kvmppc_get_cr(vcpu);
Alexander Grafc7f38f42010-04-16 00:11:40 +0200474 regs->ctr = kvmppc_get_ctr(vcpu);
475 regs->lr = kvmppc_get_lr(vcpu);
Alexander Graf992b5b22010-01-08 02:58:02 +0100476 regs->xer = kvmppc_get_xer(vcpu);
Alexander Graf5deb8e72014-04-24 13:46:24 +0200477 regs->msr = kvmppc_get_msr(vcpu);
478 regs->srr0 = kvmppc_get_srr0(vcpu);
479 regs->srr1 = kvmppc_get_srr1(vcpu);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000480 regs->pid = vcpu->arch.pid;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200481 regs->sprg0 = kvmppc_get_sprg0(vcpu);
482 regs->sprg1 = kvmppc_get_sprg1(vcpu);
483 regs->sprg2 = kvmppc_get_sprg2(vcpu);
484 regs->sprg3 = kvmppc_get_sprg3(vcpu);
485 regs->sprg4 = kvmppc_get_sprg4(vcpu);
486 regs->sprg5 = kvmppc_get_sprg5(vcpu);
487 regs->sprg6 = kvmppc_get_sprg6(vcpu);
488 regs->sprg7 = kvmppc_get_sprg7(vcpu);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000489
490 for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100491 regs->gpr[i] = kvmppc_get_gpr(vcpu, i);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000492
493 return 0;
494}
495
496int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
497{
498 int i;
499
Alexander Grafc7f38f42010-04-16 00:11:40 +0200500 kvmppc_set_pc(vcpu, regs->pc);
Alexander Graf992b5b22010-01-08 02:58:02 +0100501 kvmppc_set_cr(vcpu, regs->cr);
Alexander Grafc7f38f42010-04-16 00:11:40 +0200502 kvmppc_set_ctr(vcpu, regs->ctr);
503 kvmppc_set_lr(vcpu, regs->lr);
Alexander Graf992b5b22010-01-08 02:58:02 +0100504 kvmppc_set_xer(vcpu, regs->xer);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000505 kvmppc_set_msr(vcpu, regs->msr);
Alexander Graf5deb8e72014-04-24 13:46:24 +0200506 kvmppc_set_srr0(vcpu, regs->srr0);
507 kvmppc_set_srr1(vcpu, regs->srr1);
508 kvmppc_set_sprg0(vcpu, regs->sprg0);
509 kvmppc_set_sprg1(vcpu, regs->sprg1);
510 kvmppc_set_sprg2(vcpu, regs->sprg2);
511 kvmppc_set_sprg3(vcpu, regs->sprg3);
512 kvmppc_set_sprg4(vcpu, regs->sprg4);
513 kvmppc_set_sprg5(vcpu, regs->sprg5);
514 kvmppc_set_sprg6(vcpu, regs->sprg6);
515 kvmppc_set_sprg7(vcpu, regs->sprg7);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000516
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100517 for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
518 kvmppc_set_gpr(vcpu, i, regs->gpr[i]);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000519
520 return 0;
521}
522
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000523int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
524{
525 return -ENOTSUPP;
526}
527
528int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
529{
530 return -ENOTSUPP;
531}
532
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300533int kvmppc_get_one_reg(struct kvm_vcpu *vcpu, u64 id,
534 union kvmppc_one_reg *val)
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000535{
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300536 int r = 0;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000537 long int i;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000538
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300539 r = vcpu->kvm->arch.kvm_ops->get_one_reg(vcpu, id, val);
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000540 if (r == -EINVAL) {
541 r = 0;
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300542 switch (id) {
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000543 case KVM_REG_PPC_DAR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300544 *val = get_reg_val(id, kvmppc_get_dar(vcpu));
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000545 break;
546 case KVM_REG_PPC_DSISR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300547 *val = get_reg_val(id, kvmppc_get_dsisr(vcpu));
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000548 break;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000549 case KVM_REG_PPC_FPR0 ... KVM_REG_PPC_FPR31:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300550 i = id - KVM_REG_PPC_FPR0;
551 *val = get_reg_val(id, VCPU_FPR(vcpu, i));
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000552 break;
553 case KVM_REG_PPC_FPSCR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300554 *val = get_reg_val(id, vcpu->arch.fp.fpscr);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000555 break;
Paul Mackerrasefff1912013-10-15 20:43:02 +1100556#ifdef CONFIG_VSX
557 case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31:
558 if (cpu_has_feature(CPU_FTR_VSX)) {
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300559 i = id - KVM_REG_PPC_VSR0;
560 val->vsxval[0] = vcpu->arch.fp.fpr[i][0];
561 val->vsxval[1] = vcpu->arch.fp.fpr[i][1];
Paul Mackerrasefff1912013-10-15 20:43:02 +1100562 } else {
563 r = -ENXIO;
564 }
565 break;
566#endif /* CONFIG_VSX */
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300567 case KVM_REG_PPC_DEBUG_INST:
568 *val = get_reg_val(id, INS_TW);
Bharat Bhushan8c32a2e2013-03-20 20:24:58 +0000569 break;
Paul Mackerras8b786452013-04-17 20:32:26 +0000570#ifdef CONFIG_KVM_XICS
571 case KVM_REG_PPC_ICP_STATE:
572 if (!vcpu->arch.icp) {
573 r = -ENXIO;
574 break;
575 }
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300576 *val = get_reg_val(id, kvmppc_xics_get_icp(vcpu));
Paul Mackerras8b786452013-04-17 20:32:26 +0000577 break;
578#endif /* CONFIG_KVM_XICS */
Alexander Graf616dff82014-04-29 16:48:44 +0200579 case KVM_REG_PPC_FSCR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300580 *val = get_reg_val(id, vcpu->arch.fscr);
Alexander Graf616dff82014-04-29 16:48:44 +0200581 break;
Alexander Grafe14e7a12014-04-22 12:26:58 +0200582 case KVM_REG_PPC_TAR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300583 *val = get_reg_val(id, vcpu->arch.tar);
Alexander Grafe14e7a12014-04-22 12:26:58 +0200584 break;
Alexander Graf2e23f542014-04-29 13:36:21 +0200585 case KVM_REG_PPC_EBBHR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300586 *val = get_reg_val(id, vcpu->arch.ebbhr);
Alexander Graf2e23f542014-04-29 13:36:21 +0200587 break;
588 case KVM_REG_PPC_EBBRR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300589 *val = get_reg_val(id, vcpu->arch.ebbrr);
Alexander Graf2e23f542014-04-29 13:36:21 +0200590 break;
591 case KVM_REG_PPC_BESCR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300592 *val = get_reg_val(id, vcpu->arch.bescr);
Alexander Graf2e23f542014-04-29 13:36:21 +0200593 break;
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530594 case KVM_REG_PPC_VTB:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300595 *val = get_reg_val(id, vcpu->arch.vtb);
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530596 break;
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530597 case KVM_REG_PPC_IC:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300598 *val = get_reg_val(id, vcpu->arch.ic);
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530599 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000600 default:
601 r = -EINVAL;
602 break;
603 }
604 }
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000605
606 return r;
607}
608
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300609int kvmppc_set_one_reg(struct kvm_vcpu *vcpu, u64 id,
610 union kvmppc_one_reg *val)
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000611{
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300612 int r = 0;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000613 long int i;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000614
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300615 r = vcpu->kvm->arch.kvm_ops->set_one_reg(vcpu, id, val);
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000616 if (r == -EINVAL) {
617 r = 0;
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300618 switch (id) {
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000619 case KVM_REG_PPC_DAR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300620 kvmppc_set_dar(vcpu, set_reg_val(id, *val));
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000621 break;
622 case KVM_REG_PPC_DSISR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300623 kvmppc_set_dsisr(vcpu, set_reg_val(id, *val));
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000624 break;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000625 case KVM_REG_PPC_FPR0 ... KVM_REG_PPC_FPR31:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300626 i = id - KVM_REG_PPC_FPR0;
627 VCPU_FPR(vcpu, i) = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000628 break;
629 case KVM_REG_PPC_FPSCR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300630 vcpu->arch.fp.fpscr = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000631 break;
Paul Mackerrasefff1912013-10-15 20:43:02 +1100632#ifdef CONFIG_VSX
633 case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31:
634 if (cpu_has_feature(CPU_FTR_VSX)) {
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300635 i = id - KVM_REG_PPC_VSR0;
636 vcpu->arch.fp.fpr[i][0] = val->vsxval[0];
637 vcpu->arch.fp.fpr[i][1] = val->vsxval[1];
Paul Mackerrasefff1912013-10-15 20:43:02 +1100638 } else {
639 r = -ENXIO;
640 }
641 break;
642#endif /* CONFIG_VSX */
Paul Mackerras8b786452013-04-17 20:32:26 +0000643#ifdef CONFIG_KVM_XICS
644 case KVM_REG_PPC_ICP_STATE:
645 if (!vcpu->arch.icp) {
646 r = -ENXIO;
647 break;
648 }
649 r = kvmppc_xics_set_icp(vcpu,
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300650 set_reg_val(id, *val));
Paul Mackerras8b786452013-04-17 20:32:26 +0000651 break;
652#endif /* CONFIG_KVM_XICS */
Alexander Graf616dff82014-04-29 16:48:44 +0200653 case KVM_REG_PPC_FSCR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300654 vcpu->arch.fscr = set_reg_val(id, *val);
Alexander Graf616dff82014-04-29 16:48:44 +0200655 break;
Alexander Grafe14e7a12014-04-22 12:26:58 +0200656 case KVM_REG_PPC_TAR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300657 vcpu->arch.tar = set_reg_val(id, *val);
Alexander Grafe14e7a12014-04-22 12:26:58 +0200658 break;
Alexander Graf2e23f542014-04-29 13:36:21 +0200659 case KVM_REG_PPC_EBBHR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300660 vcpu->arch.ebbhr = set_reg_val(id, *val);
Alexander Graf2e23f542014-04-29 13:36:21 +0200661 break;
662 case KVM_REG_PPC_EBBRR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300663 vcpu->arch.ebbrr = set_reg_val(id, *val);
Alexander Graf2e23f542014-04-29 13:36:21 +0200664 break;
665 case KVM_REG_PPC_BESCR:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300666 vcpu->arch.bescr = set_reg_val(id, *val);
Alexander Graf2e23f542014-04-29 13:36:21 +0200667 break;
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530668 case KVM_REG_PPC_VTB:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300669 vcpu->arch.vtb = set_reg_val(id, *val);
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530670 break;
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530671 case KVM_REG_PPC_IC:
Mihai Caraman8a41ea52014-08-20 16:36:24 +0300672 vcpu->arch.ic = set_reg_val(id, *val);
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530673 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000674 default:
675 r = -EINVAL;
676 break;
677 }
678 }
679
680 return r;
681}
682
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530683void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
684{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530685 vcpu->kvm->arch.kvm_ops->vcpu_load(vcpu, cpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530686}
687
688void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu)
689{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530690 vcpu->kvm->arch.kvm_ops->vcpu_put(vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530691}
692
693void kvmppc_set_msr(struct kvm_vcpu *vcpu, u64 msr)
694{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530695 vcpu->kvm->arch.kvm_ops->set_msr(vcpu, msr);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530696}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530697EXPORT_SYMBOL_GPL(kvmppc_set_msr);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530698
699int kvmppc_vcpu_run(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
700{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530701 return vcpu->kvm->arch.kvm_ops->vcpu_run(kvm_run, vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530702}
703
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000704int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
705 struct kvm_translation *tr)
706{
707 return 0;
708}
709
Bharat Bhushan092d62e2013-04-08 00:32:12 +0000710int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
711 struct kvm_guest_debug *dbg)
712{
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +0530713 vcpu->guest_debug = dbg->control;
714 return 0;
Bharat Bhushan092d62e2013-04-08 00:32:12 +0000715}
716
Mihai Caramand02d4d12014-09-01 17:19:56 +0300717void kvmppc_decrementer_func(struct kvm_vcpu *vcpu)
Scott Wooddfd4d472011-11-17 12:39:59 +0000718{
Scott Wooddfd4d472011-11-17 12:39:59 +0000719 kvmppc_core_queue_dec(vcpu);
720 kvm_vcpu_kick(vcpu);
721}
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530722
723struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id)
724{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530725 return kvm->arch.kvm_ops->vcpu_create(kvm, id);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530726}
727
728void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu)
729{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530730 vcpu->kvm->arch.kvm_ops->vcpu_free(vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530731}
732
733int kvmppc_core_check_requests(struct kvm_vcpu *vcpu)
734{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530735 return vcpu->kvm->arch.kvm_ops->check_requests(vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530736}
737
738int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
739{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530740 return kvm->arch.kvm_ops->get_dirty_log(kvm, log);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530741}
742
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530743void kvmppc_core_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530744 struct kvm_memory_slot *dont)
745{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530746 kvm->arch.kvm_ops->free_memslot(free, dont);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530747}
748
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530749int kvmppc_core_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530750 unsigned long npages)
751{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530752 return kvm->arch.kvm_ops->create_memslot(slot, npages);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530753}
754
755void kvmppc_core_flush_memslot(struct kvm *kvm, struct kvm_memory_slot *memslot)
756{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530757 kvm->arch.kvm_ops->flush_memslot(kvm, memslot);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530758}
759
760int kvmppc_core_prepare_memory_region(struct kvm *kvm,
761 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200762 const struct kvm_userspace_memory_region *mem)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530763{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530764 return kvm->arch.kvm_ops->prepare_memory_region(kvm, memslot, mem);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530765}
766
767void kvmppc_core_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200768 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200769 const struct kvm_memory_slot *old,
770 const struct kvm_memory_slot *new)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530771{
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200772 kvm->arch.kvm_ops->commit_memory_region(kvm, mem, old, new);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530773}
774
775int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
776{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530777 return kvm->arch.kvm_ops->unmap_hva(kvm, hva);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530778}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530779EXPORT_SYMBOL_GPL(kvm_unmap_hva);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530780
781int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end)
782{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530783 return kvm->arch.kvm_ops->unmap_hva_range(kvm, start, end);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530784}
785
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700786int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530787{
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700788 return kvm->arch.kvm_ops->age_hva(kvm, start, end);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530789}
790
791int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
792{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530793 return kvm->arch.kvm_ops->test_age_hva(kvm, hva);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530794}
795
796void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
797{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530798 kvm->arch.kvm_ops->set_spte_hva(kvm, hva, pte);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530799}
800
801void kvmppc_mmu_destroy(struct kvm_vcpu *vcpu)
802{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530803 vcpu->kvm->arch.kvm_ops->mmu_destroy(vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530804}
805
806int kvmppc_core_init_vm(struct kvm *kvm)
807{
808
809#ifdef CONFIG_PPC64
810 INIT_LIST_HEAD(&kvm->arch.spapr_tce_tables);
811 INIT_LIST_HEAD(&kvm->arch.rtas_tokens);
812#endif
813
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530814 return kvm->arch.kvm_ops->init_vm(kvm);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530815}
816
817void kvmppc_core_destroy_vm(struct kvm *kvm)
818{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530819 kvm->arch.kvm_ops->destroy_vm(kvm);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530820
821#ifdef CONFIG_PPC64
822 kvmppc_rtas_tokens_free(kvm);
823 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
824#endif
825}
826
David Gibson99342cf82015-02-05 11:53:25 +1100827int kvmppc_h_logical_ci_load(struct kvm_vcpu *vcpu)
828{
829 unsigned long size = kvmppc_get_gpr(vcpu, 4);
830 unsigned long addr = kvmppc_get_gpr(vcpu, 5);
831 u64 buf;
Thomas Huth3eb4ee62015-09-18 08:57:28 +0200832 int srcu_idx;
David Gibson99342cf82015-02-05 11:53:25 +1100833 int ret;
834
835 if (!is_power_of_2(size) || (size > sizeof(buf)))
836 return H_TOO_HARD;
837
Thomas Huth3eb4ee62015-09-18 08:57:28 +0200838 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
David Gibson99342cf82015-02-05 11:53:25 +1100839 ret = kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, size, &buf);
Thomas Huth3eb4ee62015-09-18 08:57:28 +0200840 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
David Gibson99342cf82015-02-05 11:53:25 +1100841 if (ret != 0)
842 return H_TOO_HARD;
843
844 switch (size) {
845 case 1:
846 kvmppc_set_gpr(vcpu, 4, *(u8 *)&buf);
847 break;
848
849 case 2:
850 kvmppc_set_gpr(vcpu, 4, be16_to_cpu(*(__be16 *)&buf));
851 break;
852
853 case 4:
854 kvmppc_set_gpr(vcpu, 4, be32_to_cpu(*(__be32 *)&buf));
855 break;
856
857 case 8:
858 kvmppc_set_gpr(vcpu, 4, be64_to_cpu(*(__be64 *)&buf));
859 break;
860
861 default:
862 BUG();
863 }
864
865 return H_SUCCESS;
866}
867EXPORT_SYMBOL_GPL(kvmppc_h_logical_ci_load);
868
869int kvmppc_h_logical_ci_store(struct kvm_vcpu *vcpu)
870{
871 unsigned long size = kvmppc_get_gpr(vcpu, 4);
872 unsigned long addr = kvmppc_get_gpr(vcpu, 5);
873 unsigned long val = kvmppc_get_gpr(vcpu, 6);
874 u64 buf;
Thomas Huth3eb4ee62015-09-18 08:57:28 +0200875 int srcu_idx;
David Gibson99342cf82015-02-05 11:53:25 +1100876 int ret;
877
878 switch (size) {
879 case 1:
880 *(u8 *)&buf = val;
881 break;
882
883 case 2:
884 *(__be16 *)&buf = cpu_to_be16(val);
885 break;
886
887 case 4:
888 *(__be32 *)&buf = cpu_to_be32(val);
889 break;
890
891 case 8:
892 *(__be64 *)&buf = cpu_to_be64(val);
893 break;
894
895 default:
896 return H_TOO_HARD;
897 }
898
Thomas Huth3eb4ee62015-09-18 08:57:28 +0200899 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
David Gibson99342cf82015-02-05 11:53:25 +1100900 ret = kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, size, &buf);
Thomas Huth3eb4ee62015-09-18 08:57:28 +0200901 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
David Gibson99342cf82015-02-05 11:53:25 +1100902 if (ret != 0)
903 return H_TOO_HARD;
904
905 return H_SUCCESS;
906}
907EXPORT_SYMBOL_GPL(kvmppc_h_logical_ci_store);
908
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530909int kvmppc_core_check_processor_compat(void)
910{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530911 /*
912 * We always return 0 for book3s. We check
Laurent Pinchart60acc4e2015-05-27 15:05:42 +0300913 * for compatibility while loading the HV
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530914 * or PR module
915 */
916 return 0;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530917}
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530918
Paul Mackerrasae2113a2014-06-02 11:03:00 +1000919int kvmppc_book3s_hcall_implemented(struct kvm *kvm, unsigned long hcall)
920{
921 return kvm->arch.kvm_ops->hcall_implemented(hcall);
922}
923
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530924static int kvmppc_book3s_init(void)
925{
926 int r;
927
928 r = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
929 if (r)
930 return r;
Alexander Grafab784752014-04-06 23:31:48 +0200931#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530932 r = kvmppc_book3s_init_pr();
933#endif
934 return r;
935
936}
937
938static void kvmppc_book3s_exit(void)
939{
Alexander Grafab784752014-04-06 23:31:48 +0200940#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530941 kvmppc_book3s_exit_pr();
942#endif
943 kvm_exit();
944}
945
946module_init(kvmppc_book3s_init);
947module_exit(kvmppc_book3s_exit);
Alexander Graf398a76c2013-12-09 13:53:42 +0100948
949/* On 32bit this is our one and only kernel module */
Alexander Grafab784752014-04-06 23:31:48 +0200950#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Alexander Graf398a76c2013-12-09 13:53:42 +0100951MODULE_ALIAS_MISCDEV(KVM_MINOR);
952MODULE_ALIAS("devname:kvm");
953#endif