blob: cfa6cfabf4a3637786f345531dd9e5e7a7d32b55 [file] [log] [blame]
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
14 *
15 * Copyright IBM Corp. 2007
16 *
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
19 */
20
21#include <linux/errno.h>
22#include <linux/err.h>
23#include <linux/kvm_host.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050024#include <linux/vmalloc.h>
Alexander Graf544c6762009-11-02 12:02:31 +000025#include <linux/hrtimer.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050026#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Scott Woodeb1e4f42013-04-12 14:08:47 +000028#include <linux/file.h>
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +053029#include <linux/module.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050030#include <asm/cputable.h>
31#include <asm/uaccess.h>
32#include <asm/kvm_ppc.h>
Hollis Blanchard83aae4a2008-07-25 13:54:52 -050033#include <asm/tlbflush.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000034#include <asm/cputhreads.h>
Alexander Grafbd2be682012-08-13 01:04:19 +020035#include <asm/irqflags.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060036#include "timing.h"
Alexander Graf5efdb4b2013-04-17 00:37:57 +020037#include "irq.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110038#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050039
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030040#define CREATE_TRACE_POINTS
41#include "trace.h"
42
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +053043struct kvmppc_ops *kvmppc_hv_ops;
44EXPORT_SYMBOL_GPL(kvmppc_hv_ops);
45struct kvmppc_ops *kvmppc_pr_ops;
46EXPORT_SYMBOL_GPL(kvmppc_pr_ops);
47
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053048
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050049int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
50{
Liu Yu-B132019202e072012-07-03 05:48:52 +000051 return !!(v->arch.pending_exceptions) ||
Scott Wooddfd4d472011-11-17 12:39:59 +000052 v->requests;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050053}
54
Christoffer Dallb6d33832012-03-08 16:44:24 -050055int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
56{
57 return 1;
58}
59
Alexander Graf03d25c52012-08-10 12:28:50 +020060/*
61 * Common checks before entering the guest world. Call with interrupts
62 * disabled.
63 *
Alexander Graf7ee78852012-08-13 12:44:41 +020064 * returns:
65 *
66 * == 1 if we're ready to go into guest state
67 * <= 0 if we need to go back to the host with return value
Alexander Graf03d25c52012-08-10 12:28:50 +020068 */
69int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
70{
Scott Wood6c85f522014-01-09 19:18:40 -060071 int r;
Alexander Graf03d25c52012-08-10 12:28:50 +020072
Scott Wood6c85f522014-01-09 19:18:40 -060073 WARN_ON(irqs_disabled());
74 hard_irq_disable();
75
Alexander Graf03d25c52012-08-10 12:28:50 +020076 while (true) {
77 if (need_resched()) {
78 local_irq_enable();
79 cond_resched();
Scott Wood6c85f522014-01-09 19:18:40 -060080 hard_irq_disable();
Alexander Graf03d25c52012-08-10 12:28:50 +020081 continue;
82 }
83
84 if (signal_pending(current)) {
Alexander Graf7ee78852012-08-13 12:44:41 +020085 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
86 vcpu->run->exit_reason = KVM_EXIT_INTR;
87 r = -EINTR;
Alexander Graf03d25c52012-08-10 12:28:50 +020088 break;
89 }
90
Scott Wood5bd1cf12012-08-22 15:03:50 +000091 vcpu->mode = IN_GUEST_MODE;
92
93 /*
94 * Reading vcpu->requests must happen after setting vcpu->mode,
95 * so we don't miss a request because the requester sees
96 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
97 * before next entering the guest (and thus doesn't IPI).
98 */
Alexander Graf03d25c52012-08-10 12:28:50 +020099 smp_mb();
Scott Wood5bd1cf12012-08-22 15:03:50 +0000100
Alexander Graf03d25c52012-08-10 12:28:50 +0200101 if (vcpu->requests) {
102 /* Make sure we process requests preemptable */
103 local_irq_enable();
104 trace_kvm_check_requests(vcpu);
Alexander Graf7c973a22012-08-13 12:50:35 +0200105 r = kvmppc_core_check_requests(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -0600106 hard_irq_disable();
Alexander Graf7c973a22012-08-13 12:50:35 +0200107 if (r > 0)
108 continue;
109 break;
Alexander Graf03d25c52012-08-10 12:28:50 +0200110 }
111
112 if (kvmppc_core_prepare_to_enter(vcpu)) {
113 /* interrupts got enabled in between, so we
114 are back at square 1 */
115 continue;
116 }
117
Alexander Graf3766a4c2012-08-13 01:24:01 +0200118 kvm_guest_enter();
Scott Wood6c85f522014-01-09 19:18:40 -0600119 return 1;
Alexander Graf03d25c52012-08-10 12:28:50 +0200120 }
121
Scott Wood6c85f522014-01-09 19:18:40 -0600122 /* return to host */
123 local_irq_enable();
Alexander Graf03d25c52012-08-10 12:28:50 +0200124 return r;
125}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530126EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
Alexander Graf03d25c52012-08-10 12:28:50 +0200127
Alexander Graf5deb8e72014-04-24 13:46:24 +0200128#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
129static void kvmppc_swab_shared(struct kvm_vcpu *vcpu)
130{
131 struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared;
132 int i;
133
134 shared->sprg0 = swab64(shared->sprg0);
135 shared->sprg1 = swab64(shared->sprg1);
136 shared->sprg2 = swab64(shared->sprg2);
137 shared->sprg3 = swab64(shared->sprg3);
138 shared->srr0 = swab64(shared->srr0);
139 shared->srr1 = swab64(shared->srr1);
140 shared->dar = swab64(shared->dar);
141 shared->msr = swab64(shared->msr);
142 shared->dsisr = swab32(shared->dsisr);
143 shared->int_pending = swab32(shared->int_pending);
144 for (i = 0; i < ARRAY_SIZE(shared->sr); i++)
145 shared->sr[i] = swab32(shared->sr[i]);
146}
147#endif
148
Alexander Graf2a342ed2010-07-29 14:47:48 +0200149int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
150{
151 int nr = kvmppc_get_gpr(vcpu, 11);
152 int r;
153 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
154 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
155 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
156 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
157 unsigned long r2 = 0;
158
Alexander Graf5deb8e72014-04-24 13:46:24 +0200159 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
Alexander Graf2a342ed2010-07-29 14:47:48 +0200160 /* 32 bit mode */
161 param1 &= 0xffffffff;
162 param2 &= 0xffffffff;
163 param3 &= 0xffffffff;
164 param4 &= 0xffffffff;
165 }
166
167 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000168 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200169 {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200170#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
171 /* Book3S can be little endian, find it out here */
172 int shared_big_endian = true;
173 if (vcpu->arch.intr_msr & MSR_LE)
174 shared_big_endian = false;
175 if (shared_big_endian != vcpu->arch.shared_big_endian)
176 kvmppc_swab_shared(vcpu);
177 vcpu->arch.shared_big_endian = shared_big_endian;
178#endif
179
Alexander Graff3383cf2014-05-12 01:08:32 +0200180 if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) {
181 /*
182 * Older versions of the Linux magic page code had
183 * a bug where they would map their trampoline code
184 * NX. If that's the case, remove !PR NX capability.
185 */
186 vcpu->arch.disable_kernel_nx = true;
187 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
188 }
189
190 vcpu->arch.magic_page_pa = param1 & ~0xfffULL;
191 vcpu->arch.magic_page_ea = param2 & ~0xfffULL;
Alexander Graf5fc87402010-07-29 14:47:55 +0200192
Alexander Graf89b68c92014-07-13 16:37:12 +0200193#ifdef CONFIG_PPC_64K_PAGES
194 /*
195 * Make sure our 4k magic page is in the same window of a 64k
196 * page within the guest and within the host's page.
197 */
198 if ((vcpu->arch.magic_page_pa & 0xf000) !=
199 ((ulong)vcpu->arch.shared & 0xf000)) {
200 void *old_shared = vcpu->arch.shared;
201 ulong shared = (ulong)vcpu->arch.shared;
202 void *new_shared;
203
204 shared &= PAGE_MASK;
205 shared |= vcpu->arch.magic_page_pa & 0xf000;
206 new_shared = (void*)shared;
207 memcpy(new_shared, old_shared, 0x1000);
208 vcpu->arch.shared = new_shared;
209 }
210#endif
211
Scott Woodb5904972011-11-08 18:23:30 -0600212 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200213
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000214 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200215 break;
216 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000217 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
218 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000219#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Scott Wooda4cd8b22011-06-14 18:34:41 -0500220 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +0200221 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
222#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200223
224 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200225 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000226 case EV_HCALL_TOKEN(EV_IDLE):
227 r = EV_SUCCESS;
228 kvm_vcpu_block(vcpu);
229 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
230 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200231 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000232 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200233 break;
234 }
235
Alexander Graf7508e162010-08-03 11:32:56 +0200236 kvmppc_set_gpr(vcpu, 4, r2);
237
Alexander Graf2a342ed2010-07-29 14:47:48 +0200238 return r;
239}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530240EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500241
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200242int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
243{
244 int r = false;
245
246 /* We have to know what CPU to virtualize */
247 if (!vcpu->arch.pvr)
248 goto out;
249
250 /* PAPR only works with book3s_64 */
251 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
252 goto out;
253
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200254 /* HV KVM can only do PAPR mode for now */
Aneesh Kumar K.Va78b55d2013-10-07 22:18:02 +0530255 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200256 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200257
Scott Woodd30f6e42011-12-20 15:34:43 +0000258#ifdef CONFIG_KVM_BOOKE_HV
259 if (!cpu_has_feature(CPU_FTR_EMB_HV))
260 goto out;
261#endif
262
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200263 r = true;
264
265out:
266 vcpu->arch.sane = r;
267 return r ? 0 : -EINVAL;
268}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530269EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200270
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500271int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
272{
273 enum emulation_result er;
274 int r;
275
276 er = kvmppc_emulate_instruction(run, vcpu);
277 switch (er) {
278 case EMULATE_DONE:
279 /* Future optimization: only reload non-volatiles if they were
280 * actually modified. */
281 r = RESUME_GUEST_NV;
282 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300283 case EMULATE_AGAIN:
284 r = RESUME_GUEST;
285 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500286 case EMULATE_DO_MMIO:
287 run->exit_reason = KVM_EXIT_MMIO;
288 /* We must reload nonvolatiles because "update" load/store
289 * instructions modify register state. */
290 /* Future optimization: only reload non-volatiles if they were
291 * actually modified. */
292 r = RESUME_HOST_NV;
293 break;
294 case EMULATE_FAIL:
Mihai Caraman51f04722014-07-23 19:06:21 +0300295 {
296 u32 last_inst;
297
298 kvmppc_get_last_inst(vcpu, false, &last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500299 /* XXX Deliver Program interrupt to guest. */
Mihai Caraman51f04722014-07-23 19:06:21 +0300300 pr_emerg("%s: emulation failed (%08x)\n", __func__, last_inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500301 r = RESUME_HOST;
302 break;
Mihai Caraman51f04722014-07-23 19:06:21 +0300303 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500304 default:
Alexander Graf5a331692012-12-14 23:46:03 +0100305 WARN_ON(1);
306 r = RESUME_GUEST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500307 }
308
309 return r;
310}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530311EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500312
Alexander Graf10474ae2009-09-15 11:37:46 +0200313int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500314{
Alexander Graf10474ae2009-09-15 11:37:46 +0200315 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500316}
317
318void kvm_arch_hardware_disable(void *garbage)
319{
320}
321
322int kvm_arch_hardware_setup(void)
323{
324 return 0;
325}
326
327void kvm_arch_hardware_unsetup(void)
328{
329}
330
331void kvm_arch_check_processor_compat(void *rtn)
332{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600333 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500334}
335
Carsten Ottee08b9632012-01-04 10:25:20 +0100336int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500337{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530338 struct kvmppc_ops *kvm_ops = NULL;
339 /*
340 * if we have both HV and PR enabled, default is HV
341 */
342 if (type == 0) {
343 if (kvmppc_hv_ops)
344 kvm_ops = kvmppc_hv_ops;
345 else
346 kvm_ops = kvmppc_pr_ops;
347 if (!kvm_ops)
348 goto err_out;
349 } else if (type == KVM_VM_PPC_HV) {
350 if (!kvmppc_hv_ops)
351 goto err_out;
352 kvm_ops = kvmppc_hv_ops;
353 } else if (type == KVM_VM_PPC_PR) {
354 if (!kvmppc_pr_ops)
355 goto err_out;
356 kvm_ops = kvmppc_pr_ops;
357 } else
358 goto err_out;
Carsten Ottee08b9632012-01-04 10:25:20 +0100359
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530360 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
361 return -ENOENT;
362
363 kvm->arch.kvm_ops = kvm_ops;
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000364 return kvmppc_core_init_vm(kvm);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530365err_out:
366 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500367}
368
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100369void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500370{
371 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300372 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500373
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300374 kvm_for_each_vcpu(i, vcpu, kvm)
375 kvm_arch_vcpu_free(vcpu);
376
377 mutex_lock(&kvm->lock);
378 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
379 kvm->vcpus[i] = NULL;
380
381 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000382
383 kvmppc_core_destroy_vm(kvm);
384
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300385 mutex_unlock(&kvm->lock);
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530386
387 /* drop the module reference */
388 module_put(kvm->arch.kvm_ops->owner);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500389}
390
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800391void kvm_arch_sync_events(struct kvm *kvm)
392{
393}
394
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500395int kvm_dev_ioctl_check_extension(long ext)
396{
397 int r;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530398 /* FIXME!!
399 * Should some of this be vm ioctl ? is it possible now ?
400 */
401 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500402
403 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500404#ifdef CONFIG_BOOKE
405 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000406 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Alexander Graf1c810632013-01-04 18:12:48 +0100407 case KVM_CAP_PPC_EPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500408#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000409 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200410 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200411 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500412#endif
Alexander Graf18978762010-03-24 21:48:18 +0100413 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200414 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100415 case KVM_CAP_ENABLE_CAP:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000416 case KVM_CAP_ENABLE_CAP_VM:
Alexander Grafe24ed812011-09-14 10:02:41 +0200417 case KVM_CAP_ONE_REG:
Alexander Graf0e673fb2012-10-09 00:06:20 +0200418 case KVM_CAP_IOEVENTFD:
Scott Wood5df554a2013-04-12 14:08:46 +0000419 case KVM_CAP_DEVICE_CTRL:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000420 r = 1;
421 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000422 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100423 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200424 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000425#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500426 case KVM_CAP_SW_TLB:
427#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530428 /* We support this only for PR */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530429 r = !hv_enabled;
Alexander Grafe15a1132009-11-30 03:02:02 +0000430 break;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530431#ifdef CONFIG_KVM_MMIO
Laurent Vivier588968b2008-05-30 16:05:56 +0200432 case KVM_CAP_COALESCED_MMIO:
433 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
434 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000435#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530436#ifdef CONFIG_KVM_MPIC
437 case KVM_CAP_IRQ_MPIC:
438 r = 1;
439 break;
440#endif
441
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000442#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000443 case KVM_CAP_SPAPR_TCE:
Paul Mackerras32fad282012-05-04 02:32:53 +0000444 case KVM_CAP_PPC_ALLOC_HTAB:
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000445 case KVM_CAP_PPC_RTAS:
Alexander Graff2e91042014-05-22 17:40:15 +0200446 case KVM_CAP_PPC_FIXUP_HCALL:
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000447 case KVM_CAP_PPC_ENABLE_HCALL:
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000448#ifdef CONFIG_KVM_XICS
449 case KVM_CAP_IRQ_XICS:
450#endif
David Gibson54738c02011-06-29 00:22:41 +0000451 r = 1;
452 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000453#endif /* CONFIG_PPC_BOOK3S_64 */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530454#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras371fefd2011-06-29 00:23:08 +0000455 case KVM_CAP_PPC_SMT:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530456 if (hv_enabled)
Michael Ellerman3102f782014-05-23 18:15:29 +1000457 r = threads_per_subcore;
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530458 else
459 r = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000460 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000461 case KVM_CAP_PPC_RMA:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530462 r = hv_enabled;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000463 /* PPC970 requires an RMA */
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530464 if (r && cpu_has_feature(CPU_FTR_ARCH_201))
Paul Mackerras9e368f22011-06-29 00:40:08 +0000465 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000466 break;
David Gibson54738c02011-06-29 00:22:41 +0000467#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200468 case KVM_CAP_SYNC_MMU:
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530469#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530470 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530471 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
472 else
473 r = 0;
Alexander Graff4800b12012-08-07 10:24:14 +0200474#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
475 r = 1;
476#else
477 r = 0;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000478#endif
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530479 break;
480#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasa2932922012-11-19 22:57:20 +0000481 case KVM_CAP_PPC_HTAB_FD:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530482 r = hv_enabled;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000483 break;
Alexander Graff4800b12012-08-07 10:24:14 +0200484#endif
Matt Evansb5434032011-12-07 16:55:57 +0000485 case KVM_CAP_NR_VCPUS:
486 /*
487 * Recommending a number of CPUs is somewhat arbitrary; we
488 * return the number of present CPUs for -HV (since a host
489 * will have secondary threads "offline"), and for other KVM
490 * implementations just count online CPUs.
491 */
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530492 if (hv_enabled)
Aneesh Kumar K.V699cc872013-10-07 22:17:56 +0530493 r = num_present_cpus();
494 else
495 r = num_online_cpus();
Matt Evansb5434032011-12-07 16:55:57 +0000496 break;
497 case KVM_CAP_MAX_VCPUS:
498 r = KVM_MAX_VCPUS;
499 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000500#ifdef CONFIG_PPC_BOOK3S_64
501 case KVM_CAP_PPC_GET_SMMU_INFO:
502 r = 1;
503 break;
504#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500505 default:
506 r = 0;
507 break;
508 }
509 return r;
510
511}
512
513long kvm_arch_dev_ioctl(struct file *filp,
514 unsigned int ioctl, unsigned long arg)
515{
516 return -EINVAL;
517}
518
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530519void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900520 struct kvm_memory_slot *dont)
521{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530522 kvmppc_core_free_memslot(kvm, free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900523}
524
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530525int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
526 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900527{
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530528 return kvmppc_core_create_memslot(kvm, slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900529}
530
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900531void kvm_arch_memslots_updated(struct kvm *kvm)
532{
533}
534
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200535int kvm_arch_prepare_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900536 struct kvm_memory_slot *memslot,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900537 struct kvm_userspace_memory_region *mem,
538 enum kvm_mr_change change)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500539{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000540 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500541}
542
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200543void kvm_arch_commit_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900544 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900545 const struct kvm_memory_slot *old,
546 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200547{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000548 kvmppc_core_commit_memory_region(kvm, mem, old);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200549}
550
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300551void kvm_arch_flush_shadow_all(struct kvm *kvm)
552{
553}
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200554
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300555void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
556 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300557{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000558 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300559}
560
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500561struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
562{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600563 struct kvm_vcpu *vcpu;
564 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000565 if (!IS_ERR(vcpu)) {
566 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800567 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000568 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600569 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500570}
571
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200572int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
573{
574 return 0;
575}
576
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500577void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
578{
Alexander Grafa5954052010-02-22 16:52:14 +0100579 /* Make sure we're not using the vcpu anymore */
580 hrtimer_cancel(&vcpu->arch.dec_timer);
581 tasklet_kill(&vcpu->arch.tasklet);
582
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600583 kvmppc_remove_vcpu_debugfs(vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000584
585 switch (vcpu->arch.irq_type) {
586 case KVMPPC_IRQ_MPIC:
587 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
588 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000589 case KVMPPC_IRQ_XICS:
590 kvmppc_xics_free_icp(vcpu);
591 break;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000592 }
593
Hollis Blancharddb93f572008-11-05 09:36:18 -0600594 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500595}
596
597void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
598{
599 kvm_arch_vcpu_free(vcpu);
600}
601
602int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
603{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600604 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500605}
606
Alexander Graf544c6762009-11-02 12:02:31 +0000607/*
608 * low level hrtimer wake routine. Because this runs in hardirq context
609 * we schedule a tasklet to do the real work.
610 */
611enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
612{
613 struct kvm_vcpu *vcpu;
614
615 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
616 tasklet_schedule(&vcpu->arch.tasklet);
617
618 return HRTIMER_NORESTART;
619}
620
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500621int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
622{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000623 int ret;
624
Alexander Graf544c6762009-11-02 12:02:31 +0000625 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
626 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
627 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000628 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500629
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530630#ifdef CONFIG_KVM_EXIT_TIMING
631 mutex_init(&vcpu->arch.exit_timing_lock);
632#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000633 ret = kvmppc_subarch_vcpu_init(vcpu);
634 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500635}
636
637void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
638{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600639 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000640 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500641}
642
643void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
644{
Scott Woodeab17672011-04-27 17:24:10 -0500645#ifdef CONFIG_BOOKE
646 /*
647 * vrsave (formerly usprg0) isn't used by Linux, but may
648 * be used by the guest.
649 *
650 * On non-booke this is associated with Altivec and
651 * is handled by code in book3s.c.
652 */
653 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
654#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600655 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500656}
657
658void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
659{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600660 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500661#ifdef CONFIG_BOOKE
662 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
663#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500664}
665
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500666static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
667 struct kvm_run *run)
668{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100669 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500670}
671
672static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
673 struct kvm_run *run)
674{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000675 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500676
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100677 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500678 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
679 return;
680 }
681
682 if (vcpu->arch.mmio_is_bigendian) {
683 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100684 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100685 case 4: gpr = *(u32 *)run->mmio.data; break;
686 case 2: gpr = *(u16 *)run->mmio.data; break;
687 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500688 }
689 } else {
690 /* Convert BE data from userland back to LE. */
691 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100692 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
693 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
694 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500695 }
696 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100697
Alexander Graf3587d532010-02-19 11:00:30 +0100698 if (vcpu->arch.mmio_sign_extend) {
699 switch (run->mmio.len) {
700#ifdef CONFIG_PPC64
701 case 4:
702 gpr = (s64)(s32)gpr;
703 break;
704#endif
705 case 2:
706 gpr = (s64)(s16)gpr;
707 break;
708 case 1:
709 gpr = (s64)(s8)gpr;
710 break;
711 }
712 }
713
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100714 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100715
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100716 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
717 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +0100718 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
719 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100720 case KVM_MMIO_REG_FPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100721 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100722 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200723#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100724 case KVM_MMIO_REG_QPR:
725 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100726 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100727 case KVM_MMIO_REG_FQPR:
Paul Mackerrasefff1912013-10-15 20:43:02 +1100728 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100729 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100730 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200731#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100732 default:
733 BUG();
734 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500735}
736
737int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100738 unsigned int rt, unsigned int bytes,
739 int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500740{
Scott Wooded840ee2013-04-26 14:53:39 +0000741 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100742 int is_bigendian;
743
744 if (kvmppc_need_byteswap(vcpu)) {
745 /* Default endianness is "little endian". */
746 is_bigendian = !is_default_endian;
747 } else {
748 /* Default endianness is "big endian". */
749 is_bigendian = is_default_endian;
750 }
Scott Wooded840ee2013-04-26 14:53:39 +0000751
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500752 if (bytes > sizeof(run->mmio.data)) {
753 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
754 run->mmio.len);
755 }
756
757 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
758 run->mmio.len = bytes;
759 run->mmio.is_write = 0;
760
761 vcpu->arch.io_gpr = rt;
762 vcpu->arch.mmio_is_bigendian = is_bigendian;
763 vcpu->mmio_needed = 1;
764 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100765 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500766
Scott Wooded840ee2013-04-26 14:53:39 +0000767 idx = srcu_read_lock(&vcpu->kvm->srcu);
768
769 ret = kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
770 bytes, &run->mmio.data);
771
772 srcu_read_unlock(&vcpu->kvm->srcu, idx);
773
774 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200775 kvmppc_complete_mmio_load(vcpu, run);
776 vcpu->mmio_needed = 0;
777 return EMULATE_DONE;
778 }
779
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500780 return EMULATE_DO_MMIO;
781}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530782EXPORT_SYMBOL_GPL(kvmppc_handle_load);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500783
Alexander Graf3587d532010-02-19 11:00:30 +0100784/* Same as above, but sign extends */
785int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100786 unsigned int rt, unsigned int bytes,
787 int is_default_endian)
Alexander Graf3587d532010-02-19 11:00:30 +0100788{
789 int r;
790
Alexander Graf3587d532010-02-19 11:00:30 +0100791 vcpu->arch.mmio_sign_extend = 1;
Cédric Le Goater73601772014-01-09 11:51:16 +0100792 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian);
Alexander Graf3587d532010-02-19 11:00:30 +0100793
794 return r;
795}
796
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500797int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Cédric Le Goater73601772014-01-09 11:51:16 +0100798 u64 val, unsigned int bytes, int is_default_endian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500799{
800 void *data = run->mmio.data;
Scott Wooded840ee2013-04-26 14:53:39 +0000801 int idx, ret;
Cédric Le Goater73601772014-01-09 11:51:16 +0100802 int is_bigendian;
803
804 if (kvmppc_need_byteswap(vcpu)) {
805 /* Default endianness is "little endian". */
806 is_bigendian = !is_default_endian;
807 } else {
808 /* Default endianness is "big endian". */
809 is_bigendian = is_default_endian;
810 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500811
812 if (bytes > sizeof(run->mmio.data)) {
813 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
814 run->mmio.len);
815 }
816
817 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
818 run->mmio.len = bytes;
819 run->mmio.is_write = 1;
820 vcpu->mmio_needed = 1;
821 vcpu->mmio_is_write = 1;
822
823 /* Store the value at the lowest bytes in 'data'. */
824 if (is_bigendian) {
825 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100826 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500827 case 4: *(u32 *)data = val; break;
828 case 2: *(u16 *)data = val; break;
829 case 1: *(u8 *)data = val; break;
830 }
831 } else {
832 /* Store LE value into 'data'. */
833 switch (bytes) {
834 case 4: st_le32(data, val); break;
835 case 2: st_le16(data, val); break;
836 case 1: *(u8 *)data = val; break;
837 }
838 }
839
Scott Wooded840ee2013-04-26 14:53:39 +0000840 idx = srcu_read_lock(&vcpu->kvm->srcu);
841
842 ret = kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
843 bytes, &run->mmio.data);
844
845 srcu_read_unlock(&vcpu->kvm->srcu, idx);
846
847 if (!ret) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200848 vcpu->mmio_needed = 0;
849 return EMULATE_DONE;
850 }
851
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500852 return EMULATE_DO_MMIO;
853}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530854EXPORT_SYMBOL_GPL(kvmppc_handle_store);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500855
856int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
857{
858 int r;
859 sigset_t sigsaved;
860
861 if (vcpu->sigset_active)
862 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
863
864 if (vcpu->mmio_needed) {
865 if (!vcpu->mmio_is_write)
866 kvmppc_complete_mmio_load(vcpu, run);
867 vcpu->mmio_needed = 0;
868 } else if (vcpu->arch.dcr_needed) {
869 if (!vcpu->arch.dcr_is_write)
870 kvmppc_complete_dcr_load(vcpu, run);
871 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100872 } else if (vcpu->arch.osi_needed) {
873 u64 *gprs = run->osi.gprs;
874 int i;
875
876 for (i = 0; i < 32; i++)
877 kvmppc_set_gpr(vcpu, i, gprs[i]);
878 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000879 } else if (vcpu->arch.hcall_needed) {
880 int i;
881
882 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
883 for (i = 0; i < 9; ++i)
884 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
885 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +0100886#ifdef CONFIG_BOOKE
887 } else if (vcpu->arch.epr_needed) {
888 kvmppc_set_epr(vcpu, run->epr.epr);
889 vcpu->arch.epr_needed = 0;
890#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500891 }
892
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000893 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500894
895 if (vcpu->sigset_active)
896 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
897
898 return r;
899}
900
901int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
902{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000903 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +0000904 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000905 return 0;
906 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500907
Paul Mackerras19ccb762011-07-23 17:42:46 +1000908 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500909
Scott Wooddfd4d472011-11-17 12:39:59 +0000910 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500911
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500912 return 0;
913}
914
Alexander Graf71fbfd52010-03-24 21:48:29 +0100915static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
916 struct kvm_enable_cap *cap)
917{
918 int r;
919
920 if (cap->flags)
921 return -EINVAL;
922
923 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100924 case KVM_CAP_PPC_OSI:
925 r = 0;
926 vcpu->arch.osi_enabled = true;
927 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200928 case KVM_CAP_PPC_PAPR:
929 r = 0;
930 vcpu->arch.papr_enabled = true;
931 break;
Alexander Graf1c810632013-01-04 18:12:48 +0100932 case KVM_CAP_PPC_EPR:
933 r = 0;
Scott Wood5df554a2013-04-12 14:08:46 +0000934 if (cap->args[0])
935 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
936 else
937 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +0100938 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000939#ifdef CONFIG_BOOKE
940 case KVM_CAP_PPC_BOOKE_WATCHDOG:
941 r = 0;
942 vcpu->arch.watchdog_enabled = true;
943 break;
944#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000945#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500946 case KVM_CAP_SW_TLB: {
947 struct kvm_config_tlb cfg;
948 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
949
950 r = -EFAULT;
951 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
952 break;
953
954 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
955 break;
956 }
957#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +0000958#ifdef CONFIG_KVM_MPIC
959 case KVM_CAP_IRQ_MPIC: {
Al Viro70abade2013-08-30 15:04:22 -0400960 struct fd f;
Scott Woodeb1e4f42013-04-12 14:08:47 +0000961 struct kvm_device *dev;
962
963 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400964 f = fdget(cap->args[0]);
965 if (!f.file)
Scott Woodeb1e4f42013-04-12 14:08:47 +0000966 break;
967
968 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400969 dev = kvm_device_from_filp(f.file);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000970 if (dev)
971 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
972
Al Viro70abade2013-08-30 15:04:22 -0400973 fdput(f);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000974 break;
975 }
976#endif
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000977#ifdef CONFIG_KVM_XICS
978 case KVM_CAP_IRQ_XICS: {
Al Viro70abade2013-08-30 15:04:22 -0400979 struct fd f;
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000980 struct kvm_device *dev;
981
982 r = -EBADF;
Al Viro70abade2013-08-30 15:04:22 -0400983 f = fdget(cap->args[0]);
984 if (!f.file)
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000985 break;
986
987 r = -EPERM;
Al Viro70abade2013-08-30 15:04:22 -0400988 dev = kvm_device_from_filp(f.file);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000989 if (dev)
990 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
991
Al Viro70abade2013-08-30 15:04:22 -0400992 fdput(f);
Paul Mackerras5975a2e2013-04-27 00:28:37 +0000993 break;
994 }
995#endif /* CONFIG_KVM_XICS */
Alexander Graf71fbfd52010-03-24 21:48:29 +0100996 default:
997 r = -EINVAL;
998 break;
999 }
1000
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001001 if (!r)
1002 r = kvmppc_sanity_check(vcpu);
1003
Alexander Graf71fbfd52010-03-24 21:48:29 +01001004 return r;
1005}
1006
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001007int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
1008 struct kvm_mp_state *mp_state)
1009{
1010 return -EINVAL;
1011}
1012
1013int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
1014 struct kvm_mp_state *mp_state)
1015{
1016 return -EINVAL;
1017}
1018
1019long kvm_arch_vcpu_ioctl(struct file *filp,
1020 unsigned int ioctl, unsigned long arg)
1021{
1022 struct kvm_vcpu *vcpu = filp->private_data;
1023 void __user *argp = (void __user *)arg;
1024 long r;
1025
Avi Kivity93736622010-05-13 12:35:17 +03001026 switch (ioctl) {
1027 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001028 struct kvm_interrupt irq;
1029 r = -EFAULT;
1030 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +03001031 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001032 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +03001033 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001034 }
Avi Kivity19483d12010-05-13 12:30:43 +03001035
Alexander Graf71fbfd52010-03-24 21:48:29 +01001036 case KVM_ENABLE_CAP:
1037 {
1038 struct kvm_enable_cap cap;
1039 r = -EFAULT;
1040 if (copy_from_user(&cap, argp, sizeof(cap)))
1041 goto out;
1042 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1043 break;
1044 }
Scott Wooddc83b8b2011-08-18 15:25:21 -05001045
Alexander Grafe24ed812011-09-14 10:02:41 +02001046 case KVM_SET_ONE_REG:
1047 case KVM_GET_ONE_REG:
1048 {
1049 struct kvm_one_reg reg;
1050 r = -EFAULT;
1051 if (copy_from_user(&reg, argp, sizeof(reg)))
1052 goto out;
1053 if (ioctl == KVM_SET_ONE_REG)
1054 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
1055 else
1056 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
1057 break;
1058 }
1059
Alexander Grafbf7ca4b2012-02-15 23:40:00 +00001060#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -05001061 case KVM_DIRTY_TLB: {
1062 struct kvm_dirty_tlb dirty;
1063 r = -EFAULT;
1064 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1065 goto out;
1066 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1067 break;
1068 }
1069#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001070 default:
1071 r = -EINVAL;
1072 }
1073
1074out:
1075 return r;
1076}
1077
Carsten Otte5b1c1492012-01-04 10:25:23 +01001078int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1079{
1080 return VM_FAULT_SIGBUS;
1081}
1082
Alexander Graf15711e92010-07-29 14:48:08 +02001083static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1084{
Stuart Yoder784bafa2012-07-03 05:48:51 +00001085 u32 inst_nop = 0x60000000;
1086#ifdef CONFIG_KVM_BOOKE_HV
1087 u32 inst_sc1 = 0x44000022;
Alexander Graf27431032014-04-24 13:39:16 +02001088 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
1089 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
1090 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
1091 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001092#else
Alexander Graf15711e92010-07-29 14:48:08 +02001093 u32 inst_lis = 0x3c000000;
1094 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +02001095 u32 inst_sc = 0x44000002;
1096 u32 inst_imm_mask = 0xffff;
1097
1098 /*
1099 * The hypercall to get into KVM from within guest context is as
1100 * follows:
1101 *
1102 * lis r0, r0, KVM_SC_MAGIC_R0@h
1103 * ori r0, KVM_SC_MAGIC_R0@l
1104 * sc
1105 * nop
1106 */
Alexander Graf27431032014-04-24 13:39:16 +02001107 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
1108 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
1109 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
1110 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
Stuart Yoder784bafa2012-07-03 05:48:51 +00001111#endif
Alexander Graf15711e92010-07-29 14:48:08 +02001112
Liu Yu-B132019202e072012-07-03 05:48:52 +00001113 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1114
Alexander Graf15711e92010-07-29 14:48:08 +02001115 return 0;
1116}
1117
Alexander Graf5efdb4b2013-04-17 00:37:57 +02001118int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1119 bool line_status)
1120{
1121 if (!irqchip_in_kernel(kvm))
1122 return -ENXIO;
1123
1124 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1125 irq_event->irq, irq_event->level,
1126 line_status);
1127 return 0;
1128}
1129
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001130
1131static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1132 struct kvm_enable_cap *cap)
1133{
1134 int r;
1135
1136 if (cap->flags)
1137 return -EINVAL;
1138
1139 switch (cap->cap) {
1140#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1141 case KVM_CAP_PPC_ENABLE_HCALL: {
1142 unsigned long hcall = cap->args[0];
1143
1144 r = -EINVAL;
1145 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
1146 cap->args[1] > 1)
1147 break;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001148 if (!kvmppc_book3s_hcall_implemented(kvm, hcall))
1149 break;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001150 if (cap->args[1])
1151 set_bit(hcall / 4, kvm->arch.enabled_hcalls);
1152 else
1153 clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
1154 r = 0;
1155 break;
1156 }
1157#endif
1158 default:
1159 r = -EINVAL;
1160 break;
1161 }
1162
1163 return r;
1164}
1165
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001166long kvm_arch_vm_ioctl(struct file *filp,
1167 unsigned int ioctl, unsigned long arg)
1168{
Scott Wood5df554a2013-04-12 14:08:46 +00001169 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +02001170 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001171 long r;
1172
1173 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +02001174 case KVM_PPC_GET_PVINFO: {
1175 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +04001176 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +02001177 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1178 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1179 r = -EFAULT;
1180 goto out;
1181 }
1182
1183 break;
1184 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001185 case KVM_ENABLE_CAP:
1186 {
1187 struct kvm_enable_cap cap;
1188 r = -EFAULT;
1189 if (copy_from_user(&cap, argp, sizeof(cap)))
1190 goto out;
1191 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1192 break;
1193 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001194#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +00001195 case KVM_CREATE_SPAPR_TCE: {
1196 struct kvm_create_spapr_tce create_tce;
David Gibson54738c02011-06-29 00:22:41 +00001197
1198 r = -EFAULT;
1199 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1200 goto out;
1201 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
1202 goto out;
1203 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001204 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001205 struct kvm_ppc_smmu_info info;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301206 struct kvm *kvm = filp->private_data;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001207
1208 memset(&info, 0, sizeof(info));
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301209 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001210 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1211 r = -EFAULT;
1212 break;
1213 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001214 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1215 struct kvm *kvm = filp->private_data;
1216
1217 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1218 break;
1219 }
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301220 default: {
1221 struct kvm *kvm = filp->private_data;
1222 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1223 }
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301224#else /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001225 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001226 r = -ENOTTY;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301227#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001228 }
Alexander Graf15711e92010-07-29 14:48:08 +02001229out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001230 return r;
1231}
1232
Scott Wood043cc4d2011-12-20 15:34:20 +00001233static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1234static unsigned long nr_lpids;
1235
1236long kvmppc_alloc_lpid(void)
1237{
1238 long lpid;
1239
1240 do {
1241 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1242 if (lpid >= nr_lpids) {
1243 pr_err("%s: No LPIDs free\n", __func__);
1244 return -ENOMEM;
1245 }
1246 } while (test_and_set_bit(lpid, lpid_inuse));
1247
1248 return lpid;
1249}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301250EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001251
1252void kvmppc_claim_lpid(long lpid)
1253{
1254 set_bit(lpid, lpid_inuse);
1255}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301256EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001257
1258void kvmppc_free_lpid(long lpid)
1259{
1260 clear_bit(lpid, lpid_inuse);
1261}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301262EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001263
1264void kvmppc_init_lpid(unsigned long nr_lpids_param)
1265{
1266 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1267 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1268}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301269EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
Scott Wood043cc4d2011-12-20 15:34:20 +00001270
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001271int kvm_arch_init(void *opaque)
1272{
1273 return 0;
1274}
1275
1276void kvm_arch_exit(void)
1277{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301278
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001279}