blob: 0320c1721caaabfa275dc5028f56b16e198db383 [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.Vcbbc58d2013-10-07 22:18:01 +0530203 if (!vcpu->arch.papr_enabled && vcpu->kvm->arch.kvm_ops->is_hv_enabled)
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:
659 vcpu->arch.fpr[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:
666 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
667 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,
676 unsigned int rt, unsigned int bytes, int is_bigendian)
677{
Scott Wooded840ee2013-04-26 14:53:39 +0000678 int idx, ret;
679
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500680 if (bytes > sizeof(run->mmio.data)) {
681 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
682 run->mmio.len);
683 }
684
685 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
686 run->mmio.len = bytes;
687 run->mmio.is_write = 0;
688
689 vcpu->arch.io_gpr = rt;
690 vcpu->arch.mmio_is_bigendian = is_bigendian;
691 vcpu->mmio_needed = 1;
692 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100693 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500694
Scott Wooded840ee2013-04-26 14:53:39 +0000695 idx = srcu_read_lock(&vcpu->kvm->srcu);
696
697 ret = kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
698 bytes, &run->mmio.data);
699
700 srcu_read_unlock(&vcpu->kvm->srcu, idx);
701
702 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200703 kvmppc_complete_mmio_load(vcpu, run);
704 vcpu->mmio_needed = 0;
705 return EMULATE_DONE;
706 }
707
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500708 return EMULATE_DO_MMIO;
709}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530710EXPORT_SYMBOL_GPL(kvmppc_handle_load);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500711
Alexander Graf3587d532010-02-19 11:00:30 +0100712/* Same as above, but sign extends */
713int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
714 unsigned int rt, unsigned int bytes, int is_bigendian)
715{
716 int r;
717
Alexander Graf3587d532010-02-19 11:00:30 +0100718 vcpu->arch.mmio_sign_extend = 1;
Alexander Graf0e673fb2012-10-09 00:06:20 +0200719 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
Alexander Graf3587d532010-02-19 11:00:30 +0100720
721 return r;
722}
723
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500724int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100725 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500726{
727 void *data = run->mmio.data;
Scott Wooded840ee2013-04-26 14:53:39 +0000728 int idx, ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500729
730 if (bytes > sizeof(run->mmio.data)) {
731 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
732 run->mmio.len);
733 }
734
735 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
736 run->mmio.len = bytes;
737 run->mmio.is_write = 1;
738 vcpu->mmio_needed = 1;
739 vcpu->mmio_is_write = 1;
740
741 /* Store the value at the lowest bytes in 'data'. */
742 if (is_bigendian) {
743 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100744 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500745 case 4: *(u32 *)data = val; break;
746 case 2: *(u16 *)data = val; break;
747 case 1: *(u8 *)data = val; break;
748 }
749 } else {
750 /* Store LE value into 'data'. */
751 switch (bytes) {
752 case 4: st_le32(data, val); break;
753 case 2: st_le16(data, val); break;
754 case 1: *(u8 *)data = val; break;
755 }
756 }
757
Scott Wooded840ee2013-04-26 14:53:39 +0000758 idx = srcu_read_lock(&vcpu->kvm->srcu);
759
760 ret = kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
761 bytes, &run->mmio.data);
762
763 srcu_read_unlock(&vcpu->kvm->srcu, idx);
764
765 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200766 vcpu->mmio_needed = 0;
767 return EMULATE_DONE;
768 }
769
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500770 return EMULATE_DO_MMIO;
771}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530772EXPORT_SYMBOL_GPL(kvmppc_handle_store);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500773
774int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
775{
776 int r;
777 sigset_t sigsaved;
778
779 if (vcpu->sigset_active)
780 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
781
782 if (vcpu->mmio_needed) {
783 if (!vcpu->mmio_is_write)
784 kvmppc_complete_mmio_load(vcpu, run);
785 vcpu->mmio_needed = 0;
786 } else if (vcpu->arch.dcr_needed) {
787 if (!vcpu->arch.dcr_is_write)
788 kvmppc_complete_dcr_load(vcpu, run);
789 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100790 } else if (vcpu->arch.osi_needed) {
791 u64 *gprs = run->osi.gprs;
792 int i;
793
794 for (i = 0; i < 32; i++)
795 kvmppc_set_gpr(vcpu, i, gprs[i]);
796 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000797 } else if (vcpu->arch.hcall_needed) {
798 int i;
799
800 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
801 for (i = 0; i < 9; ++i)
802 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
803 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +0100804#ifdef CONFIG_BOOKE
805 } else if (vcpu->arch.epr_needed) {
806 kvmppc_set_epr(vcpu, run->epr.epr);
807 vcpu->arch.epr_needed = 0;
808#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500809 }
810
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000811 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500812
813 if (vcpu->sigset_active)
814 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
815
816 return r;
817}
818
819int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
820{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000821 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +0000822 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000823 return 0;
824 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500825
Paul Mackerras19ccb762011-07-23 17:42:46 +1000826 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500827
Scott Wooddfd4d472011-11-17 12:39:59 +0000828 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500829
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500830 return 0;
831}
832
Alexander Graf71fbfd52010-03-24 21:48:29 +0100833static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
834 struct kvm_enable_cap *cap)
835{
836 int r;
837
838 if (cap->flags)
839 return -EINVAL;
840
841 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100842 case KVM_CAP_PPC_OSI:
843 r = 0;
844 vcpu->arch.osi_enabled = true;
845 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200846 case KVM_CAP_PPC_PAPR:
847 r = 0;
848 vcpu->arch.papr_enabled = true;
849 break;
Alexander Graf1c810632013-01-04 18:12:48 +0100850 case KVM_CAP_PPC_EPR:
851 r = 0;
Scott Wood5df554a2013-04-12 14:08:46 +0000852 if (cap->args[0])
853 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
854 else
855 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +0100856 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000857#ifdef CONFIG_BOOKE
858 case KVM_CAP_PPC_BOOKE_WATCHDOG:
859 r = 0;
860 vcpu->arch.watchdog_enabled = true;
861 break;
862#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000863#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500864 case KVM_CAP_SW_TLB: {
865 struct kvm_config_tlb cfg;
866 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
867
868 r = -EFAULT;
869 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
870 break;
871
872 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
873 break;
874 }
875#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +0000876#ifdef CONFIG_KVM_MPIC
877 case KVM_CAP_IRQ_MPIC: {
Al Viro70abade2013-08-30 15:04:22 -0400878 struct fd f;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000879 struct kvm_device *dev;
880
881 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400882 f = fdget(cap->args[0]);
883 if (!f.file)
Scott Woodeb1e4f42013-04-12 14:08:47 +0000884 break;
885
886 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400887 dev = kvm_device_from_filp(f.file);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000888 if (dev)
889 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
890
Al Viro70abade2013-08-30 15:04:22 -0400891 fdput(f);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000892 break;
893 }
894#endif
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000895#ifdef CONFIG_KVM_XICS
896 case KVM_CAP_IRQ_XICS: {
Al Viro70abade2013-08-30 15:04:22 -0400897 struct fd f;
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000898 struct kvm_device *dev;
899
900 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400901 f = fdget(cap->args[0]);
902 if (!f.file)
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000903 break;
904
905 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400906 dev = kvm_device_from_filp(f.file);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000907 if (dev)
908 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
909
Al Viro70abade2013-08-30 15:04:22 -0400910 fdput(f);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000911 break;
912 }
913#endif /* CONFIG_KVM_XICS */
Alexander Graf71fbfd52010-03-24 21:48:29 +0100914 default:
915 r = -EINVAL;
916 break;
917 }
918
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200919 if (!r)
920 r = kvmppc_sanity_check(vcpu);
921
Alexander Graf71fbfd52010-03-24 21:48:29 +0100922 return r;
923}
924
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500925int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
926 struct kvm_mp_state *mp_state)
927{
928 return -EINVAL;
929}
930
931int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
932 struct kvm_mp_state *mp_state)
933{
934 return -EINVAL;
935}
936
937long kvm_arch_vcpu_ioctl(struct file *filp,
938 unsigned int ioctl, unsigned long arg)
939{
940 struct kvm_vcpu *vcpu = filp->private_data;
941 void __user *argp = (void __user *)arg;
942 long r;
943
Avi Kivity93736622010-05-13 12:35:17 +0300944 switch (ioctl) {
945 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500946 struct kvm_interrupt irq;
947 r = -EFAULT;
948 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300949 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500950 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300951 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500952 }
Avi Kivity19483d12010-05-13 12:30:43 +0300953
Alexander Graf71fbfd52010-03-24 21:48:29 +0100954 case KVM_ENABLE_CAP:
955 {
956 struct kvm_enable_cap cap;
957 r = -EFAULT;
958 if (copy_from_user(&cap, argp, sizeof(cap)))
959 goto out;
960 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
961 break;
962 }
Scott Wooddc83b8b2011-08-18 15:25:21 -0500963
Alexander Grafe24ed812011-09-14 10:02:41 +0200964 case KVM_SET_ONE_REG:
965 case KVM_GET_ONE_REG:
966 {
967 struct kvm_one_reg reg;
968 r = -EFAULT;
969 if (copy_from_user(&reg, argp, sizeof(reg)))
970 goto out;
971 if (ioctl == KVM_SET_ONE_REG)
972 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
973 else
974 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
975 break;
976 }
977
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000978#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500979 case KVM_DIRTY_TLB: {
980 struct kvm_dirty_tlb dirty;
981 r = -EFAULT;
982 if (copy_from_user(&dirty, argp, sizeof(dirty)))
983 goto out;
984 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
985 break;
986 }
987#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500988 default:
989 r = -EINVAL;
990 }
991
992out:
993 return r;
994}
995
Carsten Otte5b1c1492012-01-04 10:25:23 +0100996int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
997{
998 return VM_FAULT_SIGBUS;
999}
1000
Alexander Graf15711e92010-07-29 14:48:08 +02001001static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1002{
Stuart Yoder784bafa2012-07-03 05:48:51 +00001003 u32 inst_nop = 0x60000000;
1004#ifdef CONFIG_KVM_BOOKE_HV
1005 u32 inst_sc1 = 0x44000022;
1006 pvinfo->hcall[0] = inst_sc1;
1007 pvinfo->hcall[1] = inst_nop;
1008 pvinfo->hcall[2] = inst_nop;
1009 pvinfo->hcall[3] = inst_nop;
1010#else
Alexander Graf15711e92010-07-29 14:48:08 +02001011 u32 inst_lis = 0x3c000000;
1012 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +02001013 u32 inst_sc = 0x44000002;
1014 u32 inst_imm_mask = 0xffff;
1015
1016 /*
1017 * The hypercall to get into KVM from within guest context is as
1018 * follows:
1019 *
1020 * lis r0, r0, KVM_SC_MAGIC_R0@h
1021 * ori r0, KVM_SC_MAGIC_R0@l
1022 * sc
1023 * nop
1024 */
1025 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
1026 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
1027 pvinfo->hcall[2] = inst_sc;
1028 pvinfo->hcall[3] = inst_nop;
Stuart Yoder784bafa2012-07-03 05:48:51 +00001029#endif
Alexander Graf15711e92010-07-29 14:48:08 +02001030
Liu Yu-B132019202e072012-07-03 05:48:52 +00001031 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1032
Alexander Graf15711e92010-07-29 14:48:08 +02001033 return 0;
1034}
1035
Alexander Graf5efdb4b2013-04-17 00:37:57 +02001036int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1037 bool line_status)
1038{
1039 if (!irqchip_in_kernel(kvm))
1040 return -ENXIO;
1041
1042 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1043 irq_event->irq, irq_event->level,
1044 line_status);
1045 return 0;
1046}
1047
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001048long kvm_arch_vm_ioctl(struct file *filp,
1049 unsigned int ioctl, unsigned long arg)
1050{
Scott Wood5df554a2013-04-12 14:08:46 +00001051 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +02001052 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001053 long r;
1054
1055 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +02001056 case KVM_PPC_GET_PVINFO: {
1057 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +04001058 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +02001059 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1060 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1061 r = -EFAULT;
1062 goto out;
1063 }
1064
1065 break;
1066 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001067#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +00001068 case KVM_CREATE_SPAPR_TCE: {
1069 struct kvm_create_spapr_tce create_tce;
David Gibson54738c02011-06-29 00:22:41 +00001070
1071 r = -EFAULT;
1072 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1073 goto out;
1074 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
1075 goto out;
1076 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001077 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001078 struct kvm_ppc_smmu_info info;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301079 struct kvm *kvm = filp->private_data;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001080
1081 memset(&info, 0, sizeof(info));
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301082 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001083 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1084 r = -EFAULT;
1085 break;
1086 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001087 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1088 struct kvm *kvm = filp->private_data;
1089
1090 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1091 break;
1092 }
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301093 default: {
1094 struct kvm *kvm = filp->private_data;
1095 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1096 }
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301097#else /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001098 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001099 r = -ENOTTY;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301100#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001101 }
Alexander Graf15711e92010-07-29 14:48:08 +02001102out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001103 return r;
1104}
1105
Scott Wood043cc4d2011-12-20 15:34:20 +00001106static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1107static unsigned long nr_lpids;
1108
1109long kvmppc_alloc_lpid(void)
1110{
1111 long lpid;
1112
1113 do {
1114 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1115 if (lpid >= nr_lpids) {
1116 pr_err("%s: No LPIDs free\n", __func__);
1117 return -ENOMEM;
1118 }
1119 } while (test_and_set_bit(lpid, lpid_inuse));
1120
1121 return lpid;
1122}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301123EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001124
1125void kvmppc_claim_lpid(long lpid)
1126{
1127 set_bit(lpid, lpid_inuse);
1128}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301129EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001130
1131void kvmppc_free_lpid(long lpid)
1132{
1133 clear_bit(lpid, lpid_inuse);
1134}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301135EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001136
1137void kvmppc_init_lpid(unsigned long nr_lpids_param)
1138{
1139 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1140 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1141}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301142EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001143
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001144int kvm_arch_init(void *opaque)
1145{
1146 return 0;
1147}
1148
1149void kvm_arch_exit(void)
1150{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301151
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001152}