blob: 0e2a98ab6a77147ae97b449bde6514bfc378ba77 [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>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050028#include <asm/cputable.h>
29#include <asm/uaccess.h>
30#include <asm/kvm_ppc.h>
Hollis Blanchard83aae4a2008-07-25 13:54:52 -050031#include <asm/tlbflush.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000032#include <asm/cputhreads.h>
Alexander Grafbd2be682012-08-13 01:04:19 +020033#include <asm/irqflags.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060034#include "timing.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110035#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050036
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030037#define CREATE_TRACE_POINTS
38#include "trace.h"
39
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050040int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
41{
Liu Yu-B132019202e072012-07-03 05:48:52 +000042 return !!(v->arch.pending_exceptions) ||
Scott Wooddfd4d472011-11-17 12:39:59 +000043 v->requests;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050044}
45
Christoffer Dallb6d33832012-03-08 16:44:24 -050046int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
47{
48 return 1;
49}
50
Alexander Graf03d25c52012-08-10 12:28:50 +020051#ifndef CONFIG_KVM_BOOK3S_64_HV
52/*
53 * Common checks before entering the guest world. Call with interrupts
54 * disabled.
55 *
Alexander Graf7ee78852012-08-13 12:44:41 +020056 * returns:
57 *
58 * == 1 if we're ready to go into guest state
59 * <= 0 if we need to go back to the host with return value
Alexander Graf03d25c52012-08-10 12:28:50 +020060 */
61int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
62{
Alexander Graf7ee78852012-08-13 12:44:41 +020063 int r = 1;
Alexander Graf03d25c52012-08-10 12:28:50 +020064
65 WARN_ON_ONCE(!irqs_disabled());
66 while (true) {
67 if (need_resched()) {
68 local_irq_enable();
69 cond_resched();
70 local_irq_disable();
71 continue;
72 }
73
74 if (signal_pending(current)) {
Alexander Graf7ee78852012-08-13 12:44:41 +020075 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
76 vcpu->run->exit_reason = KVM_EXIT_INTR;
77 r = -EINTR;
Alexander Graf03d25c52012-08-10 12:28:50 +020078 break;
79 }
80
81 smp_mb();
82 if (vcpu->requests) {
83 /* Make sure we process requests preemptable */
84 local_irq_enable();
85 trace_kvm_check_requests(vcpu);
86 kvmppc_core_check_requests(vcpu);
87 local_irq_disable();
88 continue;
89 }
90
91 if (kvmppc_core_prepare_to_enter(vcpu)) {
92 /* interrupts got enabled in between, so we
93 are back at square 1 */
94 continue;
95 }
96
Alexander Grafbd2be682012-08-13 01:04:19 +020097#ifdef CONFIG_PPC64
98 /* lazy EE magic */
99 hard_irq_disable();
100 if (lazy_irq_pending()) {
101 /* Got an interrupt in between, try again */
102 local_irq_enable();
103 local_irq_disable();
Alexander Graf3766a4c2012-08-13 01:24:01 +0200104 kvm_guest_exit();
Alexander Grafbd2be682012-08-13 01:04:19 +0200105 continue;
106 }
107
108 trace_hardirqs_on();
109#endif
110
Alexander Graf3766a4c2012-08-13 01:24:01 +0200111 kvm_guest_enter();
112
Alexander Graf03d25c52012-08-10 12:28:50 +0200113 /* Going into guest context! Yay! */
114 vcpu->mode = IN_GUEST_MODE;
115 smp_wmb();
116
117 break;
118 }
119
120 return r;
121}
122#endif /* CONFIG_KVM_BOOK3S_64_HV */
123
Alexander Graf2a342ed2010-07-29 14:47:48 +0200124int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
125{
126 int nr = kvmppc_get_gpr(vcpu, 11);
127 int r;
128 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
129 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
130 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
131 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
132 unsigned long r2 = 0;
133
134 if (!(vcpu->arch.shared->msr & MSR_SF)) {
135 /* 32 bit mode */
136 param1 &= 0xffffffff;
137 param2 &= 0xffffffff;
138 param3 &= 0xffffffff;
139 param4 &= 0xffffffff;
140 }
141
142 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000143 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200144 {
145 vcpu->arch.magic_page_pa = param1;
146 vcpu->arch.magic_page_ea = param2;
147
Scott Woodb5904972011-11-08 18:23:30 -0600148 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200149
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000150 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200151 break;
152 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000153 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
154 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000155#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Scott Wooda4cd8b22011-06-14 18:34:41 -0500156 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +0200157 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
158#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200159
160 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200161 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000162 case EV_HCALL_TOKEN(EV_IDLE):
163 r = EV_SUCCESS;
164 kvm_vcpu_block(vcpu);
165 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
166 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200167 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000168 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200169 break;
170 }
171
Alexander Graf7508e162010-08-03 11:32:56 +0200172 kvmppc_set_gpr(vcpu, 4, r2);
173
Alexander Graf2a342ed2010-07-29 14:47:48 +0200174 return r;
175}
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500176
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200177int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
178{
179 int r = false;
180
181 /* We have to know what CPU to virtualize */
182 if (!vcpu->arch.pvr)
183 goto out;
184
185 /* PAPR only works with book3s_64 */
186 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
187 goto out;
188
189#ifdef CONFIG_KVM_BOOK3S_64_HV
190 /* HV KVM can only do PAPR mode for now */
191 if (!vcpu->arch.papr_enabled)
192 goto out;
193#endif
194
Scott Woodd30f6e42011-12-20 15:34:43 +0000195#ifdef CONFIG_KVM_BOOKE_HV
196 if (!cpu_has_feature(CPU_FTR_EMB_HV))
197 goto out;
198#endif
199
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200200 r = true;
201
202out:
203 vcpu->arch.sane = r;
204 return r ? 0 : -EINVAL;
205}
206
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500207int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
208{
209 enum emulation_result er;
210 int r;
211
212 er = kvmppc_emulate_instruction(run, vcpu);
213 switch (er) {
214 case EMULATE_DONE:
215 /* Future optimization: only reload non-volatiles if they were
216 * actually modified. */
217 r = RESUME_GUEST_NV;
218 break;
219 case EMULATE_DO_MMIO:
220 run->exit_reason = KVM_EXIT_MMIO;
221 /* We must reload nonvolatiles because "update" load/store
222 * instructions modify register state. */
223 /* Future optimization: only reload non-volatiles if they were
224 * actually modified. */
225 r = RESUME_HOST_NV;
226 break;
227 case EMULATE_FAIL:
228 /* XXX Deliver Program interrupt to guest. */
229 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200230 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500231 r = RESUME_HOST;
232 break;
233 default:
234 BUG();
235 }
236
237 return r;
238}
239
Alexander Graf10474ae2009-09-15 11:37:46 +0200240int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500241{
Alexander Graf10474ae2009-09-15 11:37:46 +0200242 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500243}
244
245void kvm_arch_hardware_disable(void *garbage)
246{
247}
248
249int kvm_arch_hardware_setup(void)
250{
251 return 0;
252}
253
254void kvm_arch_hardware_unsetup(void)
255{
256}
257
258void kvm_arch_check_processor_compat(void *rtn)
259{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600260 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500261}
262
Carsten Ottee08b9632012-01-04 10:25:20 +0100263int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500264{
Carsten Ottee08b9632012-01-04 10:25:20 +0100265 if (type)
266 return -EINVAL;
267
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000268 return kvmppc_core_init_vm(kvm);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500269}
270
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100271void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500272{
273 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300274 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500275
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300276 kvm_for_each_vcpu(i, vcpu, kvm)
277 kvm_arch_vcpu_free(vcpu);
278
279 mutex_lock(&kvm->lock);
280 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
281 kvm->vcpus[i] = NULL;
282
283 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000284
285 kvmppc_core_destroy_vm(kvm);
286
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300287 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500288}
289
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800290void kvm_arch_sync_events(struct kvm *kvm)
291{
292}
293
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500294int kvm_dev_ioctl_check_extension(long ext)
295{
296 int r;
297
298 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500299#ifdef CONFIG_BOOKE
300 case KVM_CAP_PPC_BOOKE_SREGS:
301#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000302 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200303 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200304 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500305#endif
Alexander Graf18978762010-03-24 21:48:18 +0100306 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200307 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100308 case KVM_CAP_ENABLE_CAP:
Alexander Grafe24ed812011-09-14 10:02:41 +0200309 case KVM_CAP_ONE_REG:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000310 r = 1;
311 break;
312#ifndef CONFIG_KVM_BOOK3S_64_HV
313 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100314 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200315 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000316#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500317 case KVM_CAP_SW_TLB:
318#endif
Alexander Grafe15a1132009-11-30 03:02:02 +0000319 r = 1;
320 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200321 case KVM_CAP_COALESCED_MMIO:
322 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
323 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000324#endif
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000325#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000326 case KVM_CAP_SPAPR_TCE:
Paul Mackerras32fad282012-05-04 02:32:53 +0000327 case KVM_CAP_PPC_ALLOC_HTAB:
David Gibson54738c02011-06-29 00:22:41 +0000328 r = 1;
329 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000330#endif /* CONFIG_PPC_BOOK3S_64 */
331#ifdef CONFIG_KVM_BOOK3S_64_HV
Paul Mackerras371fefd2011-06-29 00:23:08 +0000332 case KVM_CAP_PPC_SMT:
333 r = threads_per_core;
334 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000335 case KVM_CAP_PPC_RMA:
336 r = 1;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000337 /* PPC970 requires an RMA */
338 if (cpu_has_feature(CPU_FTR_ARCH_201))
339 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000340 break;
David Gibson54738c02011-06-29 00:22:41 +0000341#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200342 case KVM_CAP_SYNC_MMU:
343#ifdef CONFIG_KVM_BOOK3S_64_HV
344 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
345#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
346 r = 1;
347#else
348 r = 0;
349#endif
350 break;
Matt Evansb5434032011-12-07 16:55:57 +0000351 case KVM_CAP_NR_VCPUS:
352 /*
353 * Recommending a number of CPUs is somewhat arbitrary; we
354 * return the number of present CPUs for -HV (since a host
355 * will have secondary threads "offline"), and for other KVM
356 * implementations just count online CPUs.
357 */
358#ifdef CONFIG_KVM_BOOK3S_64_HV
359 r = num_present_cpus();
360#else
361 r = num_online_cpus();
362#endif
363 break;
364 case KVM_CAP_MAX_VCPUS:
365 r = KVM_MAX_VCPUS;
366 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000367#ifdef CONFIG_PPC_BOOK3S_64
368 case KVM_CAP_PPC_GET_SMMU_INFO:
369 r = 1;
370 break;
371#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500372 default:
373 r = 0;
374 break;
375 }
376 return r;
377
378}
379
380long kvm_arch_dev_ioctl(struct file *filp,
381 unsigned int ioctl, unsigned long arg)
382{
383 return -EINVAL;
384}
385
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900386void kvm_arch_free_memslot(struct kvm_memory_slot *free,
387 struct kvm_memory_slot *dont)
388{
Takuya Yoshikawad89cc612012-08-01 18:03:28 +0900389 if (!dont || free->arch.rmap != dont->arch.rmap) {
390 vfree(free->arch.rmap);
391 free->arch.rmap = NULL;
392 }
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900393}
394
395int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages)
396{
Takuya Yoshikawad89cc612012-08-01 18:03:28 +0900397 slot->arch.rmap = vzalloc(npages * sizeof(*slot->arch.rmap));
398 if (!slot->arch.rmap)
399 return -ENOMEM;
400
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900401 return 0;
402}
403
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200404int kvm_arch_prepare_memory_region(struct kvm *kvm,
405 struct kvm_memory_slot *memslot,
406 struct kvm_memory_slot old,
407 struct kvm_userspace_memory_region *mem,
408 int user_alloc)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500409{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000410 return kvmppc_core_prepare_memory_region(kvm, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500411}
412
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200413void kvm_arch_commit_memory_region(struct kvm *kvm,
414 struct kvm_userspace_memory_region *mem,
415 struct kvm_memory_slot old,
416 int user_alloc)
417{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000418 kvmppc_core_commit_memory_region(kvm, mem);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200419}
420
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300421void kvm_arch_flush_shadow_all(struct kvm *kvm)
422{
423}
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200424
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300425void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
426 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300427{
428}
429
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500430struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
431{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600432 struct kvm_vcpu *vcpu;
433 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000434 if (!IS_ERR(vcpu)) {
435 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800436 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000437 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600438 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500439}
440
441void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
442{
Alexander Grafa5954052010-02-22 16:52:14 +0100443 /* Make sure we're not using the vcpu anymore */
444 hrtimer_cancel(&vcpu->arch.dec_timer);
445 tasklet_kill(&vcpu->arch.tasklet);
446
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600447 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600448 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500449}
450
451void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
452{
453 kvm_arch_vcpu_free(vcpu);
454}
455
456int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
457{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600458 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500459}
460
Alexander Graf544c6762009-11-02 12:02:31 +0000461/*
462 * low level hrtimer wake routine. Because this runs in hardirq context
463 * we schedule a tasklet to do the real work.
464 */
465enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
466{
467 struct kvm_vcpu *vcpu;
468
469 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
470 tasklet_schedule(&vcpu->arch.tasklet);
471
472 return HRTIMER_NORESTART;
473}
474
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500475int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
476{
Alexander Graf544c6762009-11-02 12:02:31 +0000477 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
478 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
479 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000480 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500481
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530482#ifdef CONFIG_KVM_EXIT_TIMING
483 mutex_init(&vcpu->arch.exit_timing_lock);
484#endif
485
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500486 return 0;
487}
488
489void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
490{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600491 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500492}
493
494void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
495{
Scott Woodeab17672011-04-27 17:24:10 -0500496#ifdef CONFIG_BOOKE
497 /*
498 * vrsave (formerly usprg0) isn't used by Linux, but may
499 * be used by the guest.
500 *
501 * On non-booke this is associated with Altivec and
502 * is handled by code in book3s.c.
503 */
504 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
505#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600506 kvmppc_core_vcpu_load(vcpu, cpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000507 vcpu->cpu = smp_processor_id();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500508}
509
510void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
511{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600512 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500513#ifdef CONFIG_BOOKE
514 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
515#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +0000516 vcpu->cpu = -1;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500517}
518
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100519int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600520 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500521{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600522 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500523}
524
525static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
526 struct kvm_run *run)
527{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100528 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500529}
530
531static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
532 struct kvm_run *run)
533{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000534 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500535
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100536 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500537 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
538 return;
539 }
540
541 if (vcpu->arch.mmio_is_bigendian) {
542 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100543 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100544 case 4: gpr = *(u32 *)run->mmio.data; break;
545 case 2: gpr = *(u16 *)run->mmio.data; break;
546 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500547 }
548 } else {
549 /* Convert BE data from userland back to LE. */
550 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100551 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
552 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
553 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500554 }
555 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100556
Alexander Graf3587d532010-02-19 11:00:30 +0100557 if (vcpu->arch.mmio_sign_extend) {
558 switch (run->mmio.len) {
559#ifdef CONFIG_PPC64
560 case 4:
561 gpr = (s64)(s32)gpr;
562 break;
563#endif
564 case 2:
565 gpr = (s64)(s16)gpr;
566 break;
567 case 1:
568 gpr = (s64)(s8)gpr;
569 break;
570 }
571 }
572
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100573 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100574
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100575 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
576 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +0100577 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
578 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100579 case KVM_MMIO_REG_FPR:
580 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100581 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200582#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100583 case KVM_MMIO_REG_QPR:
584 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100585 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100586 case KVM_MMIO_REG_FQPR:
587 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
588 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100589 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200590#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100591 default:
592 BUG();
593 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500594}
595
596int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
597 unsigned int rt, unsigned int bytes, int is_bigendian)
598{
599 if (bytes > sizeof(run->mmio.data)) {
600 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
601 run->mmio.len);
602 }
603
604 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
605 run->mmio.len = bytes;
606 run->mmio.is_write = 0;
607
608 vcpu->arch.io_gpr = rt;
609 vcpu->arch.mmio_is_bigendian = is_bigendian;
610 vcpu->mmio_needed = 1;
611 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100612 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500613
614 return EMULATE_DO_MMIO;
615}
616
Alexander Graf3587d532010-02-19 11:00:30 +0100617/* Same as above, but sign extends */
618int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
619 unsigned int rt, unsigned int bytes, int is_bigendian)
620{
621 int r;
622
623 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
624 vcpu->arch.mmio_sign_extend = 1;
625
626 return r;
627}
628
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500629int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100630 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500631{
632 void *data = run->mmio.data;
633
634 if (bytes > sizeof(run->mmio.data)) {
635 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
636 run->mmio.len);
637 }
638
639 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
640 run->mmio.len = bytes;
641 run->mmio.is_write = 1;
642 vcpu->mmio_needed = 1;
643 vcpu->mmio_is_write = 1;
644
645 /* Store the value at the lowest bytes in 'data'. */
646 if (is_bigendian) {
647 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100648 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500649 case 4: *(u32 *)data = val; break;
650 case 2: *(u16 *)data = val; break;
651 case 1: *(u8 *)data = val; break;
652 }
653 } else {
654 /* Store LE value into 'data'. */
655 switch (bytes) {
656 case 4: st_le32(data, val); break;
657 case 2: st_le16(data, val); break;
658 case 1: *(u8 *)data = val; break;
659 }
660 }
661
662 return EMULATE_DO_MMIO;
663}
664
665int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
666{
667 int r;
668 sigset_t sigsaved;
669
670 if (vcpu->sigset_active)
671 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
672
673 if (vcpu->mmio_needed) {
674 if (!vcpu->mmio_is_write)
675 kvmppc_complete_mmio_load(vcpu, run);
676 vcpu->mmio_needed = 0;
677 } else if (vcpu->arch.dcr_needed) {
678 if (!vcpu->arch.dcr_is_write)
679 kvmppc_complete_dcr_load(vcpu, run);
680 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100681 } else if (vcpu->arch.osi_needed) {
682 u64 *gprs = run->osi.gprs;
683 int i;
684
685 for (i = 0; i < 32; i++)
686 kvmppc_set_gpr(vcpu, i, gprs[i]);
687 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000688 } else if (vcpu->arch.hcall_needed) {
689 int i;
690
691 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
692 for (i = 0; i < 9; ++i)
693 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
694 vcpu->arch.hcall_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500695 }
696
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000697 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500698
699 if (vcpu->sigset_active)
700 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
701
702 return r;
703}
704
705int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
706{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000707 if (irq->irq == KVM_INTERRUPT_UNSET) {
Alexander Graf18978762010-03-24 21:48:18 +0100708 kvmppc_core_dequeue_external(vcpu, irq);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000709 return 0;
710 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500711
Paul Mackerras19ccb762011-07-23 17:42:46 +1000712 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500713
Scott Wooddfd4d472011-11-17 12:39:59 +0000714 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500715
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500716 return 0;
717}
718
Alexander Graf71fbfd52010-03-24 21:48:29 +0100719static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
720 struct kvm_enable_cap *cap)
721{
722 int r;
723
724 if (cap->flags)
725 return -EINVAL;
726
727 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100728 case KVM_CAP_PPC_OSI:
729 r = 0;
730 vcpu->arch.osi_enabled = true;
731 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200732 case KVM_CAP_PPC_PAPR:
733 r = 0;
734 vcpu->arch.papr_enabled = true;
735 break;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000736#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500737 case KVM_CAP_SW_TLB: {
738 struct kvm_config_tlb cfg;
739 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
740
741 r = -EFAULT;
742 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
743 break;
744
745 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
746 break;
747 }
748#endif
Alexander Graf71fbfd52010-03-24 21:48:29 +0100749 default:
750 r = -EINVAL;
751 break;
752 }
753
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200754 if (!r)
755 r = kvmppc_sanity_check(vcpu);
756
Alexander Graf71fbfd52010-03-24 21:48:29 +0100757 return r;
758}
759
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500760int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
761 struct kvm_mp_state *mp_state)
762{
763 return -EINVAL;
764}
765
766int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
767 struct kvm_mp_state *mp_state)
768{
769 return -EINVAL;
770}
771
772long kvm_arch_vcpu_ioctl(struct file *filp,
773 unsigned int ioctl, unsigned long arg)
774{
775 struct kvm_vcpu *vcpu = filp->private_data;
776 void __user *argp = (void __user *)arg;
777 long r;
778
Avi Kivity93736622010-05-13 12:35:17 +0300779 switch (ioctl) {
780 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500781 struct kvm_interrupt irq;
782 r = -EFAULT;
783 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300784 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500785 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300786 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500787 }
Avi Kivity19483d12010-05-13 12:30:43 +0300788
Alexander Graf71fbfd52010-03-24 21:48:29 +0100789 case KVM_ENABLE_CAP:
790 {
791 struct kvm_enable_cap cap;
792 r = -EFAULT;
793 if (copy_from_user(&cap, argp, sizeof(cap)))
794 goto out;
795 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
796 break;
797 }
Scott Wooddc83b8b2011-08-18 15:25:21 -0500798
Alexander Grafe24ed812011-09-14 10:02:41 +0200799 case KVM_SET_ONE_REG:
800 case KVM_GET_ONE_REG:
801 {
802 struct kvm_one_reg reg;
803 r = -EFAULT;
804 if (copy_from_user(&reg, argp, sizeof(reg)))
805 goto out;
806 if (ioctl == KVM_SET_ONE_REG)
807 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
808 else
809 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
810 break;
811 }
812
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000813#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500814 case KVM_DIRTY_TLB: {
815 struct kvm_dirty_tlb dirty;
816 r = -EFAULT;
817 if (copy_from_user(&dirty, argp, sizeof(dirty)))
818 goto out;
819 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
820 break;
821 }
822#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500823 default:
824 r = -EINVAL;
825 }
826
827out:
828 return r;
829}
830
Carsten Otte5b1c1492012-01-04 10:25:23 +0100831int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
832{
833 return VM_FAULT_SIGBUS;
834}
835
Alexander Graf15711e92010-07-29 14:48:08 +0200836static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
837{
Stuart Yoder784bafa2012-07-03 05:48:51 +0000838 u32 inst_nop = 0x60000000;
839#ifdef CONFIG_KVM_BOOKE_HV
840 u32 inst_sc1 = 0x44000022;
841 pvinfo->hcall[0] = inst_sc1;
842 pvinfo->hcall[1] = inst_nop;
843 pvinfo->hcall[2] = inst_nop;
844 pvinfo->hcall[3] = inst_nop;
845#else
Alexander Graf15711e92010-07-29 14:48:08 +0200846 u32 inst_lis = 0x3c000000;
847 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +0200848 u32 inst_sc = 0x44000002;
849 u32 inst_imm_mask = 0xffff;
850
851 /*
852 * The hypercall to get into KVM from within guest context is as
853 * follows:
854 *
855 * lis r0, r0, KVM_SC_MAGIC_R0@h
856 * ori r0, KVM_SC_MAGIC_R0@l
857 * sc
858 * nop
859 */
860 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
861 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
862 pvinfo->hcall[2] = inst_sc;
863 pvinfo->hcall[3] = inst_nop;
Stuart Yoder784bafa2012-07-03 05:48:51 +0000864#endif
Alexander Graf15711e92010-07-29 14:48:08 +0200865
Liu Yu-B132019202e072012-07-03 05:48:52 +0000866 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
867
Alexander Graf15711e92010-07-29 14:48:08 +0200868 return 0;
869}
870
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500871long kvm_arch_vm_ioctl(struct file *filp,
872 unsigned int ioctl, unsigned long arg)
873{
Alexander Graf15711e92010-07-29 14:48:08 +0200874 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500875 long r;
876
877 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +0200878 case KVM_PPC_GET_PVINFO: {
879 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +0400880 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +0200881 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
882 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
883 r = -EFAULT;
884 goto out;
885 }
886
887 break;
888 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000889#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000890 case KVM_CREATE_SPAPR_TCE: {
891 struct kvm_create_spapr_tce create_tce;
892 struct kvm *kvm = filp->private_data;
893
894 r = -EFAULT;
895 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
896 goto out;
897 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
898 goto out;
899 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000900#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000901
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000902#ifdef CONFIG_KVM_BOOK3S_64_HV
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000903 case KVM_ALLOCATE_RMA: {
904 struct kvm *kvm = filp->private_data;
905 struct kvm_allocate_rma rma;
906
907 r = kvm_vm_ioctl_allocate_rma(kvm, &rma);
908 if (r >= 0 && copy_to_user(argp, &rma, sizeof(rma)))
909 r = -EFAULT;
910 break;
911 }
Paul Mackerras32fad282012-05-04 02:32:53 +0000912
913 case KVM_PPC_ALLOCATE_HTAB: {
914 struct kvm *kvm = filp->private_data;
915 u32 htab_order;
916
917 r = -EFAULT;
918 if (get_user(htab_order, (u32 __user *)argp))
919 break;
920 r = kvmppc_alloc_reset_hpt(kvm, &htab_order);
921 if (r)
922 break;
923 r = -EFAULT;
924 if (put_user(htab_order, (u32 __user *)argp))
925 break;
926 r = 0;
927 break;
928 }
David Gibson54738c02011-06-29 00:22:41 +0000929#endif /* CONFIG_KVM_BOOK3S_64_HV */
930
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000931#ifdef CONFIG_PPC_BOOK3S_64
932 case KVM_PPC_GET_SMMU_INFO: {
933 struct kvm *kvm = filp->private_data;
934 struct kvm_ppc_smmu_info info;
935
936 memset(&info, 0, sizeof(info));
937 r = kvm_vm_ioctl_get_smmu_info(kvm, &info);
938 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
939 r = -EFAULT;
940 break;
941 }
942#endif /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500943 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300944 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500945 }
946
Alexander Graf15711e92010-07-29 14:48:08 +0200947out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500948 return r;
949}
950
Scott Wood043cc4d2011-12-20 15:34:20 +0000951static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
952static unsigned long nr_lpids;
953
954long kvmppc_alloc_lpid(void)
955{
956 long lpid;
957
958 do {
959 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
960 if (lpid >= nr_lpids) {
961 pr_err("%s: No LPIDs free\n", __func__);
962 return -ENOMEM;
963 }
964 } while (test_and_set_bit(lpid, lpid_inuse));
965
966 return lpid;
967}
968
969void kvmppc_claim_lpid(long lpid)
970{
971 set_bit(lpid, lpid_inuse);
972}
973
974void kvmppc_free_lpid(long lpid)
975{
976 clear_bit(lpid, lpid_inuse);
977}
978
979void kvmppc_init_lpid(unsigned long nr_lpids_param)
980{
981 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
982 memset(lpid_inuse, 0, sizeof(lpid_inuse));
983}
984
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500985int kvm_arch_init(void *opaque)
986{
987 return 0;
988}
989
990void kvm_arch_exit(void)
991{
992}