blob: deb0d596d815fca2457c415d774144702869f60e [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
Scott Wood5bd1cf12012-08-22 15:03:50 +000081 vcpu->mode = IN_GUEST_MODE;
82
83 /*
84 * Reading vcpu->requests must happen after setting vcpu->mode,
85 * so we don't miss a request because the requester sees
86 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
87 * before next entering the guest (and thus doesn't IPI).
88 */
Alexander Graf03d25c52012-08-10 12:28:50 +020089 smp_mb();
Scott Wood5bd1cf12012-08-22 15:03:50 +000090
Alexander Graf03d25c52012-08-10 12:28:50 +020091 if (vcpu->requests) {
92 /* Make sure we process requests preemptable */
93 local_irq_enable();
94 trace_kvm_check_requests(vcpu);
Alexander Graf7c973a22012-08-13 12:50:35 +020095 r = kvmppc_core_check_requests(vcpu);
Alexander Graf03d25c52012-08-10 12:28:50 +020096 local_irq_disable();
Alexander Graf7c973a22012-08-13 12:50:35 +020097 if (r > 0)
98 continue;
99 break;
Alexander Graf03d25c52012-08-10 12:28:50 +0200100 }
101
102 if (kvmppc_core_prepare_to_enter(vcpu)) {
103 /* interrupts got enabled in between, so we
104 are back at square 1 */
105 continue;
106 }
107
Alexander Grafbd2be682012-08-13 01:04:19 +0200108#ifdef CONFIG_PPC64
109 /* lazy EE magic */
110 hard_irq_disable();
111 if (lazy_irq_pending()) {
112 /* Got an interrupt in between, try again */
113 local_irq_enable();
114 local_irq_disable();
Alexander Graf3766a4c2012-08-13 01:24:01 +0200115 kvm_guest_exit();
Alexander Grafbd2be682012-08-13 01:04:19 +0200116 continue;
117 }
118
119 trace_hardirqs_on();
120#endif
121
Alexander Graf3766a4c2012-08-13 01:24:01 +0200122 kvm_guest_enter();
Alexander Graf03d25c52012-08-10 12:28:50 +0200123 break;
124 }
125
126 return r;
127}
128#endif /* CONFIG_KVM_BOOK3S_64_HV */
129
Alexander Graf2a342ed2010-07-29 14:47:48 +0200130int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
131{
132 int nr = kvmppc_get_gpr(vcpu, 11);
133 int r;
134 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
135 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
136 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
137 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
138 unsigned long r2 = 0;
139
140 if (!(vcpu->arch.shared->msr & MSR_SF)) {
141 /* 32 bit mode */
142 param1 &= 0xffffffff;
143 param2 &= 0xffffffff;
144 param3 &= 0xffffffff;
145 param4 &= 0xffffffff;
146 }
147
148 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000149 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200150 {
151 vcpu->arch.magic_page_pa = param1;
152 vcpu->arch.magic_page_ea = param2;
153
Scott Woodb5904972011-11-08 18:23:30 -0600154 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200155
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000156 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200157 break;
158 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000159 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
160 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000161#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Scott Wooda4cd8b22011-06-14 18:34:41 -0500162 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +0200163 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
164#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200165
166 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200167 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000168 case EV_HCALL_TOKEN(EV_IDLE):
169 r = EV_SUCCESS;
170 kvm_vcpu_block(vcpu);
171 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
172 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200173 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000174 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200175 break;
176 }
177
Alexander Graf7508e162010-08-03 11:32:56 +0200178 kvmppc_set_gpr(vcpu, 4, r2);
179
Alexander Graf2a342ed2010-07-29 14:47:48 +0200180 return r;
181}
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500182
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200183int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
184{
185 int r = false;
186
187 /* We have to know what CPU to virtualize */
188 if (!vcpu->arch.pvr)
189 goto out;
190
191 /* PAPR only works with book3s_64 */
192 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
193 goto out;
194
195#ifdef CONFIG_KVM_BOOK3S_64_HV
196 /* HV KVM can only do PAPR mode for now */
197 if (!vcpu->arch.papr_enabled)
198 goto out;
199#endif
200
Scott Woodd30f6e42011-12-20 15:34:43 +0000201#ifdef CONFIG_KVM_BOOKE_HV
202 if (!cpu_has_feature(CPU_FTR_EMB_HV))
203 goto out;
204#endif
205
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200206 r = true;
207
208out:
209 vcpu->arch.sane = r;
210 return r ? 0 : -EINVAL;
211}
212
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500213int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
214{
215 enum emulation_result er;
216 int r;
217
218 er = kvmppc_emulate_instruction(run, vcpu);
219 switch (er) {
220 case EMULATE_DONE:
221 /* Future optimization: only reload non-volatiles if they were
222 * actually modified. */
223 r = RESUME_GUEST_NV;
224 break;
225 case EMULATE_DO_MMIO:
226 run->exit_reason = KVM_EXIT_MMIO;
227 /* We must reload nonvolatiles because "update" load/store
228 * instructions modify register state. */
229 /* Future optimization: only reload non-volatiles if they were
230 * actually modified. */
231 r = RESUME_HOST_NV;
232 break;
233 case EMULATE_FAIL:
234 /* XXX Deliver Program interrupt to guest. */
235 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200236 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500237 r = RESUME_HOST;
238 break;
239 default:
240 BUG();
241 }
242
243 return r;
244}
245
Alexander Graf10474ae2009-09-15 11:37:46 +0200246int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500247{
Alexander Graf10474ae2009-09-15 11:37:46 +0200248 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500249}
250
251void kvm_arch_hardware_disable(void *garbage)
252{
253}
254
255int kvm_arch_hardware_setup(void)
256{
257 return 0;
258}
259
260void kvm_arch_hardware_unsetup(void)
261{
262}
263
264void kvm_arch_check_processor_compat(void *rtn)
265{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600266 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500267}
268
Carsten Ottee08b9632012-01-04 10:25:20 +0100269int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500270{
Carsten Ottee08b9632012-01-04 10:25:20 +0100271 if (type)
272 return -EINVAL;
273
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000274 return kvmppc_core_init_vm(kvm);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500275}
276
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100277void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500278{
279 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300280 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500281
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300282 kvm_for_each_vcpu(i, vcpu, kvm)
283 kvm_arch_vcpu_free(vcpu);
284
285 mutex_lock(&kvm->lock);
286 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
287 kvm->vcpus[i] = NULL;
288
289 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000290
291 kvmppc_core_destroy_vm(kvm);
292
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300293 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500294}
295
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800296void kvm_arch_sync_events(struct kvm *kvm)
297{
298}
299
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500300int kvm_dev_ioctl_check_extension(long ext)
301{
302 int r;
303
304 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500305#ifdef CONFIG_BOOKE
306 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000307 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Scott Wood5ce941e2011-04-27 17:24:21 -0500308#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000309 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200310 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200311 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500312#endif
Alexander Graf18978762010-03-24 21:48:18 +0100313 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200314 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100315 case KVM_CAP_ENABLE_CAP:
Alexander Grafe24ed812011-09-14 10:02:41 +0200316 case KVM_CAP_ONE_REG:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000317 r = 1;
318 break;
319#ifndef CONFIG_KVM_BOOK3S_64_HV
320 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100321 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200322 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000323#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500324 case KVM_CAP_SW_TLB:
325#endif
Alexander Grafe15a1132009-11-30 03:02:02 +0000326 r = 1;
327 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200328 case KVM_CAP_COALESCED_MMIO:
329 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
330 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000331#endif
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000332#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000333 case KVM_CAP_SPAPR_TCE:
Paul Mackerras32fad282012-05-04 02:32:53 +0000334 case KVM_CAP_PPC_ALLOC_HTAB:
David Gibson54738c02011-06-29 00:22:41 +0000335 r = 1;
336 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000337#endif /* CONFIG_PPC_BOOK3S_64 */
338#ifdef CONFIG_KVM_BOOK3S_64_HV
Paul Mackerras371fefd2011-06-29 00:23:08 +0000339 case KVM_CAP_PPC_SMT:
340 r = threads_per_core;
341 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000342 case KVM_CAP_PPC_RMA:
343 r = 1;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000344 /* PPC970 requires an RMA */
345 if (cpu_has_feature(CPU_FTR_ARCH_201))
346 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000347 break;
David Gibson54738c02011-06-29 00:22:41 +0000348#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200349 case KVM_CAP_SYNC_MMU:
350#ifdef CONFIG_KVM_BOOK3S_64_HV
351 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
352#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
353 r = 1;
354#else
355 r = 0;
356#endif
357 break;
Matt Evansb5434032011-12-07 16:55:57 +0000358 case KVM_CAP_NR_VCPUS:
359 /*
360 * Recommending a number of CPUs is somewhat arbitrary; we
361 * return the number of present CPUs for -HV (since a host
362 * will have secondary threads "offline"), and for other KVM
363 * implementations just count online CPUs.
364 */
365#ifdef CONFIG_KVM_BOOK3S_64_HV
366 r = num_present_cpus();
367#else
368 r = num_online_cpus();
369#endif
370 break;
371 case KVM_CAP_MAX_VCPUS:
372 r = KVM_MAX_VCPUS;
373 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000374#ifdef CONFIG_PPC_BOOK3S_64
375 case KVM_CAP_PPC_GET_SMMU_INFO:
376 r = 1;
377 break;
378#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500379 default:
380 r = 0;
381 break;
382 }
383 return r;
384
385}
386
387long kvm_arch_dev_ioctl(struct file *filp,
388 unsigned int ioctl, unsigned long arg)
389{
390 return -EINVAL;
391}
392
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900393void kvm_arch_free_memslot(struct kvm_memory_slot *free,
394 struct kvm_memory_slot *dont)
395{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000396 kvmppc_core_free_memslot(free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900397}
398
399int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages)
400{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000401 return kvmppc_core_create_memslot(slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900402}
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 Mackerrasa66b48c2012-09-11 13:27:46 +0000410 return kvmppc_core_prepare_memory_region(kvm, memslot, 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 Mackerrasdfe49db2012-09-11 13:28:18 +0000418 kvmppc_core_commit_memory_region(kvm, mem, old);
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{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000428 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300429}
430
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500431struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
432{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600433 struct kvm_vcpu *vcpu;
434 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000435 if (!IS_ERR(vcpu)) {
436 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800437 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000438 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600439 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500440}
441
442void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
443{
Alexander Grafa5954052010-02-22 16:52:14 +0100444 /* Make sure we're not using the vcpu anymore */
445 hrtimer_cancel(&vcpu->arch.dec_timer);
446 tasklet_kill(&vcpu->arch.tasklet);
447
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600448 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600449 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500450}
451
452void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
453{
454 kvm_arch_vcpu_free(vcpu);
455}
456
457int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
458{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600459 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500460}
461
Alexander Graf544c6762009-11-02 12:02:31 +0000462/*
463 * low level hrtimer wake routine. Because this runs in hardirq context
464 * we schedule a tasklet to do the real work.
465 */
466enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
467{
468 struct kvm_vcpu *vcpu;
469
470 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
471 tasklet_schedule(&vcpu->arch.tasklet);
472
473 return HRTIMER_NORESTART;
474}
475
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500476int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
477{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000478 int ret;
479
Alexander Graf544c6762009-11-02 12:02:31 +0000480 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
481 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
482 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000483 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500484
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530485#ifdef CONFIG_KVM_EXIT_TIMING
486 mutex_init(&vcpu->arch.exit_timing_lock);
487#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000488 ret = kvmppc_subarch_vcpu_init(vcpu);
489 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500490}
491
492void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
493{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600494 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000495 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500496}
497
498void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
499{
Scott Woodeab17672011-04-27 17:24:10 -0500500#ifdef CONFIG_BOOKE
501 /*
502 * vrsave (formerly usprg0) isn't used by Linux, but may
503 * be used by the guest.
504 *
505 * On non-booke this is associated with Altivec and
506 * is handled by code in book3s.c.
507 */
508 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
509#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600510 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500511}
512
513void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
514{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600515 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500516#ifdef CONFIG_BOOKE
517 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
518#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500519}
520
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100521int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600522 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500523{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600524 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500525}
526
527static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
528 struct kvm_run *run)
529{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100530 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500531}
532
533static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
534 struct kvm_run *run)
535{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000536 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500537
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100538 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500539 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
540 return;
541 }
542
543 if (vcpu->arch.mmio_is_bigendian) {
544 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100545 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100546 case 4: gpr = *(u32 *)run->mmio.data; break;
547 case 2: gpr = *(u16 *)run->mmio.data; break;
548 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500549 }
550 } else {
551 /* Convert BE data from userland back to LE. */
552 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100553 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
554 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
555 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500556 }
557 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100558
Alexander Graf3587d532010-02-19 11:00:30 +0100559 if (vcpu->arch.mmio_sign_extend) {
560 switch (run->mmio.len) {
561#ifdef CONFIG_PPC64
562 case 4:
563 gpr = (s64)(s32)gpr;
564 break;
565#endif
566 case 2:
567 gpr = (s64)(s16)gpr;
568 break;
569 case 1:
570 gpr = (s64)(s8)gpr;
571 break;
572 }
573 }
574
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100575 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100576
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100577 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
578 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +0100579 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
580 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100581 case KVM_MMIO_REG_FPR:
582 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100583 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200584#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100585 case KVM_MMIO_REG_QPR:
586 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100587 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100588 case KVM_MMIO_REG_FQPR:
589 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
590 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100591 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200592#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100593 default:
594 BUG();
595 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500596}
597
598int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
599 unsigned int rt, unsigned int bytes, int is_bigendian)
600{
601 if (bytes > sizeof(run->mmio.data)) {
602 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
603 run->mmio.len);
604 }
605
606 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
607 run->mmio.len = bytes;
608 run->mmio.is_write = 0;
609
610 vcpu->arch.io_gpr = rt;
611 vcpu->arch.mmio_is_bigendian = is_bigendian;
612 vcpu->mmio_needed = 1;
613 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100614 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500615
616 return EMULATE_DO_MMIO;
617}
618
Alexander Graf3587d532010-02-19 11:00:30 +0100619/* Same as above, but sign extends */
620int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
621 unsigned int rt, unsigned int bytes, int is_bigendian)
622{
623 int r;
624
625 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
626 vcpu->arch.mmio_sign_extend = 1;
627
628 return r;
629}
630
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500631int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100632 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500633{
634 void *data = run->mmio.data;
635
636 if (bytes > sizeof(run->mmio.data)) {
637 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
638 run->mmio.len);
639 }
640
641 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
642 run->mmio.len = bytes;
643 run->mmio.is_write = 1;
644 vcpu->mmio_needed = 1;
645 vcpu->mmio_is_write = 1;
646
647 /* Store the value at the lowest bytes in 'data'. */
648 if (is_bigendian) {
649 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100650 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500651 case 4: *(u32 *)data = val; break;
652 case 2: *(u16 *)data = val; break;
653 case 1: *(u8 *)data = val; break;
654 }
655 } else {
656 /* Store LE value into 'data'. */
657 switch (bytes) {
658 case 4: st_le32(data, val); break;
659 case 2: st_le16(data, val); break;
660 case 1: *(u8 *)data = val; break;
661 }
662 }
663
664 return EMULATE_DO_MMIO;
665}
666
667int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
668{
669 int r;
670 sigset_t sigsaved;
671
672 if (vcpu->sigset_active)
673 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
674
675 if (vcpu->mmio_needed) {
676 if (!vcpu->mmio_is_write)
677 kvmppc_complete_mmio_load(vcpu, run);
678 vcpu->mmio_needed = 0;
679 } else if (vcpu->arch.dcr_needed) {
680 if (!vcpu->arch.dcr_is_write)
681 kvmppc_complete_dcr_load(vcpu, run);
682 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100683 } else if (vcpu->arch.osi_needed) {
684 u64 *gprs = run->osi.gprs;
685 int i;
686
687 for (i = 0; i < 32; i++)
688 kvmppc_set_gpr(vcpu, i, gprs[i]);
689 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000690 } else if (vcpu->arch.hcall_needed) {
691 int i;
692
693 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
694 for (i = 0; i < 9; ++i)
695 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
696 vcpu->arch.hcall_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500697 }
698
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000699 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500700
701 if (vcpu->sigset_active)
702 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
703
704 return r;
705}
706
707int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
708{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000709 if (irq->irq == KVM_INTERRUPT_UNSET) {
Alexander Graf18978762010-03-24 21:48:18 +0100710 kvmppc_core_dequeue_external(vcpu, irq);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000711 return 0;
712 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500713
Paul Mackerras19ccb762011-07-23 17:42:46 +1000714 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500715
Scott Wooddfd4d472011-11-17 12:39:59 +0000716 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500717
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500718 return 0;
719}
720
Alexander Graf71fbfd52010-03-24 21:48:29 +0100721static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
722 struct kvm_enable_cap *cap)
723{
724 int r;
725
726 if (cap->flags)
727 return -EINVAL;
728
729 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100730 case KVM_CAP_PPC_OSI:
731 r = 0;
732 vcpu->arch.osi_enabled = true;
733 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200734 case KVM_CAP_PPC_PAPR:
735 r = 0;
736 vcpu->arch.papr_enabled = true;
737 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000738#ifdef CONFIG_BOOKE
739 case KVM_CAP_PPC_BOOKE_WATCHDOG:
740 r = 0;
741 vcpu->arch.watchdog_enabled = true;
742 break;
743#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000744#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500745 case KVM_CAP_SW_TLB: {
746 struct kvm_config_tlb cfg;
747 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
748
749 r = -EFAULT;
750 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
751 break;
752
753 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
754 break;
755 }
756#endif
Alexander Graf71fbfd52010-03-24 21:48:29 +0100757 default:
758 r = -EINVAL;
759 break;
760 }
761
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200762 if (!r)
763 r = kvmppc_sanity_check(vcpu);
764
Alexander Graf71fbfd52010-03-24 21:48:29 +0100765 return r;
766}
767
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500768int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
769 struct kvm_mp_state *mp_state)
770{
771 return -EINVAL;
772}
773
774int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
775 struct kvm_mp_state *mp_state)
776{
777 return -EINVAL;
778}
779
780long kvm_arch_vcpu_ioctl(struct file *filp,
781 unsigned int ioctl, unsigned long arg)
782{
783 struct kvm_vcpu *vcpu = filp->private_data;
784 void __user *argp = (void __user *)arg;
785 long r;
786
Avi Kivity93736622010-05-13 12:35:17 +0300787 switch (ioctl) {
788 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500789 struct kvm_interrupt irq;
790 r = -EFAULT;
791 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300792 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500793 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300794 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500795 }
Avi Kivity19483d12010-05-13 12:30:43 +0300796
Alexander Graf71fbfd52010-03-24 21:48:29 +0100797 case KVM_ENABLE_CAP:
798 {
799 struct kvm_enable_cap cap;
800 r = -EFAULT;
801 if (copy_from_user(&cap, argp, sizeof(cap)))
802 goto out;
803 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
804 break;
805 }
Scott Wooddc83b8b2011-08-18 15:25:21 -0500806
Alexander Grafe24ed812011-09-14 10:02:41 +0200807 case KVM_SET_ONE_REG:
808 case KVM_GET_ONE_REG:
809 {
810 struct kvm_one_reg reg;
811 r = -EFAULT;
812 if (copy_from_user(&reg, argp, sizeof(reg)))
813 goto out;
814 if (ioctl == KVM_SET_ONE_REG)
815 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
816 else
817 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
818 break;
819 }
820
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000821#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500822 case KVM_DIRTY_TLB: {
823 struct kvm_dirty_tlb dirty;
824 r = -EFAULT;
825 if (copy_from_user(&dirty, argp, sizeof(dirty)))
826 goto out;
827 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
828 break;
829 }
830#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500831 default:
832 r = -EINVAL;
833 }
834
835out:
836 return r;
837}
838
Carsten Otte5b1c1492012-01-04 10:25:23 +0100839int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
840{
841 return VM_FAULT_SIGBUS;
842}
843
Alexander Graf15711e92010-07-29 14:48:08 +0200844static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
845{
Stuart Yoder784bafa2012-07-03 05:48:51 +0000846 u32 inst_nop = 0x60000000;
847#ifdef CONFIG_KVM_BOOKE_HV
848 u32 inst_sc1 = 0x44000022;
849 pvinfo->hcall[0] = inst_sc1;
850 pvinfo->hcall[1] = inst_nop;
851 pvinfo->hcall[2] = inst_nop;
852 pvinfo->hcall[3] = inst_nop;
853#else
Alexander Graf15711e92010-07-29 14:48:08 +0200854 u32 inst_lis = 0x3c000000;
855 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +0200856 u32 inst_sc = 0x44000002;
857 u32 inst_imm_mask = 0xffff;
858
859 /*
860 * The hypercall to get into KVM from within guest context is as
861 * follows:
862 *
863 * lis r0, r0, KVM_SC_MAGIC_R0@h
864 * ori r0, KVM_SC_MAGIC_R0@l
865 * sc
866 * nop
867 */
868 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
869 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
870 pvinfo->hcall[2] = inst_sc;
871 pvinfo->hcall[3] = inst_nop;
Stuart Yoder784bafa2012-07-03 05:48:51 +0000872#endif
Alexander Graf15711e92010-07-29 14:48:08 +0200873
Liu Yu-B132019202e072012-07-03 05:48:52 +0000874 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
875
Alexander Graf15711e92010-07-29 14:48:08 +0200876 return 0;
877}
878
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500879long kvm_arch_vm_ioctl(struct file *filp,
880 unsigned int ioctl, unsigned long arg)
881{
Alexander Graf15711e92010-07-29 14:48:08 +0200882 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500883 long r;
884
885 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +0200886 case KVM_PPC_GET_PVINFO: {
887 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +0400888 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +0200889 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
890 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
891 r = -EFAULT;
892 goto out;
893 }
894
895 break;
896 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000897#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000898 case KVM_CREATE_SPAPR_TCE: {
899 struct kvm_create_spapr_tce create_tce;
900 struct kvm *kvm = filp->private_data;
901
902 r = -EFAULT;
903 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
904 goto out;
905 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
906 goto out;
907 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000908#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000909
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000910#ifdef CONFIG_KVM_BOOK3S_64_HV
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000911 case KVM_ALLOCATE_RMA: {
912 struct kvm *kvm = filp->private_data;
913 struct kvm_allocate_rma rma;
914
915 r = kvm_vm_ioctl_allocate_rma(kvm, &rma);
916 if (r >= 0 && copy_to_user(argp, &rma, sizeof(rma)))
917 r = -EFAULT;
918 break;
919 }
Paul Mackerras32fad282012-05-04 02:32:53 +0000920
921 case KVM_PPC_ALLOCATE_HTAB: {
922 struct kvm *kvm = filp->private_data;
923 u32 htab_order;
924
925 r = -EFAULT;
926 if (get_user(htab_order, (u32 __user *)argp))
927 break;
928 r = kvmppc_alloc_reset_hpt(kvm, &htab_order);
929 if (r)
930 break;
931 r = -EFAULT;
932 if (put_user(htab_order, (u32 __user *)argp))
933 break;
934 r = 0;
935 break;
936 }
David Gibson54738c02011-06-29 00:22:41 +0000937#endif /* CONFIG_KVM_BOOK3S_64_HV */
938
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000939#ifdef CONFIG_PPC_BOOK3S_64
940 case KVM_PPC_GET_SMMU_INFO: {
941 struct kvm *kvm = filp->private_data;
942 struct kvm_ppc_smmu_info info;
943
944 memset(&info, 0, sizeof(info));
945 r = kvm_vm_ioctl_get_smmu_info(kvm, &info);
946 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
947 r = -EFAULT;
948 break;
949 }
950#endif /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500951 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300952 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500953 }
954
Alexander Graf15711e92010-07-29 14:48:08 +0200955out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500956 return r;
957}
958
Scott Wood043cc4d2011-12-20 15:34:20 +0000959static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
960static unsigned long nr_lpids;
961
962long kvmppc_alloc_lpid(void)
963{
964 long lpid;
965
966 do {
967 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
968 if (lpid >= nr_lpids) {
969 pr_err("%s: No LPIDs free\n", __func__);
970 return -ENOMEM;
971 }
972 } while (test_and_set_bit(lpid, lpid_inuse));
973
974 return lpid;
975}
976
977void kvmppc_claim_lpid(long lpid)
978{
979 set_bit(lpid, lpid_inuse);
980}
981
982void kvmppc_free_lpid(long lpid)
983{
984 clear_bit(lpid, lpid_inuse);
985}
986
987void kvmppc_init_lpid(unsigned long nr_lpids_param)
988{
989 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
990 memset(lpid_inuse, 0, sizeof(lpid_inuse));
991}
992
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500993int kvm_arch_init(void *opaque)
994{
995 return 0;
996}
997
998void kvm_arch_exit(void)
999{
1000}