blob: 026dfaaa4772acefa276e8569228fc1a55c620e8 [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{
Alexander Graf7ee78852012-08-13 12:44:41 +020071 int r = 1;
Alexander Graf03d25c52012-08-10 12:28:50 +020072
73 WARN_ON_ONCE(!irqs_disabled());
74 while (true) {
75 if (need_resched()) {
76 local_irq_enable();
77 cond_resched();
78 local_irq_disable();
79 continue;
80 }
81
82 if (signal_pending(current)) {
Alexander Graf7ee78852012-08-13 12:44:41 +020083 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
84 vcpu->run->exit_reason = KVM_EXIT_INTR;
85 r = -EINTR;
Alexander Graf03d25c52012-08-10 12:28:50 +020086 break;
87 }
88
Scott Wood5bd1cf12012-08-22 15:03:50 +000089 vcpu->mode = IN_GUEST_MODE;
90
91 /*
92 * Reading vcpu->requests must happen after setting vcpu->mode,
93 * so we don't miss a request because the requester sees
94 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
95 * before next entering the guest (and thus doesn't IPI).
96 */
Alexander Graf03d25c52012-08-10 12:28:50 +020097 smp_mb();
Scott Wood5bd1cf12012-08-22 15:03:50 +000098
Alexander Graf03d25c52012-08-10 12:28:50 +020099 if (vcpu->requests) {
100 /* Make sure we process requests preemptable */
101 local_irq_enable();
102 trace_kvm_check_requests(vcpu);
Alexander Graf7c973a22012-08-13 12:50:35 +0200103 r = kvmppc_core_check_requests(vcpu);
Alexander Graf03d25c52012-08-10 12:28:50 +0200104 local_irq_disable();
Alexander Graf7c973a22012-08-13 12:50:35 +0200105 if (r > 0)
106 continue;
107 break;
Alexander Graf03d25c52012-08-10 12:28:50 +0200108 }
109
110 if (kvmppc_core_prepare_to_enter(vcpu)) {
111 /* interrupts got enabled in between, so we
112 are back at square 1 */
113 continue;
114 }
115
Alexander Grafbd2be682012-08-13 01:04:19 +0200116#ifdef CONFIG_PPC64
117 /* lazy EE magic */
118 hard_irq_disable();
119 if (lazy_irq_pending()) {
120 /* Got an interrupt in between, try again */
121 local_irq_enable();
122 local_irq_disable();
Alexander Graf3766a4c2012-08-13 01:24:01 +0200123 kvm_guest_exit();
Alexander Grafbd2be682012-08-13 01:04:19 +0200124 continue;
125 }
Alexander Grafbd2be682012-08-13 01:04:19 +0200126#endif
127
Alexander Graf3766a4c2012-08-13 01:24:01 +0200128 kvm_guest_enter();
Alexander Graf03d25c52012-08-10 12:28:50 +0200129 break;
130 }
131
132 return r;
133}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530134EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
Alexander Graf03d25c52012-08-10 12:28:50 +0200135
Alexander Graf2a342ed2010-07-29 14:47:48 +0200136int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
137{
138 int nr = kvmppc_get_gpr(vcpu, 11);
139 int r;
140 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
141 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
142 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
143 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
144 unsigned long r2 = 0;
145
146 if (!(vcpu->arch.shared->msr & MSR_SF)) {
147 /* 32 bit mode */
148 param1 &= 0xffffffff;
149 param2 &= 0xffffffff;
150 param3 &= 0xffffffff;
151 param4 &= 0xffffffff;
152 }
153
154 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000155 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200156 {
157 vcpu->arch.magic_page_pa = param1;
158 vcpu->arch.magic_page_ea = param2;
159
Scott Woodb5904972011-11-08 18:23:30 -0600160 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200161
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000162 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200163 break;
164 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000165 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
166 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000167#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Scott Wooda4cd8b22011-06-14 18:34:41 -0500168 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +0200169 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
170#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200171
172 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200173 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000174 case EV_HCALL_TOKEN(EV_IDLE):
175 r = EV_SUCCESS;
176 kvm_vcpu_block(vcpu);
177 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
178 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200179 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000180 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200181 break;
182 }
183
Alexander Graf7508e162010-08-03 11:32:56 +0200184 kvmppc_set_gpr(vcpu, 4, r2);
185
Alexander Graf2a342ed2010-07-29 14:47:48 +0200186 return r;
187}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530188EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500189
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200190int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
191{
192 int r = false;
193
194 /* We have to know what CPU to virtualize */
195 if (!vcpu->arch.pvr)
196 goto out;
197
198 /* PAPR only works with book3s_64 */
199 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
200 goto out;
201
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200202 /* HV KVM can only do PAPR mode for now */
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530203 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200204 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200205
Scott Woodd30f6e42011-12-20 15:34:43 +0000206#ifdef CONFIG_KVM_BOOKE_HV
207 if (!cpu_has_feature(CPU_FTR_EMB_HV))
208 goto out;
209#endif
210
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200211 r = true;
212
213out:
214 vcpu->arch.sane = r;
215 return r ? 0 : -EINVAL;
216}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530217EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200218
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500219int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
220{
221 enum emulation_result er;
222 int r;
223
224 er = kvmppc_emulate_instruction(run, vcpu);
225 switch (er) {
226 case EMULATE_DONE:
227 /* Future optimization: only reload non-volatiles if they were
228 * actually modified. */
229 r = RESUME_GUEST_NV;
230 break;
231 case EMULATE_DO_MMIO:
232 run->exit_reason = KVM_EXIT_MMIO;
233 /* We must reload nonvolatiles because "update" load/store
234 * instructions modify register state. */
235 /* Future optimization: only reload non-volatiles if they were
236 * actually modified. */
237 r = RESUME_HOST_NV;
238 break;
239 case EMULATE_FAIL:
240 /* XXX Deliver Program interrupt to guest. */
241 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200242 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500243 r = RESUME_HOST;
244 break;
245 default:
Alexander Graf5a331692012-12-14 23:46:03 +0100246 WARN_ON(1);
247 r = RESUME_GUEST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500248 }
249
250 return r;
251}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530252EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500253
Alexander Graf10474ae2009-09-15 11:37:46 +0200254int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500255{
Alexander Graf10474ae2009-09-15 11:37:46 +0200256 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500257}
258
259void kvm_arch_hardware_disable(void *garbage)
260{
261}
262
263int kvm_arch_hardware_setup(void)
264{
265 return 0;
266}
267
268void kvm_arch_hardware_unsetup(void)
269{
270}
271
272void kvm_arch_check_processor_compat(void *rtn)
273{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600274 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500275}
276
Carsten Ottee08b9632012-01-04 10:25:20 +0100277int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500278{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530279 struct kvmppc_ops *kvm_ops = NULL;
280 /*
281 * if we have both HV and PR enabled, default is HV
282 */
283 if (type == 0) {
284 if (kvmppc_hv_ops)
285 kvm_ops = kvmppc_hv_ops;
286 else
287 kvm_ops = kvmppc_pr_ops;
288 if (!kvm_ops)
289 goto err_out;
290 } else if (type == KVM_VM_PPC_HV) {
291 if (!kvmppc_hv_ops)
292 goto err_out;
293 kvm_ops = kvmppc_hv_ops;
294 } else if (type == KVM_VM_PPC_PR) {
295 if (!kvmppc_pr_ops)
296 goto err_out;
297 kvm_ops = kvmppc_pr_ops;
298 } else
299 goto err_out;
Carsten Ottee08b9632012-01-04 10:25:20 +0100300
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530301 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
302 return -ENOENT;
303
304 kvm->arch.kvm_ops = kvm_ops;
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000305 return kvmppc_core_init_vm(kvm);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530306err_out:
307 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500308}
309
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100310void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500311{
312 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300313 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500314
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300315 kvm_for_each_vcpu(i, vcpu, kvm)
316 kvm_arch_vcpu_free(vcpu);
317
318 mutex_lock(&kvm->lock);
319 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
320 kvm->vcpus[i] = NULL;
321
322 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000323
324 kvmppc_core_destroy_vm(kvm);
325
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300326 mutex_unlock(&kvm->lock);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530327
328 /* drop the module reference */
329 module_put(kvm->arch.kvm_ops->owner);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500330}
331
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800332void kvm_arch_sync_events(struct kvm *kvm)
333{
334}
335
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500336int kvm_dev_ioctl_check_extension(long ext)
337{
338 int r;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530339 /* FIXME!!
340 * Should some of this be vm ioctl ? is it possible now ?
341 */
342 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500343
344 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500345#ifdef CONFIG_BOOKE
346 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000347 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Alexander Graf1c810632013-01-04 18:12:48 +0100348 case KVM_CAP_PPC_EPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500349#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000350 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200351 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200352 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500353#endif
Alexander Graf18978762010-03-24 21:48:18 +0100354 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200355 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100356 case KVM_CAP_ENABLE_CAP:
Alexander Grafe24ed812011-09-14 10:02:41 +0200357 case KVM_CAP_ONE_REG:
Alexander Graf0e673fb2012-10-09 00:06:20 +0200358 case KVM_CAP_IOEVENTFD:
Scott Wood5df554a2013-04-12 14:08:46 +0000359 case KVM_CAP_DEVICE_CTRL:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000360 r = 1;
361 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000362 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100363 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200364 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000365#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500366 case KVM_CAP_SW_TLB:
367#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530368 /* We support this only for PR */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530369 r = !hv_enabled;
Alexander Grafe15a1132009-11-30 03:02:02 +0000370 break;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530371#ifdef CONFIG_KVM_MMIO
Laurent Vivier588968b2008-05-30 16:05:56 +0200372 case KVM_CAP_COALESCED_MMIO:
373 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
374 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000375#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530376#ifdef CONFIG_KVM_MPIC
377 case KVM_CAP_IRQ_MPIC:
378 r = 1;
379 break;
380#endif
381
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000382#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000383 case KVM_CAP_SPAPR_TCE:
Paul Mackerras32fad282012-05-04 02:32:53 +0000384 case KVM_CAP_PPC_ALLOC_HTAB:
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000385 case KVM_CAP_PPC_RTAS:
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000386#ifdef CONFIG_KVM_XICS
387 case KVM_CAP_IRQ_XICS:
388#endif
David Gibson54738c02011-06-29 00:22:41 +0000389 r = 1;
390 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000391#endif /* CONFIG_PPC_BOOK3S_64 */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530392#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras371fefd2011-06-29 00:23:08 +0000393 case KVM_CAP_PPC_SMT:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530394 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530395 r = threads_per_core;
396 else
397 r = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000398 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000399 case KVM_CAP_PPC_RMA:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530400 r = hv_enabled;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000401 /* PPC970 requires an RMA */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530402 if (r && cpu_has_feature(CPU_FTR_ARCH_201))
Paul Mackerras9e368f22011-06-29 00:40:08 +0000403 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000404 break;
David Gibson54738c02011-06-29 00:22:41 +0000405#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200406 case KVM_CAP_SYNC_MMU:
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530407#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530408 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530409 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
410 else
411 r = 0;
Alexander Graff4800b12012-08-07 10:24:14 +0200412#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
413 r = 1;
414#else
415 r = 0;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000416#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530417 break;
418#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasa2932922012-11-19 22:57:20 +0000419 case KVM_CAP_PPC_HTAB_FD:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530420 r = hv_enabled;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000421 break;
Alexander Graff4800b12012-08-07 10:24:14 +0200422#endif
Matt Evansb5434032011-12-07 16:55:57 +0000423 case KVM_CAP_NR_VCPUS:
424 /*
425 * Recommending a number of CPUs is somewhat arbitrary; we
426 * return the number of present CPUs for -HV (since a host
427 * will have secondary threads "offline"), and for other KVM
428 * implementations just count online CPUs.
429 */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530430 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530431 r = num_present_cpus();
432 else
433 r = num_online_cpus();
Matt Evansb5434032011-12-07 16:55:57 +0000434 break;
435 case KVM_CAP_MAX_VCPUS:
436 r = KVM_MAX_VCPUS;
437 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000438#ifdef CONFIG_PPC_BOOK3S_64
439 case KVM_CAP_PPC_GET_SMMU_INFO:
440 r = 1;
441 break;
442#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500443 default:
444 r = 0;
445 break;
446 }
447 return r;
448
449}
450
451long kvm_arch_dev_ioctl(struct file *filp,
452 unsigned int ioctl, unsigned long arg)
453{
454 return -EINVAL;
455}
456
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530457void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900458 struct kvm_memory_slot *dont)
459{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530460 kvmppc_core_free_memslot(kvm, free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900461}
462
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530463int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
464 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900465{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530466 return kvmppc_core_create_memslot(kvm, slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900467}
468
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900469void kvm_arch_memslots_updated(struct kvm *kvm)
470{
471}
472
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200473int kvm_arch_prepare_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900474 struct kvm_memory_slot *memslot,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900475 struct kvm_userspace_memory_region *mem,
476 enum kvm_mr_change change)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500477{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000478 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500479}
480
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200481void kvm_arch_commit_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900482 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900483 const struct kvm_memory_slot *old,
484 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200485{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000486 kvmppc_core_commit_memory_region(kvm, mem, old);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200487}
488
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300489void kvm_arch_flush_shadow_all(struct kvm *kvm)
490{
491}
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200492
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300493void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
494 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300495{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000496 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300497}
498
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500499struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
500{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600501 struct kvm_vcpu *vcpu;
502 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000503 if (!IS_ERR(vcpu)) {
504 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800505 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000506 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600507 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500508}
509
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200510int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
511{
512 return 0;
513}
514
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500515void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
516{
Alexander Grafa5954052010-02-22 16:52:14 +0100517 /* Make sure we're not using the vcpu anymore */
518 hrtimer_cancel(&vcpu->arch.dec_timer);
519 tasklet_kill(&vcpu->arch.tasklet);
520
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600521 kvmppc_remove_vcpu_debugfs(vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000522
523 switch (vcpu->arch.irq_type) {
524 case KVMPPC_IRQ_MPIC:
525 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
526 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000527 case KVMPPC_IRQ_XICS:
528 kvmppc_xics_free_icp(vcpu);
529 break;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000530 }
531
Hollis Blancharddb93f572008-11-05 09:36:18 -0600532 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500533}
534
535void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
536{
537 kvm_arch_vcpu_free(vcpu);
538}
539
540int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
541{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600542 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500543}
544
Alexander Graf544c6762009-11-02 12:02:31 +0000545/*
546 * low level hrtimer wake routine. Because this runs in hardirq context
547 * we schedule a tasklet to do the real work.
548 */
549enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
550{
551 struct kvm_vcpu *vcpu;
552
553 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
554 tasklet_schedule(&vcpu->arch.tasklet);
555
556 return HRTIMER_NORESTART;
557}
558
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500559int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
560{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000561 int ret;
562
Alexander Graf544c6762009-11-02 12:02:31 +0000563 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
564 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
565 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000566 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500567
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530568#ifdef CONFIG_KVM_EXIT_TIMING
569 mutex_init(&vcpu->arch.exit_timing_lock);
570#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000571 ret = kvmppc_subarch_vcpu_init(vcpu);
572 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500573}
574
575void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
576{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600577 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000578 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500579}
580
581void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
582{
Scott Woodeab17672011-04-27 17:24:10 -0500583#ifdef CONFIG_BOOKE
584 /*
585 * vrsave (formerly usprg0) isn't used by Linux, but may
586 * be used by the guest.
587 *
588 * On non-booke this is associated with Altivec and
589 * is handled by code in book3s.c.
590 */
591 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
592#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600593 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500594}
595
596void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
597{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600598 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500599#ifdef CONFIG_BOOKE
600 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
601#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500602}
603
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500604static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
605 struct kvm_run *run)
606{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100607 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500608}
609
610static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
611 struct kvm_run *run)
612{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000613 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500614
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100615 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500616 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
617 return;
618 }
619
620 if (vcpu->arch.mmio_is_bigendian) {
621 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100622 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100623 case 4: gpr = *(u32 *)run->mmio.data; break;
624 case 2: gpr = *(u16 *)run->mmio.data; break;
625 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500626 }
627 } else {
628 /* Convert BE data from userland back to LE. */
629 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100630 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
631 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
632 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500633 }
634 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100635
Alexander Graf3587d532010-02-19 11:00:30 +0100636 if (vcpu->arch.mmio_sign_extend) {
637 switch (run->mmio.len) {
638#ifdef CONFIG_PPC64
639 case 4:
640 gpr = (s64)(s32)gpr;
641 break;
642#endif
643 case 2:
644 gpr = (s64)(s16)gpr;
645 break;
646 case 1:
647 gpr = (s64)(s8)gpr;
648 break;
649 }
650 }
651
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100652 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100653
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100654 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
655 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +0100656 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
657 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100658 case KVM_MMIO_REG_FPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100659 VCPU_FPR(vcpu, 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#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100662 case KVM_MMIO_REG_QPR:
663 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100664 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100665 case KVM_MMIO_REG_FQPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100666 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100667 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100668 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200669#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100670 default:
671 BUG();
672 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500673}
674
675int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100676 unsigned int rt, unsigned int bytes,
677 int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500678{
Scott Wooded840ee2013-04-26 14:53:39 +0000679 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100680 int is_bigendian;
681
682 if (kvmppc_need_byteswap(vcpu)) {
683 /* Default endianness is "little endian". */
684 is_bigendian = !is_default_endian;
685 } else {
686 /* Default endianness is "big endian". */
687 is_bigendian = is_default_endian;
688 }
Scott Wooded840ee2013-04-26 14:53:39 +0000689
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500690 if (bytes > sizeof(run->mmio.data)) {
691 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
692 run->mmio.len);
693 }
694
695 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
696 run->mmio.len = bytes;
697 run->mmio.is_write = 0;
698
699 vcpu->arch.io_gpr = rt;
700 vcpu->arch.mmio_is_bigendian = is_bigendian;
701 vcpu->mmio_needed = 1;
702 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100703 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500704
Scott Wooded840ee2013-04-26 14:53:39 +0000705 idx = srcu_read_lock(&vcpu->kvm->srcu);
706
707 ret = kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
708 bytes, &run->mmio.data);
709
710 srcu_read_unlock(&vcpu->kvm->srcu, idx);
711
712 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200713 kvmppc_complete_mmio_load(vcpu, run);
714 vcpu->mmio_needed = 0;
715 return EMULATE_DONE;
716 }
717
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500718 return EMULATE_DO_MMIO;
719}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530720EXPORT_SYMBOL_GPL(kvmppc_handle_load);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500721
Alexander Graf3587d532010-02-19 11:00:30 +0100722/* Same as above, but sign extends */
723int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100724 unsigned int rt, unsigned int bytes,
725 int is_default_endian)
Alexander Graf3587d532010-02-19 11:00:30 +0100726{
727 int r;
728
Alexander Graf3587d532010-02-19 11:00:30 +0100729 vcpu->arch.mmio_sign_extend = 1;
Cédric Le Goater73601772014-01-09 11:51:16 +0100730 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian);
Alexander Graf3587d532010-02-19 11:00:30 +0100731
732 return r;
733}
734
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500735int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100736 u64 val, unsigned int bytes, int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500737{
738 void *data = run->mmio.data;
Scott Wooded840ee2013-04-26 14:53:39 +0000739 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100740 int is_bigendian;
741
742 if (kvmppc_need_byteswap(vcpu)) {
743 /* Default endianness is "little endian". */
744 is_bigendian = !is_default_endian;
745 } else {
746 /* Default endianness is "big endian". */
747 is_bigendian = is_default_endian;
748 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500749
750 if (bytes > sizeof(run->mmio.data)) {
751 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
752 run->mmio.len);
753 }
754
755 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
756 run->mmio.len = bytes;
757 run->mmio.is_write = 1;
758 vcpu->mmio_needed = 1;
759 vcpu->mmio_is_write = 1;
760
761 /* Store the value at the lowest bytes in 'data'. */
762 if (is_bigendian) {
763 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100764 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500765 case 4: *(u32 *)data = val; break;
766 case 2: *(u16 *)data = val; break;
767 case 1: *(u8 *)data = val; break;
768 }
769 } else {
770 /* Store LE value into 'data'. */
771 switch (bytes) {
772 case 4: st_le32(data, val); break;
773 case 2: st_le16(data, val); break;
774 case 1: *(u8 *)data = val; break;
775 }
776 }
777
Scott Wooded840ee2013-04-26 14:53:39 +0000778 idx = srcu_read_lock(&vcpu->kvm->srcu);
779
780 ret = kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
781 bytes, &run->mmio.data);
782
783 srcu_read_unlock(&vcpu->kvm->srcu, idx);
784
785 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200786 vcpu->mmio_needed = 0;
787 return EMULATE_DONE;
788 }
789
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500790 return EMULATE_DO_MMIO;
791}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530792EXPORT_SYMBOL_GPL(kvmppc_handle_store);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500793
794int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
795{
796 int r;
797 sigset_t sigsaved;
798
799 if (vcpu->sigset_active)
800 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
801
802 if (vcpu->mmio_needed) {
803 if (!vcpu->mmio_is_write)
804 kvmppc_complete_mmio_load(vcpu, run);
805 vcpu->mmio_needed = 0;
806 } else if (vcpu->arch.dcr_needed) {
807 if (!vcpu->arch.dcr_is_write)
808 kvmppc_complete_dcr_load(vcpu, run);
809 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100810 } else if (vcpu->arch.osi_needed) {
811 u64 *gprs = run->osi.gprs;
812 int i;
813
814 for (i = 0; i < 32; i++)
815 kvmppc_set_gpr(vcpu, i, gprs[i]);
816 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000817 } else if (vcpu->arch.hcall_needed) {
818 int i;
819
820 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
821 for (i = 0; i < 9; ++i)
822 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
823 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +0100824#ifdef CONFIG_BOOKE
825 } else if (vcpu->arch.epr_needed) {
826 kvmppc_set_epr(vcpu, run->epr.epr);
827 vcpu->arch.epr_needed = 0;
828#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500829 }
830
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000831 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500832
833 if (vcpu->sigset_active)
834 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
835
836 return r;
837}
838
839int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
840{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000841 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +0000842 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000843 return 0;
844 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500845
Paul Mackerras19ccb762011-07-23 17:42:46 +1000846 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500847
Scott Wooddfd4d472011-11-17 12:39:59 +0000848 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500849
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500850 return 0;
851}
852
Alexander Graf71fbfd52010-03-24 21:48:29 +0100853static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
854 struct kvm_enable_cap *cap)
855{
856 int r;
857
858 if (cap->flags)
859 return -EINVAL;
860
861 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100862 case KVM_CAP_PPC_OSI:
863 r = 0;
864 vcpu->arch.osi_enabled = true;
865 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200866 case KVM_CAP_PPC_PAPR:
867 r = 0;
868 vcpu->arch.papr_enabled = true;
869 break;
Alexander Graf1c810632013-01-04 18:12:48 +0100870 case KVM_CAP_PPC_EPR:
871 r = 0;
Scott Wood5df554a2013-04-12 14:08:46 +0000872 if (cap->args[0])
873 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
874 else
875 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +0100876 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000877#ifdef CONFIG_BOOKE
878 case KVM_CAP_PPC_BOOKE_WATCHDOG:
879 r = 0;
880 vcpu->arch.watchdog_enabled = true;
881 break;
882#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000883#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500884 case KVM_CAP_SW_TLB: {
885 struct kvm_config_tlb cfg;
886 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
887
888 r = -EFAULT;
889 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
890 break;
891
892 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
893 break;
894 }
895#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +0000896#ifdef CONFIG_KVM_MPIC
897 case KVM_CAP_IRQ_MPIC: {
Al Viro70abade2013-08-30 15:04:22 -0400898 struct fd f;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000899 struct kvm_device *dev;
900
901 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400902 f = fdget(cap->args[0]);
903 if (!f.file)
Scott Woodeb1e4f42013-04-12 14:08:47 +0000904 break;
905
906 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400907 dev = kvm_device_from_filp(f.file);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000908 if (dev)
909 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
910
Al Viro70abade2013-08-30 15:04:22 -0400911 fdput(f);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000912 break;
913 }
914#endif
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000915#ifdef CONFIG_KVM_XICS
916 case KVM_CAP_IRQ_XICS: {
Al Viro70abade2013-08-30 15:04:22 -0400917 struct fd f;
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000918 struct kvm_device *dev;
919
920 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400921 f = fdget(cap->args[0]);
922 if (!f.file)
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000923 break;
924
925 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400926 dev = kvm_device_from_filp(f.file);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000927 if (dev)
928 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
929
Al Viro70abade2013-08-30 15:04:22 -0400930 fdput(f);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000931 break;
932 }
933#endif /* CONFIG_KVM_XICS */
Alexander Graf71fbfd52010-03-24 21:48:29 +0100934 default:
935 r = -EINVAL;
936 break;
937 }
938
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200939 if (!r)
940 r = kvmppc_sanity_check(vcpu);
941
Alexander Graf71fbfd52010-03-24 21:48:29 +0100942 return r;
943}
944
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500945int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
946 struct kvm_mp_state *mp_state)
947{
948 return -EINVAL;
949}
950
951int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
952 struct kvm_mp_state *mp_state)
953{
954 return -EINVAL;
955}
956
957long kvm_arch_vcpu_ioctl(struct file *filp,
958 unsigned int ioctl, unsigned long arg)
959{
960 struct kvm_vcpu *vcpu = filp->private_data;
961 void __user *argp = (void __user *)arg;
962 long r;
963
Avi Kivity93736622010-05-13 12:35:17 +0300964 switch (ioctl) {
965 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500966 struct kvm_interrupt irq;
967 r = -EFAULT;
968 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300969 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500970 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300971 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500972 }
Avi Kivity19483d12010-05-13 12:30:43 +0300973
Alexander Graf71fbfd52010-03-24 21:48:29 +0100974 case KVM_ENABLE_CAP:
975 {
976 struct kvm_enable_cap cap;
977 r = -EFAULT;
978 if (copy_from_user(&cap, argp, sizeof(cap)))
979 goto out;
980 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
981 break;
982 }
Scott Wooddc83b8b2011-08-18 15:25:21 -0500983
Alexander Grafe24ed812011-09-14 10:02:41 +0200984 case KVM_SET_ONE_REG:
985 case KVM_GET_ONE_REG:
986 {
987 struct kvm_one_reg reg;
988 r = -EFAULT;
989 if (copy_from_user(&reg, argp, sizeof(reg)))
990 goto out;
991 if (ioctl == KVM_SET_ONE_REG)
992 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
993 else
994 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
995 break;
996 }
997
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000998#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500999 case KVM_DIRTY_TLB: {
1000 struct kvm_dirty_tlb dirty;
1001 r = -EFAULT;
1002 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1003 goto out;
1004 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1005 break;
1006 }
1007#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001008 default:
1009 r = -EINVAL;
1010 }
1011
1012out:
1013 return r;
1014}
1015
Carsten Otte5b1c1492012-01-04 10:25:23 +01001016int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1017{
1018 return VM_FAULT_SIGBUS;
1019}
1020
Alexander Graf15711e92010-07-29 14:48:08 +02001021static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1022{
Stuart Yoder784bafa2012-07-03 05:48:51 +00001023 u32 inst_nop = 0x60000000;
1024#ifdef CONFIG_KVM_BOOKE_HV
1025 u32 inst_sc1 = 0x44000022;
1026 pvinfo->hcall[0] = inst_sc1;
1027 pvinfo->hcall[1] = inst_nop;
1028 pvinfo->hcall[2] = inst_nop;
1029 pvinfo->hcall[3] = inst_nop;
1030#else
Alexander Graf15711e92010-07-29 14:48:08 +02001031 u32 inst_lis = 0x3c000000;
1032 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +02001033 u32 inst_sc = 0x44000002;
1034 u32 inst_imm_mask = 0xffff;
1035
1036 /*
1037 * The hypercall to get into KVM from within guest context is as
1038 * follows:
1039 *
1040 * lis r0, r0, KVM_SC_MAGIC_R0@h
1041 * ori r0, KVM_SC_MAGIC_R0@l
1042 * sc
1043 * nop
1044 */
1045 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
1046 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
1047 pvinfo->hcall[2] = inst_sc;
1048 pvinfo->hcall[3] = inst_nop;
Stuart Yoder784bafa2012-07-03 05:48:51 +00001049#endif
Alexander Graf15711e92010-07-29 14:48:08 +02001050
Liu Yu-B132019202e072012-07-03 05:48:52 +00001051 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1052
Alexander Graf15711e92010-07-29 14:48:08 +02001053 return 0;
1054}
1055
Alexander Graf5efdb4b2013-04-17 00:37:57 +02001056int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1057 bool line_status)
1058{
1059 if (!irqchip_in_kernel(kvm))
1060 return -ENXIO;
1061
1062 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1063 irq_event->irq, irq_event->level,
1064 line_status);
1065 return 0;
1066}
1067
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001068long kvm_arch_vm_ioctl(struct file *filp,
1069 unsigned int ioctl, unsigned long arg)
1070{
Scott Wood5df554a2013-04-12 14:08:46 +00001071 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +02001072 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001073 long r;
1074
1075 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +02001076 case KVM_PPC_GET_PVINFO: {
1077 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +04001078 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +02001079 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1080 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1081 r = -EFAULT;
1082 goto out;
1083 }
1084
1085 break;
1086 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001087#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +00001088 case KVM_CREATE_SPAPR_TCE: {
1089 struct kvm_create_spapr_tce create_tce;
David Gibson54738c02011-06-29 00:22:41 +00001090
1091 r = -EFAULT;
1092 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1093 goto out;
1094 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
1095 goto out;
1096 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001097 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001098 struct kvm_ppc_smmu_info info;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301099 struct kvm *kvm = filp->private_data;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001100
1101 memset(&info, 0, sizeof(info));
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301102 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001103 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1104 r = -EFAULT;
1105 break;
1106 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001107 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1108 struct kvm *kvm = filp->private_data;
1109
1110 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1111 break;
1112 }
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301113 default: {
1114 struct kvm *kvm = filp->private_data;
1115 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1116 }
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301117#else /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001118 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001119 r = -ENOTTY;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301120#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001121 }
Alexander Graf15711e92010-07-29 14:48:08 +02001122out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001123 return r;
1124}
1125
Scott Wood043cc4d2011-12-20 15:34:20 +00001126static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1127static unsigned long nr_lpids;
1128
1129long kvmppc_alloc_lpid(void)
1130{
1131 long lpid;
1132
1133 do {
1134 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1135 if (lpid >= nr_lpids) {
1136 pr_err("%s: No LPIDs free\n", __func__);
1137 return -ENOMEM;
1138 }
1139 } while (test_and_set_bit(lpid, lpid_inuse));
1140
1141 return lpid;
1142}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301143EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001144
1145void kvmppc_claim_lpid(long lpid)
1146{
1147 set_bit(lpid, lpid_inuse);
1148}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301149EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001150
1151void kvmppc_free_lpid(long lpid)
1152{
1153 clear_bit(lpid, lpid_inuse);
1154}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301155EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001156
1157void kvmppc_init_lpid(unsigned long nr_lpids_param)
1158{
1159 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1160 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1161}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301162EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001163
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001164int kvm_arch_init(void *opaque)
1165{
1166 return 0;
1167}
1168
1169void kvm_arch_exit(void)
1170{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301171
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001172}