blob: 3222a4d08a6fe126960b8e0e88702ce5eb45c1b7 [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 Graff3383cf2014-05-12 01:08:32 +0200180 if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) {
181 /*
182 * Older versions of the Linux magic page code had
183 * a bug where they would map their trampoline code
184 * NX. If that's the case, remove !PR NX capability.
185 */
186 vcpu->arch.disable_kernel_nx = true;
187 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
188 }
189
190 vcpu->arch.magic_page_pa = param1 & ~0xfffULL;
191 vcpu->arch.magic_page_ea = param2 & ~0xfffULL;
Alexander Graf5fc87402010-07-29 14:47:55 +0200192
Scott Woodb5904972011-11-08 18:23:30 -0600193 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200194
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000195 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200196 break;
197 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000198 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
199 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000200#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Scott Wooda4cd8b22011-06-14 18:34:41 -0500201 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +0200202 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
203#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200204
205 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200206 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000207 case EV_HCALL_TOKEN(EV_IDLE):
208 r = EV_SUCCESS;
209 kvm_vcpu_block(vcpu);
210 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
211 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200212 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000213 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200214 break;
215 }
216
Alexander Graf7508e162010-08-03 11:32:56 +0200217 kvmppc_set_gpr(vcpu, 4, r2);
218
Alexander Graf2a342ed2010-07-29 14:47:48 +0200219 return r;
220}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530221EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500222
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200223int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
224{
225 int r = false;
226
227 /* We have to know what CPU to virtualize */
228 if (!vcpu->arch.pvr)
229 goto out;
230
231 /* PAPR only works with book3s_64 */
232 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
233 goto out;
234
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200235 /* HV KVM can only do PAPR mode for now */
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530236 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200237 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200238
Scott Woodd30f6e42011-12-20 15:34:43 +0000239#ifdef CONFIG_KVM_BOOKE_HV
240 if (!cpu_has_feature(CPU_FTR_EMB_HV))
241 goto out;
242#endif
243
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200244 r = true;
245
246out:
247 vcpu->arch.sane = r;
248 return r ? 0 : -EINVAL;
249}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530250EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200251
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500252int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
253{
254 enum emulation_result er;
255 int r;
256
257 er = kvmppc_emulate_instruction(run, vcpu);
258 switch (er) {
259 case EMULATE_DONE:
260 /* Future optimization: only reload non-volatiles if they were
261 * actually modified. */
262 r = RESUME_GUEST_NV;
263 break;
264 case EMULATE_DO_MMIO:
265 run->exit_reason = KVM_EXIT_MMIO;
266 /* We must reload nonvolatiles because "update" load/store
267 * instructions modify register state. */
268 /* Future optimization: only reload non-volatiles if they were
269 * actually modified. */
270 r = RESUME_HOST_NV;
271 break;
272 case EMULATE_FAIL:
273 /* XXX Deliver Program interrupt to guest. */
274 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200275 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500276 r = RESUME_HOST;
277 break;
278 default:
Alexander Graf5a331692012-12-14 23:46:03 +0100279 WARN_ON(1);
280 r = RESUME_GUEST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500281 }
282
283 return r;
284}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530285EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500286
Alexander Graf10474ae2009-09-15 11:37:46 +0200287int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500288{
Alexander Graf10474ae2009-09-15 11:37:46 +0200289 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500290}
291
292void kvm_arch_hardware_disable(void *garbage)
293{
294}
295
296int kvm_arch_hardware_setup(void)
297{
298 return 0;
299}
300
301void kvm_arch_hardware_unsetup(void)
302{
303}
304
305void kvm_arch_check_processor_compat(void *rtn)
306{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600307 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500308}
309
Carsten Ottee08b9632012-01-04 10:25:20 +0100310int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500311{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530312 struct kvmppc_ops *kvm_ops = NULL;
313 /*
314 * if we have both HV and PR enabled, default is HV
315 */
316 if (type == 0) {
317 if (kvmppc_hv_ops)
318 kvm_ops = kvmppc_hv_ops;
319 else
320 kvm_ops = kvmppc_pr_ops;
321 if (!kvm_ops)
322 goto err_out;
323 } else if (type == KVM_VM_PPC_HV) {
324 if (!kvmppc_hv_ops)
325 goto err_out;
326 kvm_ops = kvmppc_hv_ops;
327 } else if (type == KVM_VM_PPC_PR) {
328 if (!kvmppc_pr_ops)
329 goto err_out;
330 kvm_ops = kvmppc_pr_ops;
331 } else
332 goto err_out;
Carsten Ottee08b9632012-01-04 10:25:20 +0100333
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530334 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
335 return -ENOENT;
336
337 kvm->arch.kvm_ops = kvm_ops;
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000338 return kvmppc_core_init_vm(kvm);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530339err_out:
340 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500341}
342
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100343void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500344{
345 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300346 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500347
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300348 kvm_for_each_vcpu(i, vcpu, kvm)
349 kvm_arch_vcpu_free(vcpu);
350
351 mutex_lock(&kvm->lock);
352 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
353 kvm->vcpus[i] = NULL;
354
355 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000356
357 kvmppc_core_destroy_vm(kvm);
358
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300359 mutex_unlock(&kvm->lock);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530360
361 /* drop the module reference */
362 module_put(kvm->arch.kvm_ops->owner);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500363}
364
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800365void kvm_arch_sync_events(struct kvm *kvm)
366{
367}
368
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500369int kvm_dev_ioctl_check_extension(long ext)
370{
371 int r;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530372 /* FIXME!!
373 * Should some of this be vm ioctl ? is it possible now ?
374 */
375 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500376
377 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500378#ifdef CONFIG_BOOKE
379 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000380 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Alexander Graf1c810632013-01-04 18:12:48 +0100381 case KVM_CAP_PPC_EPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500382#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000383 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200384 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200385 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500386#endif
Alexander Graf18978762010-03-24 21:48:18 +0100387 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200388 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100389 case KVM_CAP_ENABLE_CAP:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000390 case KVM_CAP_ENABLE_CAP_VM:
Alexander Grafe24ed812011-09-14 10:02:41 +0200391 case KVM_CAP_ONE_REG:
Alexander Graf0e673fb2012-10-09 00:06:20 +0200392 case KVM_CAP_IOEVENTFD:
Scott Wood5df554a2013-04-12 14:08:46 +0000393 case KVM_CAP_DEVICE_CTRL:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000394 r = 1;
395 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000396 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100397 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200398 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000399#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500400 case KVM_CAP_SW_TLB:
401#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530402 /* We support this only for PR */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530403 r = !hv_enabled;
Alexander Grafe15a1132009-11-30 03:02:02 +0000404 break;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530405#ifdef CONFIG_KVM_MMIO
Laurent Vivier588968b2008-05-30 16:05:56 +0200406 case KVM_CAP_COALESCED_MMIO:
407 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
408 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000409#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530410#ifdef CONFIG_KVM_MPIC
411 case KVM_CAP_IRQ_MPIC:
412 r = 1;
413 break;
414#endif
415
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000416#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000417 case KVM_CAP_SPAPR_TCE:
Paul Mackerras32fad282012-05-04 02:32:53 +0000418 case KVM_CAP_PPC_ALLOC_HTAB:
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000419 case KVM_CAP_PPC_RTAS:
Alexander Graff2e91042014-05-22 17:40:15 +0200420 case KVM_CAP_PPC_FIXUP_HCALL:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000421 case KVM_CAP_PPC_ENABLE_HCALL:
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000422#ifdef CONFIG_KVM_XICS
423 case KVM_CAP_IRQ_XICS:
424#endif
David Gibson54738c02011-06-29 00:22:41 +0000425 r = 1;
426 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000427#endif /* CONFIG_PPC_BOOK3S_64 */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530428#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras371fefd2011-06-29 00:23:08 +0000429 case KVM_CAP_PPC_SMT:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530430 if (hv_enabled)
Michael Ellerman3102f782014-05-23 18:15:29 +1000431 r = threads_per_subcore;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530432 else
433 r = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000434 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000435 case KVM_CAP_PPC_RMA:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530436 r = hv_enabled;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000437 /* PPC970 requires an RMA */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530438 if (r && cpu_has_feature(CPU_FTR_ARCH_201))
Paul Mackerras9e368f22011-06-29 00:40:08 +0000439 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000440 break;
David Gibson54738c02011-06-29 00:22:41 +0000441#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200442 case KVM_CAP_SYNC_MMU:
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530443#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530444 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530445 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
446 else
447 r = 0;
Alexander Graff4800b12012-08-07 10:24:14 +0200448#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
449 r = 1;
450#else
451 r = 0;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000452#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530453 break;
454#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasa2932922012-11-19 22:57:20 +0000455 case KVM_CAP_PPC_HTAB_FD:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530456 r = hv_enabled;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000457 break;
Alexander Graff4800b12012-08-07 10:24:14 +0200458#endif
Matt Evansb5434032011-12-07 16:55:57 +0000459 case KVM_CAP_NR_VCPUS:
460 /*
461 * Recommending a number of CPUs is somewhat arbitrary; we
462 * return the number of present CPUs for -HV (since a host
463 * will have secondary threads "offline"), and for other KVM
464 * implementations just count online CPUs.
465 */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530466 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530467 r = num_present_cpus();
468 else
469 r = num_online_cpus();
Matt Evansb5434032011-12-07 16:55:57 +0000470 break;
471 case KVM_CAP_MAX_VCPUS:
472 r = KVM_MAX_VCPUS;
473 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000474#ifdef CONFIG_PPC_BOOK3S_64
475 case KVM_CAP_PPC_GET_SMMU_INFO:
476 r = 1;
477 break;
478#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500479 default:
480 r = 0;
481 break;
482 }
483 return r;
484
485}
486
487long kvm_arch_dev_ioctl(struct file *filp,
488 unsigned int ioctl, unsigned long arg)
489{
490 return -EINVAL;
491}
492
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530493void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900494 struct kvm_memory_slot *dont)
495{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530496 kvmppc_core_free_memslot(kvm, free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900497}
498
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530499int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
500 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900501{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530502 return kvmppc_core_create_memslot(kvm, slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900503}
504
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900505void kvm_arch_memslots_updated(struct kvm *kvm)
506{
507}
508
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200509int kvm_arch_prepare_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900510 struct kvm_memory_slot *memslot,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900511 struct kvm_userspace_memory_region *mem,
512 enum kvm_mr_change change)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500513{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000514 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500515}
516
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200517void kvm_arch_commit_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900518 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900519 const struct kvm_memory_slot *old,
520 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200521{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000522 kvmppc_core_commit_memory_region(kvm, mem, old);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200523}
524
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300525void kvm_arch_flush_shadow_all(struct kvm *kvm)
526{
527}
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200528
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300529void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
530 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300531{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000532 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300533}
534
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500535struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
536{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600537 struct kvm_vcpu *vcpu;
538 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000539 if (!IS_ERR(vcpu)) {
540 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800541 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000542 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600543 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500544}
545
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200546int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
547{
548 return 0;
549}
550
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500551void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
552{
Alexander Grafa5954052010-02-22 16:52:14 +0100553 /* Make sure we're not using the vcpu anymore */
554 hrtimer_cancel(&vcpu->arch.dec_timer);
555 tasklet_kill(&vcpu->arch.tasklet);
556
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600557 kvmppc_remove_vcpu_debugfs(vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000558
559 switch (vcpu->arch.irq_type) {
560 case KVMPPC_IRQ_MPIC:
561 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
562 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000563 case KVMPPC_IRQ_XICS:
564 kvmppc_xics_free_icp(vcpu);
565 break;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000566 }
567
Hollis Blancharddb93f572008-11-05 09:36:18 -0600568 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500569}
570
571void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
572{
573 kvm_arch_vcpu_free(vcpu);
574}
575
576int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
577{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600578 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500579}
580
Alexander Graf544c6762009-11-02 12:02:31 +0000581/*
582 * low level hrtimer wake routine. Because this runs in hardirq context
583 * we schedule a tasklet to do the real work.
584 */
585enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
586{
587 struct kvm_vcpu *vcpu;
588
589 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
590 tasklet_schedule(&vcpu->arch.tasklet);
591
592 return HRTIMER_NORESTART;
593}
594
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500595int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
596{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000597 int ret;
598
Alexander Graf544c6762009-11-02 12:02:31 +0000599 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
600 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
601 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000602 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500603
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530604#ifdef CONFIG_KVM_EXIT_TIMING
605 mutex_init(&vcpu->arch.exit_timing_lock);
606#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000607 ret = kvmppc_subarch_vcpu_init(vcpu);
608 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500609}
610
611void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
612{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600613 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000614 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500615}
616
617void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
618{
Scott Woodeab17672011-04-27 17:24:10 -0500619#ifdef CONFIG_BOOKE
620 /*
621 * vrsave (formerly usprg0) isn't used by Linux, but may
622 * be used by the guest.
623 *
624 * On non-booke this is associated with Altivec and
625 * is handled by code in book3s.c.
626 */
627 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
628#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600629 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500630}
631
632void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
633{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600634 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500635#ifdef CONFIG_BOOKE
636 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
637#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500638}
639
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500640static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
641 struct kvm_run *run)
642{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100643 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500644}
645
646static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
647 struct kvm_run *run)
648{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000649 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500650
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100651 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500652 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
653 return;
654 }
655
656 if (vcpu->arch.mmio_is_bigendian) {
657 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100658 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100659 case 4: gpr = *(u32 *)run->mmio.data; break;
660 case 2: gpr = *(u16 *)run->mmio.data; break;
661 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500662 }
663 } else {
664 /* Convert BE data from userland back to LE. */
665 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100666 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
667 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
668 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500669 }
670 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100671
Alexander Graf3587d532010-02-19 11:00:30 +0100672 if (vcpu->arch.mmio_sign_extend) {
673 switch (run->mmio.len) {
674#ifdef CONFIG_PPC64
675 case 4:
676 gpr = (s64)(s32)gpr;
677 break;
678#endif
679 case 2:
680 gpr = (s64)(s16)gpr;
681 break;
682 case 1:
683 gpr = (s64)(s8)gpr;
684 break;
685 }
686 }
687
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100688 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100689
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100690 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
691 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +0100692 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
693 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100694 case KVM_MMIO_REG_FPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100695 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100696 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200697#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100698 case KVM_MMIO_REG_QPR:
699 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100700 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100701 case KVM_MMIO_REG_FQPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100702 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100703 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100704 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200705#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100706 default:
707 BUG();
708 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500709}
710
711int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100712 unsigned int rt, unsigned int bytes,
713 int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500714{
Scott Wooded840ee2013-04-26 14:53:39 +0000715 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100716 int is_bigendian;
717
718 if (kvmppc_need_byteswap(vcpu)) {
719 /* Default endianness is "little endian". */
720 is_bigendian = !is_default_endian;
721 } else {
722 /* Default endianness is "big endian". */
723 is_bigendian = is_default_endian;
724 }
Scott Wooded840ee2013-04-26 14:53:39 +0000725
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500726 if (bytes > sizeof(run->mmio.data)) {
727 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
728 run->mmio.len);
729 }
730
731 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
732 run->mmio.len = bytes;
733 run->mmio.is_write = 0;
734
735 vcpu->arch.io_gpr = rt;
736 vcpu->arch.mmio_is_bigendian = is_bigendian;
737 vcpu->mmio_needed = 1;
738 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100739 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500740
Scott Wooded840ee2013-04-26 14:53:39 +0000741 idx = srcu_read_lock(&vcpu->kvm->srcu);
742
743 ret = kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
744 bytes, &run->mmio.data);
745
746 srcu_read_unlock(&vcpu->kvm->srcu, idx);
747
748 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200749 kvmppc_complete_mmio_load(vcpu, run);
750 vcpu->mmio_needed = 0;
751 return EMULATE_DONE;
752 }
753
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500754 return EMULATE_DO_MMIO;
755}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530756EXPORT_SYMBOL_GPL(kvmppc_handle_load);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500757
Alexander Graf3587d532010-02-19 11:00:30 +0100758/* Same as above, but sign extends */
759int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100760 unsigned int rt, unsigned int bytes,
761 int is_default_endian)
Alexander Graf3587d532010-02-19 11:00:30 +0100762{
763 int r;
764
Alexander Graf3587d532010-02-19 11:00:30 +0100765 vcpu->arch.mmio_sign_extend = 1;
Cédric Le Goater73601772014-01-09 11:51:16 +0100766 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian);
Alexander Graf3587d532010-02-19 11:00:30 +0100767
768 return r;
769}
770
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500771int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100772 u64 val, unsigned int bytes, int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500773{
774 void *data = run->mmio.data;
Scott Wooded840ee2013-04-26 14:53:39 +0000775 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100776 int is_bigendian;
777
778 if (kvmppc_need_byteswap(vcpu)) {
779 /* Default endianness is "little endian". */
780 is_bigendian = !is_default_endian;
781 } else {
782 /* Default endianness is "big endian". */
783 is_bigendian = is_default_endian;
784 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500785
786 if (bytes > sizeof(run->mmio.data)) {
787 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
788 run->mmio.len);
789 }
790
791 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
792 run->mmio.len = bytes;
793 run->mmio.is_write = 1;
794 vcpu->mmio_needed = 1;
795 vcpu->mmio_is_write = 1;
796
797 /* Store the value at the lowest bytes in 'data'. */
798 if (is_bigendian) {
799 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100800 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500801 case 4: *(u32 *)data = val; break;
802 case 2: *(u16 *)data = val; break;
803 case 1: *(u8 *)data = val; break;
804 }
805 } else {
806 /* Store LE value into 'data'. */
807 switch (bytes) {
808 case 4: st_le32(data, val); break;
809 case 2: st_le16(data, val); break;
810 case 1: *(u8 *)data = val; break;
811 }
812 }
813
Scott Wooded840ee2013-04-26 14:53:39 +0000814 idx = srcu_read_lock(&vcpu->kvm->srcu);
815
816 ret = kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
817 bytes, &run->mmio.data);
818
819 srcu_read_unlock(&vcpu->kvm->srcu, idx);
820
821 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200822 vcpu->mmio_needed = 0;
823 return EMULATE_DONE;
824 }
825
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500826 return EMULATE_DO_MMIO;
827}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530828EXPORT_SYMBOL_GPL(kvmppc_handle_store);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500829
830int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
831{
832 int r;
833 sigset_t sigsaved;
834
835 if (vcpu->sigset_active)
836 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
837
838 if (vcpu->mmio_needed) {
839 if (!vcpu->mmio_is_write)
840 kvmppc_complete_mmio_load(vcpu, run);
841 vcpu->mmio_needed = 0;
842 } else if (vcpu->arch.dcr_needed) {
843 if (!vcpu->arch.dcr_is_write)
844 kvmppc_complete_dcr_load(vcpu, run);
845 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100846 } else if (vcpu->arch.osi_needed) {
847 u64 *gprs = run->osi.gprs;
848 int i;
849
850 for (i = 0; i < 32; i++)
851 kvmppc_set_gpr(vcpu, i, gprs[i]);
852 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000853 } else if (vcpu->arch.hcall_needed) {
854 int i;
855
856 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
857 for (i = 0; i < 9; ++i)
858 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
859 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +0100860#ifdef CONFIG_BOOKE
861 } else if (vcpu->arch.epr_needed) {
862 kvmppc_set_epr(vcpu, run->epr.epr);
863 vcpu->arch.epr_needed = 0;
864#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500865 }
866
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000867 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500868
869 if (vcpu->sigset_active)
870 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
871
872 return r;
873}
874
875int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
876{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000877 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +0000878 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000879 return 0;
880 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500881
Paul Mackerras19ccb762011-07-23 17:42:46 +1000882 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500883
Scott Wooddfd4d472011-11-17 12:39:59 +0000884 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500885
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500886 return 0;
887}
888
Alexander Graf71fbfd52010-03-24 21:48:29 +0100889static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
890 struct kvm_enable_cap *cap)
891{
892 int r;
893
894 if (cap->flags)
895 return -EINVAL;
896
897 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100898 case KVM_CAP_PPC_OSI:
899 r = 0;
900 vcpu->arch.osi_enabled = true;
901 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200902 case KVM_CAP_PPC_PAPR:
903 r = 0;
904 vcpu->arch.papr_enabled = true;
905 break;
Alexander Graf1c810632013-01-04 18:12:48 +0100906 case KVM_CAP_PPC_EPR:
907 r = 0;
Scott Wood5df554a2013-04-12 14:08:46 +0000908 if (cap->args[0])
909 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
910 else
911 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +0100912 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000913#ifdef CONFIG_BOOKE
914 case KVM_CAP_PPC_BOOKE_WATCHDOG:
915 r = 0;
916 vcpu->arch.watchdog_enabled = true;
917 break;
918#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000919#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500920 case KVM_CAP_SW_TLB: {
921 struct kvm_config_tlb cfg;
922 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
923
924 r = -EFAULT;
925 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
926 break;
927
928 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
929 break;
930 }
931#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +0000932#ifdef CONFIG_KVM_MPIC
933 case KVM_CAP_IRQ_MPIC: {
Al Viro70abade2013-08-30 15:04:22 -0400934 struct fd f;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000935 struct kvm_device *dev;
936
937 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400938 f = fdget(cap->args[0]);
939 if (!f.file)
Scott Woodeb1e4f42013-04-12 14:08:47 +0000940 break;
941
942 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400943 dev = kvm_device_from_filp(f.file);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000944 if (dev)
945 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
946
Al Viro70abade2013-08-30 15:04:22 -0400947 fdput(f);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000948 break;
949 }
950#endif
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000951#ifdef CONFIG_KVM_XICS
952 case KVM_CAP_IRQ_XICS: {
Al Viro70abade2013-08-30 15:04:22 -0400953 struct fd f;
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000954 struct kvm_device *dev;
955
956 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400957 f = fdget(cap->args[0]);
958 if (!f.file)
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000959 break;
960
961 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400962 dev = kvm_device_from_filp(f.file);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000963 if (dev)
964 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
965
Al Viro70abade2013-08-30 15:04:22 -0400966 fdput(f);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000967 break;
968 }
969#endif /* CONFIG_KVM_XICS */
Alexander Graf71fbfd52010-03-24 21:48:29 +0100970 default:
971 r = -EINVAL;
972 break;
973 }
974
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200975 if (!r)
976 r = kvmppc_sanity_check(vcpu);
977
Alexander Graf71fbfd52010-03-24 21:48:29 +0100978 return r;
979}
980
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500981int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
982 struct kvm_mp_state *mp_state)
983{
984 return -EINVAL;
985}
986
987int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
988 struct kvm_mp_state *mp_state)
989{
990 return -EINVAL;
991}
992
993long kvm_arch_vcpu_ioctl(struct file *filp,
994 unsigned int ioctl, unsigned long arg)
995{
996 struct kvm_vcpu *vcpu = filp->private_data;
997 void __user *argp = (void __user *)arg;
998 long r;
999
Avi Kivity93736622010-05-13 12:35:17 +03001000 switch (ioctl) {
1001 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001002 struct kvm_interrupt irq;
1003 r = -EFAULT;
1004 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +03001005 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001006 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +03001007 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001008 }
Avi Kivity19483d12010-05-13 12:30:43 +03001009
Alexander Graf71fbfd52010-03-24 21:48:29 +01001010 case KVM_ENABLE_CAP:
1011 {
1012 struct kvm_enable_cap cap;
1013 r = -EFAULT;
1014 if (copy_from_user(&cap, argp, sizeof(cap)))
1015 goto out;
1016 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1017 break;
1018 }
Scott Wooddc83b8b2011-08-18 15:25:21 -05001019
Alexander Grafe24ed812011-09-14 10:02:41 +02001020 case KVM_SET_ONE_REG:
1021 case KVM_GET_ONE_REG:
1022 {
1023 struct kvm_one_reg reg;
1024 r = -EFAULT;
1025 if (copy_from_user(&reg, argp, sizeof(reg)))
1026 goto out;
1027 if (ioctl == KVM_SET_ONE_REG)
1028 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
1029 else
1030 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
1031 break;
1032 }
1033
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001034#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001035 case KVM_DIRTY_TLB: {
1036 struct kvm_dirty_tlb dirty;
1037 r = -EFAULT;
1038 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1039 goto out;
1040 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1041 break;
1042 }
1043#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001044 default:
1045 r = -EINVAL;
1046 }
1047
1048out:
1049 return r;
1050}
1051
Carsten Otte5b1c1492012-01-04 10:25:23 +01001052int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1053{
1054 return VM_FAULT_SIGBUS;
1055}
1056
Alexander Graf15711e92010-07-29 14:48:08 +02001057static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1058{
Stuart Yoder784bafa2012-07-03 05:48:51 +00001059 u32 inst_nop = 0x60000000;
1060#ifdef CONFIG_KVM_BOOKE_HV
1061 u32 inst_sc1 = 0x44000022;
Alexander Graf27431032014-04-24 13:39:16 +02001062 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
1063 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
1064 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
1065 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001066#else
Alexander Graf15711e92010-07-29 14:48:08 +02001067 u32 inst_lis = 0x3c000000;
1068 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +02001069 u32 inst_sc = 0x44000002;
1070 u32 inst_imm_mask = 0xffff;
1071
1072 /*
1073 * The hypercall to get into KVM from within guest context is as
1074 * follows:
1075 *
1076 * lis r0, r0, KVM_SC_MAGIC_R0@h
1077 * ori r0, KVM_SC_MAGIC_R0@l
1078 * sc
1079 * nop
1080 */
Alexander Graf27431032014-04-24 13:39:16 +02001081 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
1082 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
1083 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
1084 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001085#endif
Alexander Graf15711e92010-07-29 14:48:08 +02001086
Liu Yu-B132019202e072012-07-03 05:48:52 +00001087 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1088
Alexander Graf15711e92010-07-29 14:48:08 +02001089 return 0;
1090}
1091
Alexander Graf5efdb4b2013-04-17 00:37:57 +02001092int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1093 bool line_status)
1094{
1095 if (!irqchip_in_kernel(kvm))
1096 return -ENXIO;
1097
1098 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1099 irq_event->irq, irq_event->level,
1100 line_status);
1101 return 0;
1102}
1103
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001104
1105static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1106 struct kvm_enable_cap *cap)
1107{
1108 int r;
1109
1110 if (cap->flags)
1111 return -EINVAL;
1112
1113 switch (cap->cap) {
1114#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1115 case KVM_CAP_PPC_ENABLE_HCALL: {
1116 unsigned long hcall = cap->args[0];
1117
1118 r = -EINVAL;
1119 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
1120 cap->args[1] > 1)
1121 break;
1122 if (cap->args[1])
1123 set_bit(hcall / 4, kvm->arch.enabled_hcalls);
1124 else
1125 clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
1126 r = 0;
1127 break;
1128 }
1129#endif
1130 default:
1131 r = -EINVAL;
1132 break;
1133 }
1134
1135 return r;
1136}
1137
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001138long kvm_arch_vm_ioctl(struct file *filp,
1139 unsigned int ioctl, unsigned long arg)
1140{
Scott Wood5df554a2013-04-12 14:08:46 +00001141 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +02001142 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001143 long r;
1144
1145 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +02001146 case KVM_PPC_GET_PVINFO: {
1147 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +04001148 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +02001149 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1150 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1151 r = -EFAULT;
1152 goto out;
1153 }
1154
1155 break;
1156 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001157 case KVM_ENABLE_CAP:
1158 {
1159 struct kvm_enable_cap cap;
1160 r = -EFAULT;
1161 if (copy_from_user(&cap, argp, sizeof(cap)))
1162 goto out;
1163 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1164 break;
1165 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001166#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +00001167 case KVM_CREATE_SPAPR_TCE: {
1168 struct kvm_create_spapr_tce create_tce;
David Gibson54738c02011-06-29 00:22:41 +00001169
1170 r = -EFAULT;
1171 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1172 goto out;
1173 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
1174 goto out;
1175 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001176 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001177 struct kvm_ppc_smmu_info info;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301178 struct kvm *kvm = filp->private_data;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001179
1180 memset(&info, 0, sizeof(info));
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301181 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001182 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1183 r = -EFAULT;
1184 break;
1185 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001186 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1187 struct kvm *kvm = filp->private_data;
1188
1189 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1190 break;
1191 }
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301192 default: {
1193 struct kvm *kvm = filp->private_data;
1194 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1195 }
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301196#else /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001197 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001198 r = -ENOTTY;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301199#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001200 }
Alexander Graf15711e92010-07-29 14:48:08 +02001201out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001202 return r;
1203}
1204
Scott Wood043cc4d2011-12-20 15:34:20 +00001205static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1206static unsigned long nr_lpids;
1207
1208long kvmppc_alloc_lpid(void)
1209{
1210 long lpid;
1211
1212 do {
1213 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1214 if (lpid >= nr_lpids) {
1215 pr_err("%s: No LPIDs free\n", __func__);
1216 return -ENOMEM;
1217 }
1218 } while (test_and_set_bit(lpid, lpid_inuse));
1219
1220 return lpid;
1221}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301222EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001223
1224void kvmppc_claim_lpid(long lpid)
1225{
1226 set_bit(lpid, lpid_inuse);
1227}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301228EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001229
1230void kvmppc_free_lpid(long lpid)
1231{
1232 clear_bit(lpid, lpid_inuse);
1233}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301234EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001235
1236void kvmppc_init_lpid(unsigned long nr_lpids_param)
1237{
1238 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1239 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1240}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301241EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001242
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001243int kvm_arch_init(void *opaque)
1244{
1245 return 0;
1246}
1247
1248void kvm_arch_exit(void)
1249{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301250
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001251}