blob: dd03f6b299ba13a38a28cd1c3b69e28041360ce1 [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) },
55 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
56 { "pf_storage", VCPU_STAT(pf_storage) },
57 { "sp_storage", VCPU_STAT(sp_storage) },
58 { "pf_instruc", VCPU_STAT(pf_instruc) },
59 { "sp_instruc", VCPU_STAT(sp_instruc) },
60 { "ld", VCPU_STAT(ld) },
61 { "ld_slow", VCPU_STAT(ld_slow) },
62 { "st", VCPU_STAT(st) },
63 { "st_slow", VCPU_STAT(st_slow) },
64 { NULL }
65};
66
67void kvmppc_core_load_host_debugstate(struct kvm_vcpu *vcpu)
68{
69}
70
71void kvmppc_core_load_guest_debugstate(struct kvm_vcpu *vcpu)
72{
73}
74
Alexander Grafc01e3f62014-07-11 02:58:58 +020075void kvmppc_unfixup_split_real(struct kvm_vcpu *vcpu)
76{
77 if (vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK) {
78 ulong pc = kvmppc_get_pc(vcpu);
79 if ((pc & SPLIT_HACK_MASK) == SPLIT_HACK_OFFS)
80 kvmppc_set_pc(vcpu, pc & ~SPLIT_HACK_MASK);
81 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SPLIT_HACK;
82 }
83}
84EXPORT_SYMBOL_GPL(kvmppc_unfixup_split_real);
85
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +053086static inline unsigned long kvmppc_interrupt_offset(struct kvm_vcpu *vcpu)
87{
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +053088 if (!is_kvmppc_hv_enabled(vcpu->kvm))
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +053089 return to_book3s(vcpu)->hior;
90 return 0;
91}
92
93static inline void kvmppc_update_int_pending(struct kvm_vcpu *vcpu,
94 unsigned long pending_now, unsigned long old_pending)
95{
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +053096 if (is_kvmppc_hv_enabled(vcpu->kvm))
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +053097 return;
98 if (pending_now)
Alexander Graf5deb8e72014-04-24 13:46:24 +020099 kvmppc_set_int_pending(vcpu, 1);
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530100 else if (old_pending)
Alexander Graf5deb8e72014-04-24 13:46:24 +0200101 kvmppc_set_int_pending(vcpu, 0);
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530102}
103
104static inline bool kvmppc_critical_section(struct kvm_vcpu *vcpu)
105{
106 ulong crit_raw;
107 ulong crit_r1;
108 bool crit;
109
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530110 if (is_kvmppc_hv_enabled(vcpu->kvm))
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530111 return false;
112
Alexander Graf5deb8e72014-04-24 13:46:24 +0200113 crit_raw = kvmppc_get_critical(vcpu);
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530114 crit_r1 = kvmppc_get_gpr(vcpu, 1);
115
116 /* Truncate crit indicators in 32 bit mode */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200117 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530118 crit_raw &= 0xffffffff;
119 crit_r1 &= 0xffffffff;
120 }
121
122 /* Critical section when crit == r1 */
123 crit = (crit_raw == crit_r1);
124 /* ... and we're in supervisor mode */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200125 crit = crit && !(kvmppc_get_msr(vcpu) & MSR_PR);
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530126
127 return crit;
128}
129
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000130void kvmppc_inject_interrupt(struct kvm_vcpu *vcpu, int vec, u64 flags)
131{
Alexander Grafc01e3f62014-07-11 02:58:58 +0200132 kvmppc_unfixup_split_real(vcpu);
Alexander Graf5deb8e72014-04-24 13:46:24 +0200133 kvmppc_set_srr0(vcpu, kvmppc_get_pc(vcpu));
134 kvmppc_set_srr1(vcpu, kvmppc_get_msr(vcpu) | flags);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000135 kvmppc_set_pc(vcpu, kvmppc_interrupt_offset(vcpu) + vec);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000136 vcpu->arch.mmu.reset_msr(vcpu);
137}
138
Alexander Graf583617b2009-12-21 20:21:23 +0100139static int kvmppc_book3s_vec2irqprio(unsigned int vec)
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000140{
141 unsigned int prio;
142
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000143 switch (vec) {
144 case 0x100: prio = BOOK3S_IRQPRIO_SYSTEM_RESET; break;
145 case 0x200: prio = BOOK3S_IRQPRIO_MACHINE_CHECK; break;
146 case 0x300: prio = BOOK3S_IRQPRIO_DATA_STORAGE; break;
147 case 0x380: prio = BOOK3S_IRQPRIO_DATA_SEGMENT; break;
148 case 0x400: prio = BOOK3S_IRQPRIO_INST_STORAGE; break;
149 case 0x480: prio = BOOK3S_IRQPRIO_INST_SEGMENT; break;
150 case 0x500: prio = BOOK3S_IRQPRIO_EXTERNAL; break;
Alexander Graf17bd1582010-08-30 10:44:15 +0200151 case 0x501: prio = BOOK3S_IRQPRIO_EXTERNAL_LEVEL; break;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000152 case 0x600: prio = BOOK3S_IRQPRIO_ALIGNMENT; break;
153 case 0x700: prio = BOOK3S_IRQPRIO_PROGRAM; break;
154 case 0x800: prio = BOOK3S_IRQPRIO_FP_UNAVAIL; break;
155 case 0x900: prio = BOOK3S_IRQPRIO_DECREMENTER; break;
156 case 0xc00: prio = BOOK3S_IRQPRIO_SYSCALL; break;
157 case 0xd00: prio = BOOK3S_IRQPRIO_DEBUG; break;
158 case 0xf20: prio = BOOK3S_IRQPRIO_ALTIVEC; break;
159 case 0xf40: prio = BOOK3S_IRQPRIO_VSX; break;
Alexander Graf616dff82014-04-29 16:48:44 +0200160 case 0xf60: prio = BOOK3S_IRQPRIO_FAC_UNAVAIL; break;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000161 default: prio = BOOK3S_IRQPRIO_MAX; break;
162 }
163
Alexander Graf583617b2009-12-21 20:21:23 +0100164 return prio;
165}
166
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000167void kvmppc_book3s_dequeue_irqprio(struct kvm_vcpu *vcpu,
Alexander Graf7706664d2009-12-21 20:21:24 +0100168 unsigned int vec)
169{
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000170 unsigned long old_pending = vcpu->arch.pending_exceptions;
171
Alexander Graf7706664d2009-12-21 20:21:24 +0100172 clear_bit(kvmppc_book3s_vec2irqprio(vec),
173 &vcpu->arch.pending_exceptions);
Alexander Graf9ee18b12010-08-05 12:24:40 +0200174
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000175 kvmppc_update_int_pending(vcpu, vcpu->arch.pending_exceptions,
176 old_pending);
Alexander Graf7706664d2009-12-21 20:21:24 +0100177}
178
Alexander Graf583617b2009-12-21 20:21:23 +0100179void kvmppc_book3s_queue_irqprio(struct kvm_vcpu *vcpu, unsigned int vec)
180{
181 vcpu->stat.queue_intr++;
182
183 set_bit(kvmppc_book3s_vec2irqprio(vec),
184 &vcpu->arch.pending_exceptions);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000185#ifdef EXIT_DEBUG
186 printk(KERN_INFO "Queueing interrupt %x\n", vec);
187#endif
188}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530189EXPORT_SYMBOL_GPL(kvmppc_book3s_queue_irqprio);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000190
Alexander Graf25a8a022010-01-08 02:58:07 +0100191void kvmppc_core_queue_program(struct kvm_vcpu *vcpu, ulong flags)
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000192{
Paul Mackerras3cf658b2011-06-29 00:18:52 +0000193 /* might as well deliver this straight away */
194 kvmppc_inject_interrupt(vcpu, BOOK3S_INTERRUPT_PROGRAM, flags);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000195}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530196EXPORT_SYMBOL_GPL(kvmppc_core_queue_program);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000197
198void kvmppc_core_queue_dec(struct kvm_vcpu *vcpu)
199{
200 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_DECREMENTER);
201}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530202EXPORT_SYMBOL_GPL(kvmppc_core_queue_dec);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000203
204int kvmppc_core_pending_dec(struct kvm_vcpu *vcpu)
205{
Paul Mackerras44075d92011-05-11 00:38:50 +0000206 return test_bit(BOOK3S_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000207}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530208EXPORT_SYMBOL_GPL(kvmppc_core_pending_dec);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000209
Alexander Graf7706664d2009-12-21 20:21:24 +0100210void kvmppc_core_dequeue_dec(struct kvm_vcpu *vcpu)
211{
212 kvmppc_book3s_dequeue_irqprio(vcpu, BOOK3S_INTERRUPT_DECREMENTER);
213}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530214EXPORT_SYMBOL_GPL(kvmppc_core_dequeue_dec);
Alexander Graf7706664d2009-12-21 20:21:24 +0100215
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000216void kvmppc_core_queue_external(struct kvm_vcpu *vcpu,
217 struct kvm_interrupt *irq)
218{
Alexander Graf17bd1582010-08-30 10:44:15 +0200219 unsigned int vec = BOOK3S_INTERRUPT_EXTERNAL;
220
221 if (irq->irq == KVM_INTERRUPT_SET_LEVEL)
222 vec = BOOK3S_INTERRUPT_EXTERNAL_LEVEL;
223
224 kvmppc_book3s_queue_irqprio(vcpu, vec);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000225}
226
Paul Mackerras4fe27d22013-02-14 14:00:25 +0000227void kvmppc_core_dequeue_external(struct kvm_vcpu *vcpu)
Alexander Graf18978762010-03-24 21:48:18 +0100228{
229 kvmppc_book3s_dequeue_irqprio(vcpu, BOOK3S_INTERRUPT_EXTERNAL);
Alexander Graf17bd1582010-08-30 10:44:15 +0200230 kvmppc_book3s_dequeue_irqprio(vcpu, BOOK3S_INTERRUPT_EXTERNAL_LEVEL);
Alexander Graf18978762010-03-24 21:48:18 +0100231}
232
Alexander Graf8de12012014-06-18 21:56:55 +0200233void kvmppc_core_queue_data_storage(struct kvm_vcpu *vcpu, ulong dar,
234 ulong flags)
235{
236 kvmppc_set_dar(vcpu, dar);
237 kvmppc_set_dsisr(vcpu, flags);
238 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_DATA_STORAGE);
239}
240
241void kvmppc_core_queue_inst_storage(struct kvm_vcpu *vcpu, ulong flags)
242{
243 u64 msr = kvmppc_get_msr(vcpu);
244 msr &= ~(SRR1_ISI_NOPT | SRR1_ISI_N_OR_G | SRR1_ISI_PROT);
245 msr |= flags & (SRR1_ISI_NOPT | SRR1_ISI_N_OR_G | SRR1_ISI_PROT);
246 kvmppc_set_msr_fast(vcpu, msr);
247 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_INST_STORAGE);
248}
249
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000250int kvmppc_book3s_irqprio_deliver(struct kvm_vcpu *vcpu, unsigned int priority)
251{
252 int deliver = 1;
253 int vec = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000254 bool crit = kvmppc_critical_section(vcpu);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000255
256 switch (priority) {
257 case BOOK3S_IRQPRIO_DECREMENTER:
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_DECREMENTER;
260 break;
261 case BOOK3S_IRQPRIO_EXTERNAL:
Alexander Graf17bd1582010-08-30 10:44:15 +0200262 case BOOK3S_IRQPRIO_EXTERNAL_LEVEL:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200263 deliver = (kvmppc_get_msr(vcpu) & MSR_EE) && !crit;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000264 vec = BOOK3S_INTERRUPT_EXTERNAL;
265 break;
266 case BOOK3S_IRQPRIO_SYSTEM_RESET:
267 vec = BOOK3S_INTERRUPT_SYSTEM_RESET;
268 break;
269 case BOOK3S_IRQPRIO_MACHINE_CHECK:
270 vec = BOOK3S_INTERRUPT_MACHINE_CHECK;
271 break;
272 case BOOK3S_IRQPRIO_DATA_STORAGE:
273 vec = BOOK3S_INTERRUPT_DATA_STORAGE;
274 break;
275 case BOOK3S_IRQPRIO_INST_STORAGE:
276 vec = BOOK3S_INTERRUPT_INST_STORAGE;
277 break;
278 case BOOK3S_IRQPRIO_DATA_SEGMENT:
279 vec = BOOK3S_INTERRUPT_DATA_SEGMENT;
280 break;
281 case BOOK3S_IRQPRIO_INST_SEGMENT:
282 vec = BOOK3S_INTERRUPT_INST_SEGMENT;
283 break;
284 case BOOK3S_IRQPRIO_ALIGNMENT:
285 vec = BOOK3S_INTERRUPT_ALIGNMENT;
286 break;
287 case BOOK3S_IRQPRIO_PROGRAM:
288 vec = BOOK3S_INTERRUPT_PROGRAM;
289 break;
290 case BOOK3S_IRQPRIO_VSX:
291 vec = BOOK3S_INTERRUPT_VSX;
292 break;
293 case BOOK3S_IRQPRIO_ALTIVEC:
294 vec = BOOK3S_INTERRUPT_ALTIVEC;
295 break;
296 case BOOK3S_IRQPRIO_FP_UNAVAIL:
297 vec = BOOK3S_INTERRUPT_FP_UNAVAIL;
298 break;
299 case BOOK3S_IRQPRIO_SYSCALL:
300 vec = BOOK3S_INTERRUPT_SYSCALL;
301 break;
302 case BOOK3S_IRQPRIO_DEBUG:
303 vec = BOOK3S_INTERRUPT_TRACE;
304 break;
305 case BOOK3S_IRQPRIO_PERFORMANCE_MONITOR:
306 vec = BOOK3S_INTERRUPT_PERFMON;
307 break;
Alexander Graf616dff82014-04-29 16:48:44 +0200308 case BOOK3S_IRQPRIO_FAC_UNAVAIL:
309 vec = BOOK3S_INTERRUPT_FAC_UNAVAIL;
310 break;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000311 default:
312 deliver = 0;
313 printk(KERN_ERR "KVM: Unknown interrupt: 0x%x\n", priority);
314 break;
315 }
316
317#if 0
318 printk(KERN_INFO "Deliver interrupt 0x%x? %x\n", vec, deliver);
319#endif
320
321 if (deliver)
Paul Mackerras3cf658b2011-06-29 00:18:52 +0000322 kvmppc_inject_interrupt(vcpu, vec, 0);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000323
324 return deliver;
325}
326
Alexander Graf17bd1582010-08-30 10:44:15 +0200327/*
328 * This function determines if an irqprio should be cleared once issued.
329 */
330static bool clear_irqprio(struct kvm_vcpu *vcpu, unsigned int priority)
331{
332 switch (priority) {
333 case BOOK3S_IRQPRIO_DECREMENTER:
334 /* DEC interrupts get cleared by mtdec */
335 return false;
336 case BOOK3S_IRQPRIO_EXTERNAL_LEVEL:
337 /* External interrupts get cleared by userspace */
338 return false;
339 }
340
341 return true;
342}
343
Alexander Grafa8e4ef82012-02-16 14:07:37 +0000344int kvmppc_core_prepare_to_enter(struct kvm_vcpu *vcpu)
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000345{
346 unsigned long *pending = &vcpu->arch.pending_exceptions;
Alexander Graf90bba352010-07-29 14:47:51 +0200347 unsigned long old_pending = vcpu->arch.pending_exceptions;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000348 unsigned int priority;
349
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000350#ifdef EXIT_DEBUG
351 if (vcpu->arch.pending_exceptions)
352 printk(KERN_EMERG "KVM: Check pending: %lx\n", vcpu->arch.pending_exceptions);
353#endif
354 priority = __ffs(*pending);
Alexander Grafada7ba12010-04-16 00:11:56 +0200355 while (priority < BOOK3S_IRQPRIO_MAX) {
Alexander Graf7706664d2009-12-21 20:21:24 +0100356 if (kvmppc_book3s_irqprio_deliver(vcpu, priority) &&
Alexander Graf17bd1582010-08-30 10:44:15 +0200357 clear_irqprio(vcpu, priority)) {
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000358 clear_bit(priority, &vcpu->arch.pending_exceptions);
359 break;
360 }
361
362 priority = find_next_bit(pending,
363 BITS_PER_BYTE * sizeof(*pending),
364 priority + 1);
365 }
Alexander Graf90bba352010-07-29 14:47:51 +0200366
367 /* Tell the guest about our interrupt status */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000368 kvmppc_update_int_pending(vcpu, *pending, old_pending);
Alexander Grafa8e4ef82012-02-16 14:07:37 +0000369
370 return 0;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000371}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530372EXPORT_SYMBOL_GPL(kvmppc_core_prepare_to_enter);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000373
Alexander Graf89b68c92014-07-13 16:37:12 +0200374pfn_t kvmppc_gpa_to_pfn(struct kvm_vcpu *vcpu, gpa_t gpa, bool writing,
Paul Mackerras93b159b2013-09-20 14:52:51 +1000375 bool *writable)
Alexander Grafe8508942010-07-29 14:47:54 +0200376{
Alexander Graf89b68c92014-07-13 16:37:12 +0200377 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM;
378 gfn_t gfn = gpa >> PAGE_SHIFT;
Alexander Grafe8508942010-07-29 14:47:54 +0200379
Alexander Graf5deb8e72014-04-24 13:46:24 +0200380 if (!(kvmppc_get_msr(vcpu) & MSR_SF))
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000381 mp_pa = (uint32_t)mp_pa;
382
Alexander Grafe8508942010-07-29 14:47:54 +0200383 /* Magic page override */
Alexander Graf89b68c92014-07-13 16:37:12 +0200384 gpa &= ~0xFFFULL;
385 if (unlikely(mp_pa) && unlikely((gpa & KVM_PAM) == mp_pa)) {
Alexander Grafe8508942010-07-29 14:47:54 +0200386 ulong shared_page = ((ulong)vcpu->arch.shared) & PAGE_MASK;
387 pfn_t pfn;
388
389 pfn = (pfn_t)virt_to_phys((void*)shared_page) >> PAGE_SHIFT;
390 get_page(pfn_to_page(pfn));
Paul Mackerras93b159b2013-09-20 14:52:51 +1000391 if (writable)
392 *writable = true;
Alexander Grafe8508942010-07-29 14:47:54 +0200393 return pfn;
394 }
395
Paul Mackerras93b159b2013-09-20 14:52:51 +1000396 return gfn_to_pfn_prot(vcpu->kvm, gfn, writing, writable);
Alexander Grafe8508942010-07-29 14:47:54 +0200397}
Alexander Graf89b68c92014-07-13 16:37:12 +0200398EXPORT_SYMBOL_GPL(kvmppc_gpa_to_pfn);
Alexander Grafe8508942010-07-29 14:47:54 +0200399
Alexander Graf7d15c06f2014-06-20 13:52:36 +0200400int kvmppc_xlate(struct kvm_vcpu *vcpu, ulong eaddr, enum xlate_instdata xlid,
401 enum xlate_readwrite xlrw, struct kvmppc_pte *pte)
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000402{
Alexander Graf7d15c06f2014-06-20 13:52:36 +0200403 bool data = (xlid == XLATE_DATA);
404 bool iswrite = (xlrw == XLATE_WRITE);
Alexander Graf5deb8e72014-04-24 13:46:24 +0200405 int relocated = (kvmppc_get_msr(vcpu) & (data ? MSR_DR : MSR_IR));
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000406 int r;
407
408 if (relocated) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000409 r = vcpu->arch.mmu.xlate(vcpu, eaddr, pte, data, iswrite);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000410 } else {
411 pte->eaddr = eaddr;
Alexander Graf28e83b42010-07-29 14:47:52 +0200412 pte->raddr = eaddr & KVM_PAM;
Alexander Graf3eeafd72010-03-24 21:48:17 +0100413 pte->vpage = VSID_REAL | eaddr >> 12;
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000414 pte->may_read = true;
415 pte->may_write = true;
416 pte->may_execute = true;
417 r = 0;
Alexander Grafc01e3f62014-07-11 02:58:58 +0200418
419 if ((kvmppc_get_msr(vcpu) & (MSR_IR | MSR_DR)) == MSR_DR &&
420 !data) {
421 if ((vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK) &&
422 ((eaddr & SPLIT_HACK_MASK) == SPLIT_HACK_OFFS))
423 pte->raddr &= ~SPLIT_HACK_MASK;
424 }
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000425 }
426
427 return r;
428}
429
Mihai Caraman51f04722014-07-23 19:06:21 +0300430int kvmppc_load_last_inst(struct kvm_vcpu *vcpu, enum instruction_type type,
431 u32 *inst)
432{
433 ulong pc = kvmppc_get_pc(vcpu);
434 int r;
435
436 if (type == INST_SC)
437 pc -= 4;
438
439 r = kvmppc_ld(vcpu, &pc, sizeof(u32), inst, false);
440 if (r == EMULATE_DONE)
441 return r;
442 else
443 return EMULATE_AGAIN;
444}
445EXPORT_SYMBOL_GPL(kvmppc_load_last_inst);
446
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000447int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
448{
449 return 0;
450}
451
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000452int kvmppc_subarch_vcpu_init(struct kvm_vcpu *vcpu)
453{
454 return 0;
455}
456
457void kvmppc_subarch_vcpu_uninit(struct kvm_vcpu *vcpu)
458{
459}
460
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530461int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
462 struct kvm_sregs *sregs)
463{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530464 return vcpu->kvm->arch.kvm_ops->get_sregs(vcpu, sregs);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530465}
466
467int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
468 struct kvm_sregs *sregs)
469{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530470 return vcpu->kvm->arch.kvm_ops->set_sregs(vcpu, sregs);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530471}
472
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000473int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
474{
475 int i;
476
Alexander Grafc7f38f42010-04-16 00:11:40 +0200477 regs->pc = kvmppc_get_pc(vcpu);
Alexander Graf992b5b22010-01-08 02:58:02 +0100478 regs->cr = kvmppc_get_cr(vcpu);
Alexander Grafc7f38f42010-04-16 00:11:40 +0200479 regs->ctr = kvmppc_get_ctr(vcpu);
480 regs->lr = kvmppc_get_lr(vcpu);
Alexander Graf992b5b22010-01-08 02:58:02 +0100481 regs->xer = kvmppc_get_xer(vcpu);
Alexander Graf5deb8e72014-04-24 13:46:24 +0200482 regs->msr = kvmppc_get_msr(vcpu);
483 regs->srr0 = kvmppc_get_srr0(vcpu);
484 regs->srr1 = kvmppc_get_srr1(vcpu);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000485 regs->pid = vcpu->arch.pid;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200486 regs->sprg0 = kvmppc_get_sprg0(vcpu);
487 regs->sprg1 = kvmppc_get_sprg1(vcpu);
488 regs->sprg2 = kvmppc_get_sprg2(vcpu);
489 regs->sprg3 = kvmppc_get_sprg3(vcpu);
490 regs->sprg4 = kvmppc_get_sprg4(vcpu);
491 regs->sprg5 = kvmppc_get_sprg5(vcpu);
492 regs->sprg6 = kvmppc_get_sprg6(vcpu);
493 regs->sprg7 = kvmppc_get_sprg7(vcpu);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000494
495 for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100496 regs->gpr[i] = kvmppc_get_gpr(vcpu, i);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000497
498 return 0;
499}
500
501int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
502{
503 int i;
504
Alexander Grafc7f38f42010-04-16 00:11:40 +0200505 kvmppc_set_pc(vcpu, regs->pc);
Alexander Graf992b5b22010-01-08 02:58:02 +0100506 kvmppc_set_cr(vcpu, regs->cr);
Alexander Grafc7f38f42010-04-16 00:11:40 +0200507 kvmppc_set_ctr(vcpu, regs->ctr);
508 kvmppc_set_lr(vcpu, regs->lr);
Alexander Graf992b5b22010-01-08 02:58:02 +0100509 kvmppc_set_xer(vcpu, regs->xer);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000510 kvmppc_set_msr(vcpu, regs->msr);
Alexander Graf5deb8e72014-04-24 13:46:24 +0200511 kvmppc_set_srr0(vcpu, regs->srr0);
512 kvmppc_set_srr1(vcpu, regs->srr1);
513 kvmppc_set_sprg0(vcpu, regs->sprg0);
514 kvmppc_set_sprg1(vcpu, regs->sprg1);
515 kvmppc_set_sprg2(vcpu, regs->sprg2);
516 kvmppc_set_sprg3(vcpu, regs->sprg3);
517 kvmppc_set_sprg4(vcpu, regs->sprg4);
518 kvmppc_set_sprg5(vcpu, regs->sprg5);
519 kvmppc_set_sprg6(vcpu, regs->sprg6);
520 kvmppc_set_sprg7(vcpu, regs->sprg7);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000521
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100522 for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
523 kvmppc_set_gpr(vcpu, i, regs->gpr[i]);
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000524
525 return 0;
526}
527
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000528int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
529{
530 return -ENOTSUPP;
531}
532
533int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
534{
535 return -ENOTSUPP;
536}
537
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000538int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
539{
540 int r;
541 union kvmppc_one_reg val;
542 int size;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000543 long int i;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000544
545 size = one_reg_size(reg->id);
546 if (size > sizeof(val))
547 return -EINVAL;
548
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530549 r = vcpu->kvm->arch.kvm_ops->get_one_reg(vcpu, reg->id, &val);
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000550 if (r == -EINVAL) {
551 r = 0;
552 switch (reg->id) {
553 case KVM_REG_PPC_DAR:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200554 val = get_reg_val(reg->id, kvmppc_get_dar(vcpu));
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000555 break;
556 case KVM_REG_PPC_DSISR:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200557 val = get_reg_val(reg->id, kvmppc_get_dsisr(vcpu));
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000558 break;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000559 case KVM_REG_PPC_FPR0 ... KVM_REG_PPC_FPR31:
560 i = reg->id - KVM_REG_PPC_FPR0;
Paul Mackerrasefff1912013-10-15 20:43:02 +1100561 val = get_reg_val(reg->id, VCPU_FPR(vcpu, i));
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000562 break;
563 case KVM_REG_PPC_FPSCR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100564 val = get_reg_val(reg->id, vcpu->arch.fp.fpscr);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000565 break;
566#ifdef CONFIG_ALTIVEC
567 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
568 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
569 r = -ENXIO;
570 break;
571 }
Paul Mackerrasefff1912013-10-15 20:43:02 +1100572 val.vval = vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0];
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000573 break;
574 case KVM_REG_PPC_VSCR:
575 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
576 r = -ENXIO;
577 break;
578 }
Paul Mackerrasefff1912013-10-15 20:43:02 +1100579 val = get_reg_val(reg->id, vcpu->arch.vr.vscr.u[3]);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000580 break;
Paul Mackerrasc0867fd2013-09-06 13:18:32 +1000581 case KVM_REG_PPC_VRSAVE:
582 val = get_reg_val(reg->id, vcpu->arch.vrsave);
583 break;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000584#endif /* CONFIG_ALTIVEC */
Paul Mackerrasefff1912013-10-15 20:43:02 +1100585#ifdef CONFIG_VSX
586 case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31:
587 if (cpu_has_feature(CPU_FTR_VSX)) {
588 long int i = reg->id - KVM_REG_PPC_VSR0;
589 val.vsxval[0] = vcpu->arch.fp.fpr[i][0];
590 val.vsxval[1] = vcpu->arch.fp.fpr[i][1];
591 } else {
592 r = -ENXIO;
593 }
594 break;
595#endif /* CONFIG_VSX */
Bharat Bhushan8c32a2e2013-03-20 20:24:58 +0000596 case KVM_REG_PPC_DEBUG_INST: {
597 u32 opcode = INS_TW;
598 r = copy_to_user((u32 __user *)(long)reg->addr,
599 &opcode, sizeof(u32));
600 break;
601 }
Paul Mackerras8b786452013-04-17 20:32:26 +0000602#ifdef CONFIG_KVM_XICS
603 case KVM_REG_PPC_ICP_STATE:
604 if (!vcpu->arch.icp) {
605 r = -ENXIO;
606 break;
607 }
608 val = get_reg_val(reg->id, kvmppc_xics_get_icp(vcpu));
609 break;
610#endif /* CONFIG_KVM_XICS */
Alexander Graf616dff82014-04-29 16:48:44 +0200611 case KVM_REG_PPC_FSCR:
612 val = get_reg_val(reg->id, vcpu->arch.fscr);
613 break;
Alexander Grafe14e7a12014-04-22 12:26:58 +0200614 case KVM_REG_PPC_TAR:
615 val = get_reg_val(reg->id, vcpu->arch.tar);
616 break;
Alexander Graf2e23f542014-04-29 13:36:21 +0200617 case KVM_REG_PPC_EBBHR:
618 val = get_reg_val(reg->id, vcpu->arch.ebbhr);
619 break;
620 case KVM_REG_PPC_EBBRR:
621 val = get_reg_val(reg->id, vcpu->arch.ebbrr);
622 break;
623 case KVM_REG_PPC_BESCR:
624 val = get_reg_val(reg->id, vcpu->arch.bescr);
625 break;
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530626 case KVM_REG_PPC_VTB:
627 val = get_reg_val(reg->id, vcpu->arch.vtb);
628 break;
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530629 case KVM_REG_PPC_IC:
630 val = get_reg_val(reg->id, vcpu->arch.ic);
631 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000632 default:
633 r = -EINVAL;
634 break;
635 }
636 }
637 if (r)
638 return r;
639
640 if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size))
641 r = -EFAULT;
642
643 return r;
644}
645
646int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
647{
648 int r;
649 union kvmppc_one_reg val;
650 int size;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000651 long int i;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000652
653 size = one_reg_size(reg->id);
654 if (size > sizeof(val))
655 return -EINVAL;
656
657 if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size))
658 return -EFAULT;
659
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530660 r = vcpu->kvm->arch.kvm_ops->set_one_reg(vcpu, reg->id, &val);
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000661 if (r == -EINVAL) {
662 r = 0;
663 switch (reg->id) {
664 case KVM_REG_PPC_DAR:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200665 kvmppc_set_dar(vcpu, set_reg_val(reg->id, val));
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000666 break;
667 case KVM_REG_PPC_DSISR:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200668 kvmppc_set_dsisr(vcpu, set_reg_val(reg->id, val));
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000669 break;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000670 case KVM_REG_PPC_FPR0 ... KVM_REG_PPC_FPR31:
671 i = reg->id - KVM_REG_PPC_FPR0;
Paul Mackerrasefff1912013-10-15 20:43:02 +1100672 VCPU_FPR(vcpu, i) = set_reg_val(reg->id, val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000673 break;
674 case KVM_REG_PPC_FPSCR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100675 vcpu->arch.fp.fpscr = set_reg_val(reg->id, val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000676 break;
677#ifdef CONFIG_ALTIVEC
678 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
679 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
680 r = -ENXIO;
681 break;
682 }
Paul Mackerrasefff1912013-10-15 20:43:02 +1100683 vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0] = val.vval;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000684 break;
685 case KVM_REG_PPC_VSCR:
686 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
687 r = -ENXIO;
688 break;
689 }
Paul Mackerrasefff1912013-10-15 20:43:02 +1100690 vcpu->arch.vr.vscr.u[3] = set_reg_val(reg->id, val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000691 break;
Paul Mackerrasc0867fd2013-09-06 13:18:32 +1000692 case KVM_REG_PPC_VRSAVE:
693 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
694 r = -ENXIO;
695 break;
696 }
697 vcpu->arch.vrsave = set_reg_val(reg->id, val);
698 break;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000699#endif /* CONFIG_ALTIVEC */
Paul Mackerrasefff1912013-10-15 20:43:02 +1100700#ifdef CONFIG_VSX
701 case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31:
702 if (cpu_has_feature(CPU_FTR_VSX)) {
703 long int i = reg->id - KVM_REG_PPC_VSR0;
704 vcpu->arch.fp.fpr[i][0] = val.vsxval[0];
705 vcpu->arch.fp.fpr[i][1] = val.vsxval[1];
706 } else {
707 r = -ENXIO;
708 }
709 break;
710#endif /* CONFIG_VSX */
Paul Mackerras8b786452013-04-17 20:32:26 +0000711#ifdef CONFIG_KVM_XICS
712 case KVM_REG_PPC_ICP_STATE:
713 if (!vcpu->arch.icp) {
714 r = -ENXIO;
715 break;
716 }
717 r = kvmppc_xics_set_icp(vcpu,
718 set_reg_val(reg->id, val));
719 break;
720#endif /* CONFIG_KVM_XICS */
Alexander Graf616dff82014-04-29 16:48:44 +0200721 case KVM_REG_PPC_FSCR:
722 vcpu->arch.fscr = set_reg_val(reg->id, val);
723 break;
Alexander Grafe14e7a12014-04-22 12:26:58 +0200724 case KVM_REG_PPC_TAR:
725 vcpu->arch.tar = set_reg_val(reg->id, val);
726 break;
Alexander Graf2e23f542014-04-29 13:36:21 +0200727 case KVM_REG_PPC_EBBHR:
728 vcpu->arch.ebbhr = set_reg_val(reg->id, val);
729 break;
730 case KVM_REG_PPC_EBBRR:
731 vcpu->arch.ebbrr = set_reg_val(reg->id, val);
732 break;
733 case KVM_REG_PPC_BESCR:
734 vcpu->arch.bescr = set_reg_val(reg->id, val);
735 break;
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530736 case KVM_REG_PPC_VTB:
737 vcpu->arch.vtb = set_reg_val(reg->id, val);
738 break;
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530739 case KVM_REG_PPC_IC:
740 vcpu->arch.ic = set_reg_val(reg->id, val);
741 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000742 default:
743 r = -EINVAL;
744 break;
745 }
746 }
747
748 return r;
749}
750
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530751void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
752{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530753 vcpu->kvm->arch.kvm_ops->vcpu_load(vcpu, cpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530754}
755
756void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu)
757{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530758 vcpu->kvm->arch.kvm_ops->vcpu_put(vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530759}
760
761void kvmppc_set_msr(struct kvm_vcpu *vcpu, u64 msr)
762{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530763 vcpu->kvm->arch.kvm_ops->set_msr(vcpu, msr);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530764}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530765EXPORT_SYMBOL_GPL(kvmppc_set_msr);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530766
767int kvmppc_vcpu_run(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
768{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530769 return vcpu->kvm->arch.kvm_ops->vcpu_run(kvm_run, vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530770}
771
Alexander Graf2f4cf5e2009-10-30 05:47:10 +0000772int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
773 struct kvm_translation *tr)
774{
775 return 0;
776}
777
Bharat Bhushan092d62e2013-04-08 00:32:12 +0000778int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
779 struct kvm_guest_debug *dbg)
780{
781 return -EINVAL;
782}
783
Scott Wooddfd4d472011-11-17 12:39:59 +0000784void kvmppc_decrementer_func(unsigned long data)
785{
786 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
787
788 kvmppc_core_queue_dec(vcpu);
789 kvm_vcpu_kick(vcpu);
790}
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530791
792struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id)
793{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530794 return kvm->arch.kvm_ops->vcpu_create(kvm, id);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530795}
796
797void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu)
798{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530799 vcpu->kvm->arch.kvm_ops->vcpu_free(vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530800}
801
802int kvmppc_core_check_requests(struct kvm_vcpu *vcpu)
803{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530804 return vcpu->kvm->arch.kvm_ops->check_requests(vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530805}
806
807int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
808{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530809 return kvm->arch.kvm_ops->get_dirty_log(kvm, log);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530810}
811
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530812void kvmppc_core_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530813 struct kvm_memory_slot *dont)
814{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530815 kvm->arch.kvm_ops->free_memslot(free, dont);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530816}
817
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530818int kvmppc_core_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530819 unsigned long npages)
820{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530821 return kvm->arch.kvm_ops->create_memslot(slot, npages);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530822}
823
824void kvmppc_core_flush_memslot(struct kvm *kvm, struct kvm_memory_slot *memslot)
825{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530826 kvm->arch.kvm_ops->flush_memslot(kvm, memslot);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530827}
828
829int kvmppc_core_prepare_memory_region(struct kvm *kvm,
830 struct kvm_memory_slot *memslot,
831 struct kvm_userspace_memory_region *mem)
832{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530833 return kvm->arch.kvm_ops->prepare_memory_region(kvm, memslot, mem);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530834}
835
836void kvmppc_core_commit_memory_region(struct kvm *kvm,
837 struct kvm_userspace_memory_region *mem,
838 const struct kvm_memory_slot *old)
839{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530840 kvm->arch.kvm_ops->commit_memory_region(kvm, mem, old);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530841}
842
843int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
844{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530845 return kvm->arch.kvm_ops->unmap_hva(kvm, hva);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530846}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530847EXPORT_SYMBOL_GPL(kvm_unmap_hva);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530848
849int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end)
850{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530851 return kvm->arch.kvm_ops->unmap_hva_range(kvm, start, end);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530852}
853
854int kvm_age_hva(struct kvm *kvm, unsigned long hva)
855{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530856 return kvm->arch.kvm_ops->age_hva(kvm, hva);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530857}
858
859int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
860{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530861 return kvm->arch.kvm_ops->test_age_hva(kvm, hva);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530862}
863
864void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
865{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530866 kvm->arch.kvm_ops->set_spte_hva(kvm, hva, pte);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530867}
868
869void kvmppc_mmu_destroy(struct kvm_vcpu *vcpu)
870{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530871 vcpu->kvm->arch.kvm_ops->mmu_destroy(vcpu);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530872}
873
874int kvmppc_core_init_vm(struct kvm *kvm)
875{
876
877#ifdef CONFIG_PPC64
878 INIT_LIST_HEAD(&kvm->arch.spapr_tce_tables);
879 INIT_LIST_HEAD(&kvm->arch.rtas_tokens);
880#endif
881
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530882 return kvm->arch.kvm_ops->init_vm(kvm);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530883}
884
885void kvmppc_core_destroy_vm(struct kvm *kvm)
886{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530887 kvm->arch.kvm_ops->destroy_vm(kvm);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530888
889#ifdef CONFIG_PPC64
890 kvmppc_rtas_tokens_free(kvm);
891 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
892#endif
893}
894
895int kvmppc_core_check_processor_compat(void)
896{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530897 /*
898 * We always return 0 for book3s. We check
899 * for compatability while loading the HV
900 * or PR module
901 */
902 return 0;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530903}
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530904
Paul Mackerrasae2113a2014-06-02 11:03:00 +1000905int kvmppc_book3s_hcall_implemented(struct kvm *kvm, unsigned long hcall)
906{
907 return kvm->arch.kvm_ops->hcall_implemented(hcall);
908}
909
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530910static int kvmppc_book3s_init(void)
911{
912 int r;
913
914 r = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
915 if (r)
916 return r;
Alexander Grafab784752014-04-06 23:31:48 +0200917#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530918 r = kvmppc_book3s_init_pr();
919#endif
920 return r;
921
922}
923
924static void kvmppc_book3s_exit(void)
925{
Alexander Grafab784752014-04-06 23:31:48 +0200926#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530927 kvmppc_book3s_exit_pr();
928#endif
929 kvm_exit();
930}
931
932module_init(kvmppc_book3s_init);
933module_exit(kvmppc_book3s_exit);
Alexander Graf398a76c2013-12-09 13:53:42 +0100934
935/* On 32bit this is our one and only kernel module */
Alexander Grafab784752014-04-06 23:31:48 +0200936#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Alexander Graf398a76c2013-12-09 13:53:42 +0100937MODULE_ALIAS_MISCDEV(KVM_MINOR);
938MODULE_ALIAS("devname:kvm");
939#endif