blob: 3cf541a53e2aef14a00e467e0c4daec16c255e7a [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 Graf2a342ed2010-07-29 14:47:48 +0200128int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
129{
130 int nr = kvmppc_get_gpr(vcpu, 11);
131 int r;
132 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
133 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
134 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
135 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
136 unsigned long r2 = 0;
137
138 if (!(vcpu->arch.shared->msr & MSR_SF)) {
139 /* 32 bit mode */
140 param1 &= 0xffffffff;
141 param2 &= 0xffffffff;
142 param3 &= 0xffffffff;
143 param4 &= 0xffffffff;
144 }
145
146 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000147 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200148 {
149 vcpu->arch.magic_page_pa = param1;
150 vcpu->arch.magic_page_ea = param2;
151
Scott Woodb5904972011-11-08 18:23:30 -0600152 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200153
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000154 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200155 break;
156 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000157 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
158 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000159#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Scott Wooda4cd8b22011-06-14 18:34:41 -0500160 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +0200161 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
162#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200163
164 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200165 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000166 case EV_HCALL_TOKEN(EV_IDLE):
167 r = EV_SUCCESS;
168 kvm_vcpu_block(vcpu);
169 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
170 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200171 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000172 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200173 break;
174 }
175
Alexander Graf7508e162010-08-03 11:32:56 +0200176 kvmppc_set_gpr(vcpu, 4, r2);
177
Alexander Graf2a342ed2010-07-29 14:47:48 +0200178 return r;
179}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530180EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500181
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200182int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
183{
184 int r = false;
185
186 /* We have to know what CPU to virtualize */
187 if (!vcpu->arch.pvr)
188 goto out;
189
190 /* PAPR only works with book3s_64 */
191 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
192 goto out;
193
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200194 /* HV KVM can only do PAPR mode for now */
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530195 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200196 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200197
Scott Woodd30f6e42011-12-20 15:34:43 +0000198#ifdef CONFIG_KVM_BOOKE_HV
199 if (!cpu_has_feature(CPU_FTR_EMB_HV))
200 goto out;
201#endif
202
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200203 r = true;
204
205out:
206 vcpu->arch.sane = r;
207 return r ? 0 : -EINVAL;
208}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530209EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200210
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500211int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
212{
213 enum emulation_result er;
214 int r;
215
216 er = kvmppc_emulate_instruction(run, vcpu);
217 switch (er) {
218 case EMULATE_DONE:
219 /* Future optimization: only reload non-volatiles if they were
220 * actually modified. */
221 r = RESUME_GUEST_NV;
222 break;
223 case EMULATE_DO_MMIO:
224 run->exit_reason = KVM_EXIT_MMIO;
225 /* We must reload nonvolatiles because "update" load/store
226 * instructions modify register state. */
227 /* Future optimization: only reload non-volatiles if they were
228 * actually modified. */
229 r = RESUME_HOST_NV;
230 break;
231 case EMULATE_FAIL:
232 /* XXX Deliver Program interrupt to guest. */
233 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200234 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500235 r = RESUME_HOST;
236 break;
237 default:
Alexander Graf5a331692012-12-14 23:46:03 +0100238 WARN_ON(1);
239 r = RESUME_GUEST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500240 }
241
242 return r;
243}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530244EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500245
Alexander Graf10474ae2009-09-15 11:37:46 +0200246int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500247{
Alexander Graf10474ae2009-09-15 11:37:46 +0200248 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500249}
250
251void kvm_arch_hardware_disable(void *garbage)
252{
253}
254
255int kvm_arch_hardware_setup(void)
256{
257 return 0;
258}
259
260void kvm_arch_hardware_unsetup(void)
261{
262}
263
264void kvm_arch_check_processor_compat(void *rtn)
265{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600266 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500267}
268
Carsten Ottee08b9632012-01-04 10:25:20 +0100269int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500270{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530271 struct kvmppc_ops *kvm_ops = NULL;
272 /*
273 * if we have both HV and PR enabled, default is HV
274 */
275 if (type == 0) {
276 if (kvmppc_hv_ops)
277 kvm_ops = kvmppc_hv_ops;
278 else
279 kvm_ops = kvmppc_pr_ops;
280 if (!kvm_ops)
281 goto err_out;
282 } else if (type == KVM_VM_PPC_HV) {
283 if (!kvmppc_hv_ops)
284 goto err_out;
285 kvm_ops = kvmppc_hv_ops;
286 } else if (type == KVM_VM_PPC_PR) {
287 if (!kvmppc_pr_ops)
288 goto err_out;
289 kvm_ops = kvmppc_pr_ops;
290 } else
291 goto err_out;
Carsten Ottee08b9632012-01-04 10:25:20 +0100292
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530293 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
294 return -ENOENT;
295
296 kvm->arch.kvm_ops = kvm_ops;
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000297 return kvmppc_core_init_vm(kvm);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530298err_out:
299 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500300}
301
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100302void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500303{
304 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300305 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500306
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300307 kvm_for_each_vcpu(i, vcpu, kvm)
308 kvm_arch_vcpu_free(vcpu);
309
310 mutex_lock(&kvm->lock);
311 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
312 kvm->vcpus[i] = NULL;
313
314 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000315
316 kvmppc_core_destroy_vm(kvm);
317
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300318 mutex_unlock(&kvm->lock);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530319
320 /* drop the module reference */
321 module_put(kvm->arch.kvm_ops->owner);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500322}
323
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800324void kvm_arch_sync_events(struct kvm *kvm)
325{
326}
327
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500328int kvm_dev_ioctl_check_extension(long ext)
329{
330 int r;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530331 /* FIXME!!
332 * Should some of this be vm ioctl ? is it possible now ?
333 */
334 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500335
336 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500337#ifdef CONFIG_BOOKE
338 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000339 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Alexander Graf1c810632013-01-04 18:12:48 +0100340 case KVM_CAP_PPC_EPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500341#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000342 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200343 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200344 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500345#endif
Alexander Graf18978762010-03-24 21:48:18 +0100346 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200347 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100348 case KVM_CAP_ENABLE_CAP:
Alexander Grafe24ed812011-09-14 10:02:41 +0200349 case KVM_CAP_ONE_REG:
Alexander Graf0e673fb2012-10-09 00:06:20 +0200350 case KVM_CAP_IOEVENTFD:
Scott Wood5df554a2013-04-12 14:08:46 +0000351 case KVM_CAP_DEVICE_CTRL:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000352 r = 1;
353 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000354 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100355 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200356 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000357#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500358 case KVM_CAP_SW_TLB:
359#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530360 /* We support this only for PR */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530361 r = !hv_enabled;
Alexander Grafe15a1132009-11-30 03:02:02 +0000362 break;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530363#ifdef CONFIG_KVM_MMIO
Laurent Vivier588968b2008-05-30 16:05:56 +0200364 case KVM_CAP_COALESCED_MMIO:
365 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
366 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000367#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530368#ifdef CONFIG_KVM_MPIC
369 case KVM_CAP_IRQ_MPIC:
370 r = 1;
371 break;
372#endif
373
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000374#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000375 case KVM_CAP_SPAPR_TCE:
Paul Mackerras32fad282012-05-04 02:32:53 +0000376 case KVM_CAP_PPC_ALLOC_HTAB:
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000377 case KVM_CAP_PPC_RTAS:
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000378#ifdef CONFIG_KVM_XICS
379 case KVM_CAP_IRQ_XICS:
380#endif
David Gibson54738c02011-06-29 00:22:41 +0000381 r = 1;
382 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000383#endif /* CONFIG_PPC_BOOK3S_64 */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530384#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras371fefd2011-06-29 00:23:08 +0000385 case KVM_CAP_PPC_SMT:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530386 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530387 r = threads_per_core;
388 else
389 r = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000390 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000391 case KVM_CAP_PPC_RMA:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530392 r = hv_enabled;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000393 /* PPC970 requires an RMA */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530394 if (r && cpu_has_feature(CPU_FTR_ARCH_201))
Paul Mackerras9e368f22011-06-29 00:40:08 +0000395 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000396 break;
David Gibson54738c02011-06-29 00:22:41 +0000397#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200398 case KVM_CAP_SYNC_MMU:
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530399#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530400 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530401 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
402 else
403 r = 0;
Alexander Graff4800b12012-08-07 10:24:14 +0200404#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
405 r = 1;
406#else
407 r = 0;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000408#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530409 break;
410#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasa2932922012-11-19 22:57:20 +0000411 case KVM_CAP_PPC_HTAB_FD:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530412 r = hv_enabled;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000413 break;
Alexander Graff4800b12012-08-07 10:24:14 +0200414#endif
Matt Evansb5434032011-12-07 16:55:57 +0000415 case KVM_CAP_NR_VCPUS:
416 /*
417 * Recommending a number of CPUs is somewhat arbitrary; we
418 * return the number of present CPUs for -HV (since a host
419 * will have secondary threads "offline"), and for other KVM
420 * implementations just count online CPUs.
421 */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530422 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530423 r = num_present_cpus();
424 else
425 r = num_online_cpus();
Matt Evansb5434032011-12-07 16:55:57 +0000426 break;
427 case KVM_CAP_MAX_VCPUS:
428 r = KVM_MAX_VCPUS;
429 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000430#ifdef CONFIG_PPC_BOOK3S_64
431 case KVM_CAP_PPC_GET_SMMU_INFO:
432 r = 1;
433 break;
434#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500435 default:
436 r = 0;
437 break;
438 }
439 return r;
440
441}
442
443long kvm_arch_dev_ioctl(struct file *filp,
444 unsigned int ioctl, unsigned long arg)
445{
446 return -EINVAL;
447}
448
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530449void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900450 struct kvm_memory_slot *dont)
451{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530452 kvmppc_core_free_memslot(kvm, free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900453}
454
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530455int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
456 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900457{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530458 return kvmppc_core_create_memslot(kvm, slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900459}
460
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900461void kvm_arch_memslots_updated(struct kvm *kvm)
462{
463}
464
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200465int kvm_arch_prepare_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900466 struct kvm_memory_slot *memslot,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900467 struct kvm_userspace_memory_region *mem,
468 enum kvm_mr_change change)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500469{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000470 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500471}
472
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200473void kvm_arch_commit_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900474 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900475 const struct kvm_memory_slot *old,
476 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200477{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000478 kvmppc_core_commit_memory_region(kvm, mem, old);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200479}
480
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300481void kvm_arch_flush_shadow_all(struct kvm *kvm)
482{
483}
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200484
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300485void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
486 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300487{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000488 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300489}
490
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500491struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
492{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600493 struct kvm_vcpu *vcpu;
494 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000495 if (!IS_ERR(vcpu)) {
496 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800497 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000498 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600499 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500500}
501
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200502int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
503{
504 return 0;
505}
506
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500507void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
508{
Alexander Grafa5954052010-02-22 16:52:14 +0100509 /* Make sure we're not using the vcpu anymore */
510 hrtimer_cancel(&vcpu->arch.dec_timer);
511 tasklet_kill(&vcpu->arch.tasklet);
512
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600513 kvmppc_remove_vcpu_debugfs(vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000514
515 switch (vcpu->arch.irq_type) {
516 case KVMPPC_IRQ_MPIC:
517 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
518 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000519 case KVMPPC_IRQ_XICS:
520 kvmppc_xics_free_icp(vcpu);
521 break;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000522 }
523
Hollis Blancharddb93f572008-11-05 09:36:18 -0600524 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500525}
526
527void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
528{
529 kvm_arch_vcpu_free(vcpu);
530}
531
532int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
533{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600534 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500535}
536
Alexander Graf544c6762009-11-02 12:02:31 +0000537/*
538 * low level hrtimer wake routine. Because this runs in hardirq context
539 * we schedule a tasklet to do the real work.
540 */
541enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
542{
543 struct kvm_vcpu *vcpu;
544
545 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
546 tasklet_schedule(&vcpu->arch.tasklet);
547
548 return HRTIMER_NORESTART;
549}
550
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500551int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
552{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000553 int ret;
554
Alexander Graf544c6762009-11-02 12:02:31 +0000555 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
556 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
557 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000558 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500559
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530560#ifdef CONFIG_KVM_EXIT_TIMING
561 mutex_init(&vcpu->arch.exit_timing_lock);
562#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000563 ret = kvmppc_subarch_vcpu_init(vcpu);
564 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500565}
566
567void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
568{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600569 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000570 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500571}
572
573void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
574{
Scott Woodeab17672011-04-27 17:24:10 -0500575#ifdef CONFIG_BOOKE
576 /*
577 * vrsave (formerly usprg0) isn't used by Linux, but may
578 * be used by the guest.
579 *
580 * On non-booke this is associated with Altivec and
581 * is handled by code in book3s.c.
582 */
583 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
584#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600585 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500586}
587
588void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
589{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600590 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500591#ifdef CONFIG_BOOKE
592 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
593#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500594}
595
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500596static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
597 struct kvm_run *run)
598{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100599 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500600}
601
602static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
603 struct kvm_run *run)
604{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000605 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500606
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100607 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500608 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
609 return;
610 }
611
612 if (vcpu->arch.mmio_is_bigendian) {
613 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100614 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100615 case 4: gpr = *(u32 *)run->mmio.data; break;
616 case 2: gpr = *(u16 *)run->mmio.data; break;
617 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500618 }
619 } else {
620 /* Convert BE data from userland back to LE. */
621 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100622 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
623 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
624 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500625 }
626 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100627
Alexander Graf3587d532010-02-19 11:00:30 +0100628 if (vcpu->arch.mmio_sign_extend) {
629 switch (run->mmio.len) {
630#ifdef CONFIG_PPC64
631 case 4:
632 gpr = (s64)(s32)gpr;
633 break;
634#endif
635 case 2:
636 gpr = (s64)(s16)gpr;
637 break;
638 case 1:
639 gpr = (s64)(s8)gpr;
640 break;
641 }
642 }
643
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100644 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100645
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100646 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
647 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +0100648 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
649 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100650 case KVM_MMIO_REG_FPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100651 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100652 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200653#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100654 case KVM_MMIO_REG_QPR:
655 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100656 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100657 case KVM_MMIO_REG_FQPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100658 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100659 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100660 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200661#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100662 default:
663 BUG();
664 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500665}
666
667int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100668 unsigned int rt, unsigned int bytes,
669 int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500670{
Scott Wooded840ee2013-04-26 14:53:39 +0000671 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100672 int is_bigendian;
673
674 if (kvmppc_need_byteswap(vcpu)) {
675 /* Default endianness is "little endian". */
676 is_bigendian = !is_default_endian;
677 } else {
678 /* Default endianness is "big endian". */
679 is_bigendian = is_default_endian;
680 }
Scott Wooded840ee2013-04-26 14:53:39 +0000681
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500682 if (bytes > sizeof(run->mmio.data)) {
683 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
684 run->mmio.len);
685 }
686
687 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
688 run->mmio.len = bytes;
689 run->mmio.is_write = 0;
690
691 vcpu->arch.io_gpr = rt;
692 vcpu->arch.mmio_is_bigendian = is_bigendian;
693 vcpu->mmio_needed = 1;
694 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100695 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500696
Scott Wooded840ee2013-04-26 14:53:39 +0000697 idx = srcu_read_lock(&vcpu->kvm->srcu);
698
699 ret = kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
700 bytes, &run->mmio.data);
701
702 srcu_read_unlock(&vcpu->kvm->srcu, idx);
703
704 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200705 kvmppc_complete_mmio_load(vcpu, run);
706 vcpu->mmio_needed = 0;
707 return EMULATE_DONE;
708 }
709
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500710 return EMULATE_DO_MMIO;
711}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530712EXPORT_SYMBOL_GPL(kvmppc_handle_load);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500713
Alexander Graf3587d532010-02-19 11:00:30 +0100714/* Same as above, but sign extends */
715int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100716 unsigned int rt, unsigned int bytes,
717 int is_default_endian)
Alexander Graf3587d532010-02-19 11:00:30 +0100718{
719 int r;
720
Alexander Graf3587d532010-02-19 11:00:30 +0100721 vcpu->arch.mmio_sign_extend = 1;
Cédric Le Goater73601772014-01-09 11:51:16 +0100722 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian);
Alexander Graf3587d532010-02-19 11:00:30 +0100723
724 return r;
725}
726
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500727int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100728 u64 val, unsigned int bytes, int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500729{
730 void *data = run->mmio.data;
Scott Wooded840ee2013-04-26 14:53:39 +0000731 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100732 int is_bigendian;
733
734 if (kvmppc_need_byteswap(vcpu)) {
735 /* Default endianness is "little endian". */
736 is_bigendian = !is_default_endian;
737 } else {
738 /* Default endianness is "big endian". */
739 is_bigendian = is_default_endian;
740 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500741
742 if (bytes > sizeof(run->mmio.data)) {
743 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
744 run->mmio.len);
745 }
746
747 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
748 run->mmio.len = bytes;
749 run->mmio.is_write = 1;
750 vcpu->mmio_needed = 1;
751 vcpu->mmio_is_write = 1;
752
753 /* Store the value at the lowest bytes in 'data'. */
754 if (is_bigendian) {
755 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100756 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500757 case 4: *(u32 *)data = val; break;
758 case 2: *(u16 *)data = val; break;
759 case 1: *(u8 *)data = val; break;
760 }
761 } else {
762 /* Store LE value into 'data'. */
763 switch (bytes) {
764 case 4: st_le32(data, val); break;
765 case 2: st_le16(data, val); break;
766 case 1: *(u8 *)data = val; break;
767 }
768 }
769
Scott Wooded840ee2013-04-26 14:53:39 +0000770 idx = srcu_read_lock(&vcpu->kvm->srcu);
771
772 ret = kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
773 bytes, &run->mmio.data);
774
775 srcu_read_unlock(&vcpu->kvm->srcu, idx);
776
777 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200778 vcpu->mmio_needed = 0;
779 return EMULATE_DONE;
780 }
781
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500782 return EMULATE_DO_MMIO;
783}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530784EXPORT_SYMBOL_GPL(kvmppc_handle_store);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500785
786int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
787{
788 int r;
789 sigset_t sigsaved;
790
791 if (vcpu->sigset_active)
792 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
793
794 if (vcpu->mmio_needed) {
795 if (!vcpu->mmio_is_write)
796 kvmppc_complete_mmio_load(vcpu, run);
797 vcpu->mmio_needed = 0;
798 } else if (vcpu->arch.dcr_needed) {
799 if (!vcpu->arch.dcr_is_write)
800 kvmppc_complete_dcr_load(vcpu, run);
801 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100802 } else if (vcpu->arch.osi_needed) {
803 u64 *gprs = run->osi.gprs;
804 int i;
805
806 for (i = 0; i < 32; i++)
807 kvmppc_set_gpr(vcpu, i, gprs[i]);
808 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000809 } else if (vcpu->arch.hcall_needed) {
810 int i;
811
812 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
813 for (i = 0; i < 9; ++i)
814 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
815 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +0100816#ifdef CONFIG_BOOKE
817 } else if (vcpu->arch.epr_needed) {
818 kvmppc_set_epr(vcpu, run->epr.epr);
819 vcpu->arch.epr_needed = 0;
820#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500821 }
822
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000823 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500824
825 if (vcpu->sigset_active)
826 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
827
828 return r;
829}
830
831int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
832{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000833 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +0000834 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000835 return 0;
836 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500837
Paul Mackerras19ccb762011-07-23 17:42:46 +1000838 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500839
Scott Wooddfd4d472011-11-17 12:39:59 +0000840 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500841
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500842 return 0;
843}
844
Alexander Graf71fbfd52010-03-24 21:48:29 +0100845static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
846 struct kvm_enable_cap *cap)
847{
848 int r;
849
850 if (cap->flags)
851 return -EINVAL;
852
853 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100854 case KVM_CAP_PPC_OSI:
855 r = 0;
856 vcpu->arch.osi_enabled = true;
857 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200858 case KVM_CAP_PPC_PAPR:
859 r = 0;
860 vcpu->arch.papr_enabled = true;
861 break;
Alexander Graf1c810632013-01-04 18:12:48 +0100862 case KVM_CAP_PPC_EPR:
863 r = 0;
Scott Wood5df554a2013-04-12 14:08:46 +0000864 if (cap->args[0])
865 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
866 else
867 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +0100868 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000869#ifdef CONFIG_BOOKE
870 case KVM_CAP_PPC_BOOKE_WATCHDOG:
871 r = 0;
872 vcpu->arch.watchdog_enabled = true;
873 break;
874#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000875#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500876 case KVM_CAP_SW_TLB: {
877 struct kvm_config_tlb cfg;
878 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
879
880 r = -EFAULT;
881 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
882 break;
883
884 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
885 break;
886 }
887#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +0000888#ifdef CONFIG_KVM_MPIC
889 case KVM_CAP_IRQ_MPIC: {
Al Viro70abade2013-08-30 15:04:22 -0400890 struct fd f;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000891 struct kvm_device *dev;
892
893 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400894 f = fdget(cap->args[0]);
895 if (!f.file)
Scott Woodeb1e4f42013-04-12 14:08:47 +0000896 break;
897
898 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400899 dev = kvm_device_from_filp(f.file);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000900 if (dev)
901 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
902
Al Viro70abade2013-08-30 15:04:22 -0400903 fdput(f);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000904 break;
905 }
906#endif
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000907#ifdef CONFIG_KVM_XICS
908 case KVM_CAP_IRQ_XICS: {
Al Viro70abade2013-08-30 15:04:22 -0400909 struct fd f;
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000910 struct kvm_device *dev;
911
912 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400913 f = fdget(cap->args[0]);
914 if (!f.file)
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000915 break;
916
917 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400918 dev = kvm_device_from_filp(f.file);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000919 if (dev)
920 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
921
Al Viro70abade2013-08-30 15:04:22 -0400922 fdput(f);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000923 break;
924 }
925#endif /* CONFIG_KVM_XICS */
Alexander Graf71fbfd52010-03-24 21:48:29 +0100926 default:
927 r = -EINVAL;
928 break;
929 }
930
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200931 if (!r)
932 r = kvmppc_sanity_check(vcpu);
933
Alexander Graf71fbfd52010-03-24 21:48:29 +0100934 return r;
935}
936
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500937int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
938 struct kvm_mp_state *mp_state)
939{
940 return -EINVAL;
941}
942
943int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
944 struct kvm_mp_state *mp_state)
945{
946 return -EINVAL;
947}
948
949long kvm_arch_vcpu_ioctl(struct file *filp,
950 unsigned int ioctl, unsigned long arg)
951{
952 struct kvm_vcpu *vcpu = filp->private_data;
953 void __user *argp = (void __user *)arg;
954 long r;
955
Avi Kivity93736622010-05-13 12:35:17 +0300956 switch (ioctl) {
957 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500958 struct kvm_interrupt irq;
959 r = -EFAULT;
960 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300961 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500962 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300963 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500964 }
Avi Kivity19483d12010-05-13 12:30:43 +0300965
Alexander Graf71fbfd52010-03-24 21:48:29 +0100966 case KVM_ENABLE_CAP:
967 {
968 struct kvm_enable_cap cap;
969 r = -EFAULT;
970 if (copy_from_user(&cap, argp, sizeof(cap)))
971 goto out;
972 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
973 break;
974 }
Scott Wooddc83b8b2011-08-18 15:25:21 -0500975
Alexander Grafe24ed812011-09-14 10:02:41 +0200976 case KVM_SET_ONE_REG:
977 case KVM_GET_ONE_REG:
978 {
979 struct kvm_one_reg reg;
980 r = -EFAULT;
981 if (copy_from_user(&reg, argp, sizeof(reg)))
982 goto out;
983 if (ioctl == KVM_SET_ONE_REG)
984 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
985 else
986 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
987 break;
988 }
989
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000990#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500991 case KVM_DIRTY_TLB: {
992 struct kvm_dirty_tlb dirty;
993 r = -EFAULT;
994 if (copy_from_user(&dirty, argp, sizeof(dirty)))
995 goto out;
996 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
997 break;
998 }
999#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001000 default:
1001 r = -EINVAL;
1002 }
1003
1004out:
1005 return r;
1006}
1007
Carsten Otte5b1c1492012-01-04 10:25:23 +01001008int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1009{
1010 return VM_FAULT_SIGBUS;
1011}
1012
Alexander Graf15711e92010-07-29 14:48:08 +02001013static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1014{
Stuart Yoder784bafa2012-07-03 05:48:51 +00001015 u32 inst_nop = 0x60000000;
1016#ifdef CONFIG_KVM_BOOKE_HV
1017 u32 inst_sc1 = 0x44000022;
1018 pvinfo->hcall[0] = inst_sc1;
1019 pvinfo->hcall[1] = inst_nop;
1020 pvinfo->hcall[2] = inst_nop;
1021 pvinfo->hcall[3] = inst_nop;
1022#else
Alexander Graf15711e92010-07-29 14:48:08 +02001023 u32 inst_lis = 0x3c000000;
1024 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +02001025 u32 inst_sc = 0x44000002;
1026 u32 inst_imm_mask = 0xffff;
1027
1028 /*
1029 * The hypercall to get into KVM from within guest context is as
1030 * follows:
1031 *
1032 * lis r0, r0, KVM_SC_MAGIC_R0@h
1033 * ori r0, KVM_SC_MAGIC_R0@l
1034 * sc
1035 * nop
1036 */
1037 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
1038 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
1039 pvinfo->hcall[2] = inst_sc;
1040 pvinfo->hcall[3] = inst_nop;
Stuart Yoder784bafa2012-07-03 05:48:51 +00001041#endif
Alexander Graf15711e92010-07-29 14:48:08 +02001042
Liu Yu-B132019202e072012-07-03 05:48:52 +00001043 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1044
Alexander Graf15711e92010-07-29 14:48:08 +02001045 return 0;
1046}
1047
Alexander Graf5efdb4b2013-04-17 00:37:57 +02001048int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1049 bool line_status)
1050{
1051 if (!irqchip_in_kernel(kvm))
1052 return -ENXIO;
1053
1054 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1055 irq_event->irq, irq_event->level,
1056 line_status);
1057 return 0;
1058}
1059
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001060long kvm_arch_vm_ioctl(struct file *filp,
1061 unsigned int ioctl, unsigned long arg)
1062{
Scott Wood5df554a2013-04-12 14:08:46 +00001063 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +02001064 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001065 long r;
1066
1067 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +02001068 case KVM_PPC_GET_PVINFO: {
1069 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +04001070 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +02001071 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1072 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1073 r = -EFAULT;
1074 goto out;
1075 }
1076
1077 break;
1078 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001079#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +00001080 case KVM_CREATE_SPAPR_TCE: {
1081 struct kvm_create_spapr_tce create_tce;
David Gibson54738c02011-06-29 00:22:41 +00001082
1083 r = -EFAULT;
1084 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1085 goto out;
1086 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
1087 goto out;
1088 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001089 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001090 struct kvm_ppc_smmu_info info;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301091 struct kvm *kvm = filp->private_data;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001092
1093 memset(&info, 0, sizeof(info));
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301094 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001095 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1096 r = -EFAULT;
1097 break;
1098 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001099 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1100 struct kvm *kvm = filp->private_data;
1101
1102 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1103 break;
1104 }
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301105 default: {
1106 struct kvm *kvm = filp->private_data;
1107 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1108 }
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301109#else /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001110 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001111 r = -ENOTTY;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301112#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001113 }
Alexander Graf15711e92010-07-29 14:48:08 +02001114out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001115 return r;
1116}
1117
Scott Wood043cc4d2011-12-20 15:34:20 +00001118static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1119static unsigned long nr_lpids;
1120
1121long kvmppc_alloc_lpid(void)
1122{
1123 long lpid;
1124
1125 do {
1126 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1127 if (lpid >= nr_lpids) {
1128 pr_err("%s: No LPIDs free\n", __func__);
1129 return -ENOMEM;
1130 }
1131 } while (test_and_set_bit(lpid, lpid_inuse));
1132
1133 return lpid;
1134}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301135EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001136
1137void kvmppc_claim_lpid(long lpid)
1138{
1139 set_bit(lpid, lpid_inuse);
1140}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301141EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001142
1143void kvmppc_free_lpid(long lpid)
1144{
1145 clear_bit(lpid, lpid_inuse);
1146}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301147EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001148
1149void kvmppc_init_lpid(unsigned long nr_lpids_param)
1150{
1151 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1152 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1153}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301154EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001155
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001156int kvm_arch_init(void *opaque)
1157{
1158 return 0;
1159}
1160
1161void kvm_arch_exit(void)
1162{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301163
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001164}