blob: b4e15bf3ff88e4d624fc7b3af8031082ed244f4c [file] [log] [blame]
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
14 *
15 * Copyright IBM Corp. 2007
16 *
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
19 */
20
21#include <linux/errno.h>
22#include <linux/err.h>
23#include <linux/kvm_host.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050024#include <linux/vmalloc.h>
Alexander Graf544c6762009-11-02 12:02:31 +000025#include <linux/hrtimer.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050026#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Scott Woodeb1e4f42013-04-12 14:08:47 +000028#include <linux/file.h>
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +053029#include <linux/module.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050030#include <asm/cputable.h>
31#include <asm/uaccess.h>
32#include <asm/kvm_ppc.h>
Hollis Blanchard83aae4a2008-07-25 13:54:52 -050033#include <asm/tlbflush.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000034#include <asm/cputhreads.h>
Alexander Grafbd2be682012-08-13 01:04:19 +020035#include <asm/irqflags.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060036#include "timing.h"
Alexander Graf5efdb4b2013-04-17 00:37:57 +020037#include "irq.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110038#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050039
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030040#define CREATE_TRACE_POINTS
41#include "trace.h"
42
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +053043struct kvmppc_ops *kvmppc_hv_ops;
44EXPORT_SYMBOL_GPL(kvmppc_hv_ops);
45struct kvmppc_ops *kvmppc_pr_ops;
46EXPORT_SYMBOL_GPL(kvmppc_pr_ops);
47
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053048
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050049int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
50{
Liu Yu-B132019202e072012-07-03 05:48:52 +000051 return !!(v->arch.pending_exceptions) ||
Scott Wooddfd4d472011-11-17 12:39:59 +000052 v->requests;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050053}
54
Christoffer Dallb6d33832012-03-08 16:44:24 -050055int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
56{
57 return 1;
58}
59
Alexander Graf03d25c52012-08-10 12:28:50 +020060/*
61 * Common checks before entering the guest world. Call with interrupts
62 * disabled.
63 *
Alexander Graf7ee78852012-08-13 12:44:41 +020064 * returns:
65 *
66 * == 1 if we're ready to go into guest state
67 * <= 0 if we need to go back to the host with return value
Alexander Graf03d25c52012-08-10 12:28:50 +020068 */
69int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
70{
Scott Wood6c85f522014-01-09 19:18:40 -060071 int r;
Alexander Graf03d25c52012-08-10 12:28:50 +020072
Scott Wood6c85f522014-01-09 19:18:40 -060073 WARN_ON(irqs_disabled());
74 hard_irq_disable();
75
Alexander Graf03d25c52012-08-10 12:28:50 +020076 while (true) {
77 if (need_resched()) {
78 local_irq_enable();
79 cond_resched();
Scott Wood6c85f522014-01-09 19:18:40 -060080 hard_irq_disable();
Alexander Graf03d25c52012-08-10 12:28:50 +020081 continue;
82 }
83
84 if (signal_pending(current)) {
Alexander Graf7ee78852012-08-13 12:44:41 +020085 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
86 vcpu->run->exit_reason = KVM_EXIT_INTR;
87 r = -EINTR;
Alexander Graf03d25c52012-08-10 12:28:50 +020088 break;
89 }
90
Scott Wood5bd1cf12012-08-22 15:03:50 +000091 vcpu->mode = IN_GUEST_MODE;
92
93 /*
94 * Reading vcpu->requests must happen after setting vcpu->mode,
95 * so we don't miss a request because the requester sees
96 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
97 * before next entering the guest (and thus doesn't IPI).
98 */
Alexander Graf03d25c52012-08-10 12:28:50 +020099 smp_mb();
Scott Wood5bd1cf12012-08-22 15:03:50 +0000100
Alexander Graf03d25c52012-08-10 12:28:50 +0200101 if (vcpu->requests) {
102 /* Make sure we process requests preemptable */
103 local_irq_enable();
104 trace_kvm_check_requests(vcpu);
Alexander Graf7c973a22012-08-13 12:50:35 +0200105 r = kvmppc_core_check_requests(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -0600106 hard_irq_disable();
Alexander Graf7c973a22012-08-13 12:50:35 +0200107 if (r > 0)
108 continue;
109 break;
Alexander Graf03d25c52012-08-10 12:28:50 +0200110 }
111
112 if (kvmppc_core_prepare_to_enter(vcpu)) {
113 /* interrupts got enabled in between, so we
114 are back at square 1 */
115 continue;
116 }
117
Alexander Graf3766a4c2012-08-13 01:24:01 +0200118 kvm_guest_enter();
Scott Wood6c85f522014-01-09 19:18:40 -0600119 return 1;
Alexander Graf03d25c52012-08-10 12:28:50 +0200120 }
121
Scott Wood6c85f522014-01-09 19:18:40 -0600122 /* return to host */
123 local_irq_enable();
Alexander Graf03d25c52012-08-10 12:28:50 +0200124 return r;
125}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530126EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
Alexander Graf03d25c52012-08-10 12:28:50 +0200127
Alexander Graf5deb8e72014-04-24 13:46:24 +0200128#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
129static void kvmppc_swab_shared(struct kvm_vcpu *vcpu)
130{
131 struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared;
132 int i;
133
134 shared->sprg0 = swab64(shared->sprg0);
135 shared->sprg1 = swab64(shared->sprg1);
136 shared->sprg2 = swab64(shared->sprg2);
137 shared->sprg3 = swab64(shared->sprg3);
138 shared->srr0 = swab64(shared->srr0);
139 shared->srr1 = swab64(shared->srr1);
140 shared->dar = swab64(shared->dar);
141 shared->msr = swab64(shared->msr);
142 shared->dsisr = swab32(shared->dsisr);
143 shared->int_pending = swab32(shared->int_pending);
144 for (i = 0; i < ARRAY_SIZE(shared->sr); i++)
145 shared->sr[i] = swab32(shared->sr[i]);
146}
147#endif
148
Alexander Graf2a342ed2010-07-29 14:47:48 +0200149int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
150{
151 int nr = kvmppc_get_gpr(vcpu, 11);
152 int r;
153 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
154 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
155 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
156 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
157 unsigned long r2 = 0;
158
Alexander Graf5deb8e72014-04-24 13:46:24 +0200159 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
Alexander Graf2a342ed2010-07-29 14:47:48 +0200160 /* 32 bit mode */
161 param1 &= 0xffffffff;
162 param2 &= 0xffffffff;
163 param3 &= 0xffffffff;
164 param4 &= 0xffffffff;
165 }
166
167 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000168 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200169 {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200170#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
171 /* Book3S can be little endian, find it out here */
172 int shared_big_endian = true;
173 if (vcpu->arch.intr_msr & MSR_LE)
174 shared_big_endian = false;
175 if (shared_big_endian != vcpu->arch.shared_big_endian)
176 kvmppc_swab_shared(vcpu);
177 vcpu->arch.shared_big_endian = shared_big_endian;
178#endif
179
Alexander Graf5fc87402010-07-29 14:47:55 +0200180 vcpu->arch.magic_page_pa = param1;
181 vcpu->arch.magic_page_ea = param2;
182
Scott Woodb5904972011-11-08 18:23:30 -0600183 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200184
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000185 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200186 break;
187 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000188 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
189 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000190#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Scott Wooda4cd8b22011-06-14 18:34:41 -0500191 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +0200192 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
193#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200194
195 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200196 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000197 case EV_HCALL_TOKEN(EV_IDLE):
198 r = EV_SUCCESS;
199 kvm_vcpu_block(vcpu);
200 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
201 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200202 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000203 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200204 break;
205 }
206
Alexander Graf7508e162010-08-03 11:32:56 +0200207 kvmppc_set_gpr(vcpu, 4, r2);
208
Alexander Graf2a342ed2010-07-29 14:47:48 +0200209 return r;
210}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530211EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500212
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200213int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
214{
215 int r = false;
216
217 /* We have to know what CPU to virtualize */
218 if (!vcpu->arch.pvr)
219 goto out;
220
221 /* PAPR only works with book3s_64 */
222 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
223 goto out;
224
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200225 /* HV KVM can only do PAPR mode for now */
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530226 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200227 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200228
Scott Woodd30f6e42011-12-20 15:34:43 +0000229#ifdef CONFIG_KVM_BOOKE_HV
230 if (!cpu_has_feature(CPU_FTR_EMB_HV))
231 goto out;
232#endif
233
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200234 r = true;
235
236out:
237 vcpu->arch.sane = r;
238 return r ? 0 : -EINVAL;
239}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530240EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200241
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500242int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
243{
244 enum emulation_result er;
245 int r;
246
247 er = kvmppc_emulate_instruction(run, vcpu);
248 switch (er) {
249 case EMULATE_DONE:
250 /* Future optimization: only reload non-volatiles if they were
251 * actually modified. */
252 r = RESUME_GUEST_NV;
253 break;
254 case EMULATE_DO_MMIO:
255 run->exit_reason = KVM_EXIT_MMIO;
256 /* We must reload nonvolatiles because "update" load/store
257 * instructions modify register state. */
258 /* Future optimization: only reload non-volatiles if they were
259 * actually modified. */
260 r = RESUME_HOST_NV;
261 break;
262 case EMULATE_FAIL:
263 /* XXX Deliver Program interrupt to guest. */
264 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200265 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500266 r = RESUME_HOST;
267 break;
268 default:
Alexander Graf5a331692012-12-14 23:46:03 +0100269 WARN_ON(1);
270 r = RESUME_GUEST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500271 }
272
273 return r;
274}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530275EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500276
Alexander Graf10474ae2009-09-15 11:37:46 +0200277int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500278{
Alexander Graf10474ae2009-09-15 11:37:46 +0200279 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500280}
281
282void kvm_arch_hardware_disable(void *garbage)
283{
284}
285
286int kvm_arch_hardware_setup(void)
287{
288 return 0;
289}
290
291void kvm_arch_hardware_unsetup(void)
292{
293}
294
295void kvm_arch_check_processor_compat(void *rtn)
296{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600297 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500298}
299
Carsten Ottee08b9632012-01-04 10:25:20 +0100300int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500301{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530302 struct kvmppc_ops *kvm_ops = NULL;
303 /*
304 * if we have both HV and PR enabled, default is HV
305 */
306 if (type == 0) {
307 if (kvmppc_hv_ops)
308 kvm_ops = kvmppc_hv_ops;
309 else
310 kvm_ops = kvmppc_pr_ops;
311 if (!kvm_ops)
312 goto err_out;
313 } else if (type == KVM_VM_PPC_HV) {
314 if (!kvmppc_hv_ops)
315 goto err_out;
316 kvm_ops = kvmppc_hv_ops;
317 } else if (type == KVM_VM_PPC_PR) {
318 if (!kvmppc_pr_ops)
319 goto err_out;
320 kvm_ops = kvmppc_pr_ops;
321 } else
322 goto err_out;
Carsten Ottee08b9632012-01-04 10:25:20 +0100323
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530324 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
325 return -ENOENT;
326
327 kvm->arch.kvm_ops = kvm_ops;
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000328 return kvmppc_core_init_vm(kvm);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530329err_out:
330 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500331}
332
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100333void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500334{
335 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300336 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500337
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300338 kvm_for_each_vcpu(i, vcpu, kvm)
339 kvm_arch_vcpu_free(vcpu);
340
341 mutex_lock(&kvm->lock);
342 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
343 kvm->vcpus[i] = NULL;
344
345 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000346
347 kvmppc_core_destroy_vm(kvm);
348
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300349 mutex_unlock(&kvm->lock);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530350
351 /* drop the module reference */
352 module_put(kvm->arch.kvm_ops->owner);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500353}
354
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800355void kvm_arch_sync_events(struct kvm *kvm)
356{
357}
358
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500359int kvm_dev_ioctl_check_extension(long ext)
360{
361 int r;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530362 /* FIXME!!
363 * Should some of this be vm ioctl ? is it possible now ?
364 */
365 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500366
367 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500368#ifdef CONFIG_BOOKE
369 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000370 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Alexander Graf1c810632013-01-04 18:12:48 +0100371 case KVM_CAP_PPC_EPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500372#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000373 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200374 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200375 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500376#endif
Alexander Graf18978762010-03-24 21:48:18 +0100377 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200378 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100379 case KVM_CAP_ENABLE_CAP:
Alexander Grafe24ed812011-09-14 10:02:41 +0200380 case KVM_CAP_ONE_REG:
Alexander Graf0e673fb2012-10-09 00:06:20 +0200381 case KVM_CAP_IOEVENTFD:
Scott Wood5df554a2013-04-12 14:08:46 +0000382 case KVM_CAP_DEVICE_CTRL:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000383 r = 1;
384 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000385 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100386 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200387 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000388#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500389 case KVM_CAP_SW_TLB:
390#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530391 /* We support this only for PR */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530392 r = !hv_enabled;
Alexander Grafe15a1132009-11-30 03:02:02 +0000393 break;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530394#ifdef CONFIG_KVM_MMIO
Laurent Vivier588968b2008-05-30 16:05:56 +0200395 case KVM_CAP_COALESCED_MMIO:
396 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
397 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000398#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530399#ifdef CONFIG_KVM_MPIC
400 case KVM_CAP_IRQ_MPIC:
401 r = 1;
402 break;
403#endif
404
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000405#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000406 case KVM_CAP_SPAPR_TCE:
Paul Mackerras32fad282012-05-04 02:32:53 +0000407 case KVM_CAP_PPC_ALLOC_HTAB:
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000408 case KVM_CAP_PPC_RTAS:
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000409#ifdef CONFIG_KVM_XICS
410 case KVM_CAP_IRQ_XICS:
411#endif
David Gibson54738c02011-06-29 00:22:41 +0000412 r = 1;
413 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000414#endif /* CONFIG_PPC_BOOK3S_64 */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530415#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras371fefd2011-06-29 00:23:08 +0000416 case KVM_CAP_PPC_SMT:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530417 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530418 r = threads_per_core;
419 else
420 r = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000421 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000422 case KVM_CAP_PPC_RMA:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530423 r = hv_enabled;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000424 /* PPC970 requires an RMA */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530425 if (r && cpu_has_feature(CPU_FTR_ARCH_201))
Paul Mackerras9e368f22011-06-29 00:40:08 +0000426 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000427 break;
David Gibson54738c02011-06-29 00:22:41 +0000428#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200429 case KVM_CAP_SYNC_MMU:
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530430#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530431 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530432 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
433 else
434 r = 0;
Alexander Graff4800b12012-08-07 10:24:14 +0200435#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
436 r = 1;
437#else
438 r = 0;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000439#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530440 break;
441#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasa2932922012-11-19 22:57:20 +0000442 case KVM_CAP_PPC_HTAB_FD:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530443 r = hv_enabled;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000444 break;
Alexander Graff4800b12012-08-07 10:24:14 +0200445#endif
Matt Evansb5434032011-12-07 16:55:57 +0000446 case KVM_CAP_NR_VCPUS:
447 /*
448 * Recommending a number of CPUs is somewhat arbitrary; we
449 * return the number of present CPUs for -HV (since a host
450 * will have secondary threads "offline"), and for other KVM
451 * implementations just count online CPUs.
452 */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530453 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530454 r = num_present_cpus();
455 else
456 r = num_online_cpus();
Matt Evansb5434032011-12-07 16:55:57 +0000457 break;
458 case KVM_CAP_MAX_VCPUS:
459 r = KVM_MAX_VCPUS;
460 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000461#ifdef CONFIG_PPC_BOOK3S_64
462 case KVM_CAP_PPC_GET_SMMU_INFO:
463 r = 1;
464 break;
465#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500466 default:
467 r = 0;
468 break;
469 }
470 return r;
471
472}
473
474long kvm_arch_dev_ioctl(struct file *filp,
475 unsigned int ioctl, unsigned long arg)
476{
477 return -EINVAL;
478}
479
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530480void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900481 struct kvm_memory_slot *dont)
482{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530483 kvmppc_core_free_memslot(kvm, free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900484}
485
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530486int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
487 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900488{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530489 return kvmppc_core_create_memslot(kvm, slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900490}
491
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900492void kvm_arch_memslots_updated(struct kvm *kvm)
493{
494}
495
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200496int kvm_arch_prepare_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900497 struct kvm_memory_slot *memslot,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900498 struct kvm_userspace_memory_region *mem,
499 enum kvm_mr_change change)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500500{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000501 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500502}
503
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200504void kvm_arch_commit_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900505 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900506 const struct kvm_memory_slot *old,
507 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200508{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000509 kvmppc_core_commit_memory_region(kvm, mem, old);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200510}
511
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300512void kvm_arch_flush_shadow_all(struct kvm *kvm)
513{
514}
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200515
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300516void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
517 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300518{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000519 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300520}
521
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500522struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
523{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600524 struct kvm_vcpu *vcpu;
525 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000526 if (!IS_ERR(vcpu)) {
527 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800528 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000529 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600530 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500531}
532
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200533int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
534{
535 return 0;
536}
537
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500538void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
539{
Alexander Grafa5954052010-02-22 16:52:14 +0100540 /* Make sure we're not using the vcpu anymore */
541 hrtimer_cancel(&vcpu->arch.dec_timer);
542 tasklet_kill(&vcpu->arch.tasklet);
543
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600544 kvmppc_remove_vcpu_debugfs(vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000545
546 switch (vcpu->arch.irq_type) {
547 case KVMPPC_IRQ_MPIC:
548 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
549 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000550 case KVMPPC_IRQ_XICS:
551 kvmppc_xics_free_icp(vcpu);
552 break;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000553 }
554
Hollis Blancharddb93f572008-11-05 09:36:18 -0600555 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500556}
557
558void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
559{
560 kvm_arch_vcpu_free(vcpu);
561}
562
563int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
564{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600565 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500566}
567
Alexander Graf544c6762009-11-02 12:02:31 +0000568/*
569 * low level hrtimer wake routine. Because this runs in hardirq context
570 * we schedule a tasklet to do the real work.
571 */
572enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
573{
574 struct kvm_vcpu *vcpu;
575
576 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
577 tasklet_schedule(&vcpu->arch.tasklet);
578
579 return HRTIMER_NORESTART;
580}
581
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500582int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
583{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000584 int ret;
585
Alexander Graf544c6762009-11-02 12:02:31 +0000586 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
587 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
588 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000589 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500590
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530591#ifdef CONFIG_KVM_EXIT_TIMING
592 mutex_init(&vcpu->arch.exit_timing_lock);
593#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000594 ret = kvmppc_subarch_vcpu_init(vcpu);
595 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500596}
597
598void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
599{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600600 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000601 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500602}
603
604void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
605{
Scott Woodeab17672011-04-27 17:24:10 -0500606#ifdef CONFIG_BOOKE
607 /*
608 * vrsave (formerly usprg0) isn't used by Linux, but may
609 * be used by the guest.
610 *
611 * On non-booke this is associated with Altivec and
612 * is handled by code in book3s.c.
613 */
614 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
615#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600616 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500617}
618
619void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
620{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600621 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500622#ifdef CONFIG_BOOKE
623 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
624#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500625}
626
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500627static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
628 struct kvm_run *run)
629{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100630 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500631}
632
633static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
634 struct kvm_run *run)
635{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000636 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500637
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100638 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500639 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
640 return;
641 }
642
643 if (vcpu->arch.mmio_is_bigendian) {
644 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100645 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100646 case 4: gpr = *(u32 *)run->mmio.data; break;
647 case 2: gpr = *(u16 *)run->mmio.data; break;
648 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500649 }
650 } else {
651 /* Convert BE data from userland back to LE. */
652 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100653 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
654 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
655 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500656 }
657 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100658
Alexander Graf3587d532010-02-19 11:00:30 +0100659 if (vcpu->arch.mmio_sign_extend) {
660 switch (run->mmio.len) {
661#ifdef CONFIG_PPC64
662 case 4:
663 gpr = (s64)(s32)gpr;
664 break;
665#endif
666 case 2:
667 gpr = (s64)(s16)gpr;
668 break;
669 case 1:
670 gpr = (s64)(s8)gpr;
671 break;
672 }
673 }
674
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100675 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100676
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100677 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
678 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +0100679 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
680 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100681 case KVM_MMIO_REG_FPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100682 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100683 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200684#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100685 case KVM_MMIO_REG_QPR:
686 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100687 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100688 case KVM_MMIO_REG_FQPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100689 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100690 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100691 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200692#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100693 default:
694 BUG();
695 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500696}
697
698int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100699 unsigned int rt, unsigned int bytes,
700 int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500701{
Scott Wooded840ee2013-04-26 14:53:39 +0000702 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100703 int is_bigendian;
704
705 if (kvmppc_need_byteswap(vcpu)) {
706 /* Default endianness is "little endian". */
707 is_bigendian = !is_default_endian;
708 } else {
709 /* Default endianness is "big endian". */
710 is_bigendian = is_default_endian;
711 }
Scott Wooded840ee2013-04-26 14:53:39 +0000712
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500713 if (bytes > sizeof(run->mmio.data)) {
714 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
715 run->mmio.len);
716 }
717
718 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
719 run->mmio.len = bytes;
720 run->mmio.is_write = 0;
721
722 vcpu->arch.io_gpr = rt;
723 vcpu->arch.mmio_is_bigendian = is_bigendian;
724 vcpu->mmio_needed = 1;
725 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100726 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500727
Scott Wooded840ee2013-04-26 14:53:39 +0000728 idx = srcu_read_lock(&vcpu->kvm->srcu);
729
730 ret = kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
731 bytes, &run->mmio.data);
732
733 srcu_read_unlock(&vcpu->kvm->srcu, idx);
734
735 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200736 kvmppc_complete_mmio_load(vcpu, run);
737 vcpu->mmio_needed = 0;
738 return EMULATE_DONE;
739 }
740
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500741 return EMULATE_DO_MMIO;
742}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530743EXPORT_SYMBOL_GPL(kvmppc_handle_load);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500744
Alexander Graf3587d532010-02-19 11:00:30 +0100745/* Same as above, but sign extends */
746int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100747 unsigned int rt, unsigned int bytes,
748 int is_default_endian)
Alexander Graf3587d532010-02-19 11:00:30 +0100749{
750 int r;
751
Alexander Graf3587d532010-02-19 11:00:30 +0100752 vcpu->arch.mmio_sign_extend = 1;
Cédric Le Goater73601772014-01-09 11:51:16 +0100753 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian);
Alexander Graf3587d532010-02-19 11:00:30 +0100754
755 return r;
756}
757
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500758int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100759 u64 val, unsigned int bytes, int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500760{
761 void *data = run->mmio.data;
Scott Wooded840ee2013-04-26 14:53:39 +0000762 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100763 int is_bigendian;
764
765 if (kvmppc_need_byteswap(vcpu)) {
766 /* Default endianness is "little endian". */
767 is_bigendian = !is_default_endian;
768 } else {
769 /* Default endianness is "big endian". */
770 is_bigendian = is_default_endian;
771 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500772
773 if (bytes > sizeof(run->mmio.data)) {
774 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
775 run->mmio.len);
776 }
777
778 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
779 run->mmio.len = bytes;
780 run->mmio.is_write = 1;
781 vcpu->mmio_needed = 1;
782 vcpu->mmio_is_write = 1;
783
784 /* Store the value at the lowest bytes in 'data'. */
785 if (is_bigendian) {
786 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100787 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500788 case 4: *(u32 *)data = val; break;
789 case 2: *(u16 *)data = val; break;
790 case 1: *(u8 *)data = val; break;
791 }
792 } else {
793 /* Store LE value into 'data'. */
794 switch (bytes) {
795 case 4: st_le32(data, val); break;
796 case 2: st_le16(data, val); break;
797 case 1: *(u8 *)data = val; break;
798 }
799 }
800
Scott Wooded840ee2013-04-26 14:53:39 +0000801 idx = srcu_read_lock(&vcpu->kvm->srcu);
802
803 ret = kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
804 bytes, &run->mmio.data);
805
806 srcu_read_unlock(&vcpu->kvm->srcu, idx);
807
808 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200809 vcpu->mmio_needed = 0;
810 return EMULATE_DONE;
811 }
812
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500813 return EMULATE_DO_MMIO;
814}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530815EXPORT_SYMBOL_GPL(kvmppc_handle_store);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500816
817int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
818{
819 int r;
820 sigset_t sigsaved;
821
822 if (vcpu->sigset_active)
823 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
824
825 if (vcpu->mmio_needed) {
826 if (!vcpu->mmio_is_write)
827 kvmppc_complete_mmio_load(vcpu, run);
828 vcpu->mmio_needed = 0;
829 } else if (vcpu->arch.dcr_needed) {
830 if (!vcpu->arch.dcr_is_write)
831 kvmppc_complete_dcr_load(vcpu, run);
832 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100833 } else if (vcpu->arch.osi_needed) {
834 u64 *gprs = run->osi.gprs;
835 int i;
836
837 for (i = 0; i < 32; i++)
838 kvmppc_set_gpr(vcpu, i, gprs[i]);
839 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000840 } else if (vcpu->arch.hcall_needed) {
841 int i;
842
843 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
844 for (i = 0; i < 9; ++i)
845 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
846 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +0100847#ifdef CONFIG_BOOKE
848 } else if (vcpu->arch.epr_needed) {
849 kvmppc_set_epr(vcpu, run->epr.epr);
850 vcpu->arch.epr_needed = 0;
851#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500852 }
853
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000854 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500855
856 if (vcpu->sigset_active)
857 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
858
859 return r;
860}
861
862int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
863{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000864 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +0000865 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000866 return 0;
867 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500868
Paul Mackerras19ccb762011-07-23 17:42:46 +1000869 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500870
Scott Wooddfd4d472011-11-17 12:39:59 +0000871 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500872
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500873 return 0;
874}
875
Alexander Graf71fbfd52010-03-24 21:48:29 +0100876static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
877 struct kvm_enable_cap *cap)
878{
879 int r;
880
881 if (cap->flags)
882 return -EINVAL;
883
884 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100885 case KVM_CAP_PPC_OSI:
886 r = 0;
887 vcpu->arch.osi_enabled = true;
888 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200889 case KVM_CAP_PPC_PAPR:
890 r = 0;
891 vcpu->arch.papr_enabled = true;
892 break;
Alexander Graf1c810632013-01-04 18:12:48 +0100893 case KVM_CAP_PPC_EPR:
894 r = 0;
Scott Wood5df554a2013-04-12 14:08:46 +0000895 if (cap->args[0])
896 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
897 else
898 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +0100899 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000900#ifdef CONFIG_BOOKE
901 case KVM_CAP_PPC_BOOKE_WATCHDOG:
902 r = 0;
903 vcpu->arch.watchdog_enabled = true;
904 break;
905#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000906#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500907 case KVM_CAP_SW_TLB: {
908 struct kvm_config_tlb cfg;
909 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
910
911 r = -EFAULT;
912 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
913 break;
914
915 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
916 break;
917 }
918#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +0000919#ifdef CONFIG_KVM_MPIC
920 case KVM_CAP_IRQ_MPIC: {
Al Viro70abade2013-08-30 15:04:22 -0400921 struct fd f;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000922 struct kvm_device *dev;
923
924 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400925 f = fdget(cap->args[0]);
926 if (!f.file)
Scott Woodeb1e4f42013-04-12 14:08:47 +0000927 break;
928
929 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400930 dev = kvm_device_from_filp(f.file);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000931 if (dev)
932 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
933
Al Viro70abade2013-08-30 15:04:22 -0400934 fdput(f);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000935 break;
936 }
937#endif
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000938#ifdef CONFIG_KVM_XICS
939 case KVM_CAP_IRQ_XICS: {
Al Viro70abade2013-08-30 15:04:22 -0400940 struct fd f;
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000941 struct kvm_device *dev;
942
943 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400944 f = fdget(cap->args[0]);
945 if (!f.file)
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000946 break;
947
948 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400949 dev = kvm_device_from_filp(f.file);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000950 if (dev)
951 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
952
Al Viro70abade2013-08-30 15:04:22 -0400953 fdput(f);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000954 break;
955 }
956#endif /* CONFIG_KVM_XICS */
Alexander Graf71fbfd52010-03-24 21:48:29 +0100957 default:
958 r = -EINVAL;
959 break;
960 }
961
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200962 if (!r)
963 r = kvmppc_sanity_check(vcpu);
964
Alexander Graf71fbfd52010-03-24 21:48:29 +0100965 return r;
966}
967
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500968int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
969 struct kvm_mp_state *mp_state)
970{
971 return -EINVAL;
972}
973
974int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
975 struct kvm_mp_state *mp_state)
976{
977 return -EINVAL;
978}
979
980long kvm_arch_vcpu_ioctl(struct file *filp,
981 unsigned int ioctl, unsigned long arg)
982{
983 struct kvm_vcpu *vcpu = filp->private_data;
984 void __user *argp = (void __user *)arg;
985 long r;
986
Avi Kivity93736622010-05-13 12:35:17 +0300987 switch (ioctl) {
988 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500989 struct kvm_interrupt irq;
990 r = -EFAULT;
991 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300992 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500993 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300994 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500995 }
Avi Kivity19483d12010-05-13 12:30:43 +0300996
Alexander Graf71fbfd52010-03-24 21:48:29 +0100997 case KVM_ENABLE_CAP:
998 {
999 struct kvm_enable_cap cap;
1000 r = -EFAULT;
1001 if (copy_from_user(&cap, argp, sizeof(cap)))
1002 goto out;
1003 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1004 break;
1005 }
Scott Wooddc83b8b2011-08-18 15:25:21 -05001006
Alexander Grafe24ed812011-09-14 10:02:41 +02001007 case KVM_SET_ONE_REG:
1008 case KVM_GET_ONE_REG:
1009 {
1010 struct kvm_one_reg reg;
1011 r = -EFAULT;
1012 if (copy_from_user(&reg, argp, sizeof(reg)))
1013 goto out;
1014 if (ioctl == KVM_SET_ONE_REG)
1015 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
1016 else
1017 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
1018 break;
1019 }
1020
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001021#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001022 case KVM_DIRTY_TLB: {
1023 struct kvm_dirty_tlb dirty;
1024 r = -EFAULT;
1025 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1026 goto out;
1027 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1028 break;
1029 }
1030#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001031 default:
1032 r = -EINVAL;
1033 }
1034
1035out:
1036 return r;
1037}
1038
Carsten Otte5b1c1492012-01-04 10:25:23 +01001039int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1040{
1041 return VM_FAULT_SIGBUS;
1042}
1043
Alexander Graf15711e92010-07-29 14:48:08 +02001044static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1045{
Stuart Yoder784bafa2012-07-03 05:48:51 +00001046 u32 inst_nop = 0x60000000;
1047#ifdef CONFIG_KVM_BOOKE_HV
1048 u32 inst_sc1 = 0x44000022;
Alexander Graf27431032014-04-24 13:39:16 +02001049 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
1050 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
1051 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
1052 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001053#else
Alexander Graf15711e92010-07-29 14:48:08 +02001054 u32 inst_lis = 0x3c000000;
1055 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +02001056 u32 inst_sc = 0x44000002;
1057 u32 inst_imm_mask = 0xffff;
1058
1059 /*
1060 * The hypercall to get into KVM from within guest context is as
1061 * follows:
1062 *
1063 * lis r0, r0, KVM_SC_MAGIC_R0@h
1064 * ori r0, KVM_SC_MAGIC_R0@l
1065 * sc
1066 * nop
1067 */
Alexander Graf27431032014-04-24 13:39:16 +02001068 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
1069 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
1070 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
1071 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001072#endif
Alexander Graf15711e92010-07-29 14:48:08 +02001073
Liu Yu-B132019202e072012-07-03 05:48:52 +00001074 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1075
Alexander Graf15711e92010-07-29 14:48:08 +02001076 return 0;
1077}
1078
Alexander Graf5efdb4b2013-04-17 00:37:57 +02001079int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1080 bool line_status)
1081{
1082 if (!irqchip_in_kernel(kvm))
1083 return -ENXIO;
1084
1085 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1086 irq_event->irq, irq_event->level,
1087 line_status);
1088 return 0;
1089}
1090
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001091long kvm_arch_vm_ioctl(struct file *filp,
1092 unsigned int ioctl, unsigned long arg)
1093{
Scott Wood5df554a2013-04-12 14:08:46 +00001094 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +02001095 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001096 long r;
1097
1098 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +02001099 case KVM_PPC_GET_PVINFO: {
1100 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +04001101 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +02001102 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1103 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1104 r = -EFAULT;
1105 goto out;
1106 }
1107
1108 break;
1109 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001110#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +00001111 case KVM_CREATE_SPAPR_TCE: {
1112 struct kvm_create_spapr_tce create_tce;
David Gibson54738c02011-06-29 00:22:41 +00001113
1114 r = -EFAULT;
1115 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1116 goto out;
1117 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
1118 goto out;
1119 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001120 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001121 struct kvm_ppc_smmu_info info;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301122 struct kvm *kvm = filp->private_data;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001123
1124 memset(&info, 0, sizeof(info));
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301125 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001126 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1127 r = -EFAULT;
1128 break;
1129 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001130 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1131 struct kvm *kvm = filp->private_data;
1132
1133 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1134 break;
1135 }
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301136 default: {
1137 struct kvm *kvm = filp->private_data;
1138 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1139 }
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301140#else /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001141 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001142 r = -ENOTTY;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301143#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001144 }
Alexander Graf15711e92010-07-29 14:48:08 +02001145out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001146 return r;
1147}
1148
Scott Wood043cc4d2011-12-20 15:34:20 +00001149static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1150static unsigned long nr_lpids;
1151
1152long kvmppc_alloc_lpid(void)
1153{
1154 long lpid;
1155
1156 do {
1157 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1158 if (lpid >= nr_lpids) {
1159 pr_err("%s: No LPIDs free\n", __func__);
1160 return -ENOMEM;
1161 }
1162 } while (test_and_set_bit(lpid, lpid_inuse));
1163
1164 return lpid;
1165}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301166EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001167
1168void kvmppc_claim_lpid(long lpid)
1169{
1170 set_bit(lpid, lpid_inuse);
1171}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301172EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001173
1174void kvmppc_free_lpid(long lpid)
1175{
1176 clear_bit(lpid, lpid_inuse);
1177}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301178EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001179
1180void kvmppc_init_lpid(unsigned long nr_lpids_param)
1181{
1182 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1183 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1184}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301185EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001186
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001187int kvm_arch_init(void *opaque)
1188{
1189 return 0;
1190}
1191
1192void kvm_arch_exit(void)
1193{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301194
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001195}