blob: d4fd443ae7bdc4bc1d5bc20588e8fbe6410e5c89 [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>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050029#include <asm/cputable.h>
30#include <asm/uaccess.h>
31#include <asm/kvm_ppc.h>
Hollis Blanchard83aae4a2008-07-25 13:54:52 -050032#include <asm/tlbflush.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000033#include <asm/cputhreads.h>
Alexander Grafbd2be682012-08-13 01:04:19 +020034#include <asm/irqflags.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060035#include "timing.h"
Alexander Graf5efdb4b2013-04-17 00:37:57 +020036#include "irq.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110037#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050038
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030039#define CREATE_TRACE_POINTS
40#include "trace.h"
41
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050042int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
43{
Liu Yu-B132019202e072012-07-03 05:48:52 +000044 return !!(v->arch.pending_exceptions) ||
Scott Wooddfd4d472011-11-17 12:39:59 +000045 v->requests;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050046}
47
Christoffer Dallb6d33832012-03-08 16:44:24 -050048int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
49{
50 return 1;
51}
52
Alexander Graf03d25c52012-08-10 12:28:50 +020053#ifndef CONFIG_KVM_BOOK3S_64_HV
54/*
55 * Common checks before entering the guest world. Call with interrupts
56 * disabled.
57 *
Alexander Graf7ee78852012-08-13 12:44:41 +020058 * returns:
59 *
60 * == 1 if we're ready to go into guest state
61 * <= 0 if we need to go back to the host with return value
Alexander Graf03d25c52012-08-10 12:28:50 +020062 */
63int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
64{
Alexander Graf7ee78852012-08-13 12:44:41 +020065 int r = 1;
Alexander Graf03d25c52012-08-10 12:28:50 +020066
67 WARN_ON_ONCE(!irqs_disabled());
68 while (true) {
69 if (need_resched()) {
70 local_irq_enable();
71 cond_resched();
72 local_irq_disable();
73 continue;
74 }
75
76 if (signal_pending(current)) {
Alexander Graf7ee78852012-08-13 12:44:41 +020077 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
78 vcpu->run->exit_reason = KVM_EXIT_INTR;
79 r = -EINTR;
Alexander Graf03d25c52012-08-10 12:28:50 +020080 break;
81 }
82
Scott Wood5bd1cf12012-08-22 15:03:50 +000083 vcpu->mode = IN_GUEST_MODE;
84
85 /*
86 * Reading vcpu->requests must happen after setting vcpu->mode,
87 * so we don't miss a request because the requester sees
88 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
89 * before next entering the guest (and thus doesn't IPI).
90 */
Alexander Graf03d25c52012-08-10 12:28:50 +020091 smp_mb();
Scott Wood5bd1cf12012-08-22 15:03:50 +000092
Alexander Graf03d25c52012-08-10 12:28:50 +020093 if (vcpu->requests) {
94 /* Make sure we process requests preemptable */
95 local_irq_enable();
96 trace_kvm_check_requests(vcpu);
Alexander Graf7c973a22012-08-13 12:50:35 +020097 r = kvmppc_core_check_requests(vcpu);
Alexander Graf03d25c52012-08-10 12:28:50 +020098 local_irq_disable();
Alexander Graf7c973a22012-08-13 12:50:35 +020099 if (r > 0)
100 continue;
101 break;
Alexander Graf03d25c52012-08-10 12:28:50 +0200102 }
103
104 if (kvmppc_core_prepare_to_enter(vcpu)) {
105 /* interrupts got enabled in between, so we
106 are back at square 1 */
107 continue;
108 }
109
Alexander Grafbd2be682012-08-13 01:04:19 +0200110#ifdef CONFIG_PPC64
111 /* lazy EE magic */
112 hard_irq_disable();
113 if (lazy_irq_pending()) {
114 /* Got an interrupt in between, try again */
115 local_irq_enable();
116 local_irq_disable();
Alexander Graf3766a4c2012-08-13 01:24:01 +0200117 kvm_guest_exit();
Alexander Grafbd2be682012-08-13 01:04:19 +0200118 continue;
119 }
120
121 trace_hardirqs_on();
122#endif
123
Alexander Graf3766a4c2012-08-13 01:24:01 +0200124 kvm_guest_enter();
Alexander Graf03d25c52012-08-10 12:28:50 +0200125 break;
126 }
127
128 return r;
129}
130#endif /* CONFIG_KVM_BOOK3S_64_HV */
131
Alexander Graf2a342ed2010-07-29 14:47:48 +0200132int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
133{
134 int nr = kvmppc_get_gpr(vcpu, 11);
135 int r;
136 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
137 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
138 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
139 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
140 unsigned long r2 = 0;
141
142 if (!(vcpu->arch.shared->msr & MSR_SF)) {
143 /* 32 bit mode */
144 param1 &= 0xffffffff;
145 param2 &= 0xffffffff;
146 param3 &= 0xffffffff;
147 param4 &= 0xffffffff;
148 }
149
150 switch (nr) {
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000151 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
Alexander Graf5fc87402010-07-29 14:47:55 +0200152 {
153 vcpu->arch.magic_page_pa = param1;
154 vcpu->arch.magic_page_ea = param2;
155
Scott Woodb5904972011-11-08 18:23:30 -0600156 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +0200157
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000158 r = EV_SUCCESS;
Alexander Graf5fc87402010-07-29 14:47:55 +0200159 break;
160 }
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000161 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
162 r = EV_SUCCESS;
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000163#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
Scott Wooda4cd8b22011-06-14 18:34:41 -0500164 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +0200165 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
166#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +0200167
168 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +0200169 break;
Liu Yu-B132019202e072012-07-03 05:48:52 +0000170 case EV_HCALL_TOKEN(EV_IDLE):
171 r = EV_SUCCESS;
172 kvm_vcpu_block(vcpu);
173 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
174 break;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200175 default:
Stuart Yoderfdcf8bd2012-07-03 05:48:50 +0000176 r = EV_UNIMPLEMENTED;
Alexander Graf2a342ed2010-07-29 14:47:48 +0200177 break;
178 }
179
Alexander Graf7508e162010-08-03 11:32:56 +0200180 kvmppc_set_gpr(vcpu, 4, r2);
181
Alexander Graf2a342ed2010-07-29 14:47:48 +0200182 return r;
183}
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500184
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200185int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
186{
187 int r = false;
188
189 /* We have to know what CPU to virtualize */
190 if (!vcpu->arch.pvr)
191 goto out;
192
193 /* PAPR only works with book3s_64 */
194 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
195 goto out;
196
197#ifdef CONFIG_KVM_BOOK3S_64_HV
198 /* HV KVM can only do PAPR mode for now */
199 if (!vcpu->arch.papr_enabled)
200 goto out;
201#endif
202
Scott Woodd30f6e42011-12-20 15:34:43 +0000203#ifdef CONFIG_KVM_BOOKE_HV
204 if (!cpu_has_feature(CPU_FTR_EMB_HV))
205 goto out;
206#endif
207
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200208 r = true;
209
210out:
211 vcpu->arch.sane = r;
212 return r ? 0 : -EINVAL;
213}
214
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500215int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
216{
217 enum emulation_result er;
218 int r;
219
220 er = kvmppc_emulate_instruction(run, vcpu);
221 switch (er) {
222 case EMULATE_DONE:
223 /* Future optimization: only reload non-volatiles if they were
224 * actually modified. */
225 r = RESUME_GUEST_NV;
226 break;
227 case EMULATE_DO_MMIO:
228 run->exit_reason = KVM_EXIT_MMIO;
229 /* We must reload nonvolatiles because "update" load/store
230 * instructions modify register state. */
231 /* Future optimization: only reload non-volatiles if they were
232 * actually modified. */
233 r = RESUME_HOST_NV;
234 break;
235 case EMULATE_FAIL:
236 /* XXX Deliver Program interrupt to guest. */
237 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200238 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500239 r = RESUME_HOST;
240 break;
241 default:
Alexander Graf5a331692012-12-14 23:46:03 +0100242 WARN_ON(1);
243 r = RESUME_GUEST;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500244 }
245
246 return r;
247}
248
Alexander Graf10474ae2009-09-15 11:37:46 +0200249int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500250{
Alexander Graf10474ae2009-09-15 11:37:46 +0200251 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500252}
253
254void kvm_arch_hardware_disable(void *garbage)
255{
256}
257
258int kvm_arch_hardware_setup(void)
259{
260 return 0;
261}
262
263void kvm_arch_hardware_unsetup(void)
264{
265}
266
267void kvm_arch_check_processor_compat(void *rtn)
268{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600269 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500270}
271
Carsten Ottee08b9632012-01-04 10:25:20 +0100272int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500273{
Carsten Ottee08b9632012-01-04 10:25:20 +0100274 if (type)
275 return -EINVAL;
276
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000277 return kvmppc_core_init_vm(kvm);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500278}
279
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100280void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500281{
282 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300283 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500284
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300285 kvm_for_each_vcpu(i, vcpu, kvm)
286 kvm_arch_vcpu_free(vcpu);
287
288 mutex_lock(&kvm->lock);
289 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
290 kvm->vcpus[i] = NULL;
291
292 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000293
294 kvmppc_core_destroy_vm(kvm);
295
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300296 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500297}
298
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800299void kvm_arch_sync_events(struct kvm *kvm)
300{
301}
302
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500303int kvm_dev_ioctl_check_extension(long ext)
304{
305 int r;
306
307 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500308#ifdef CONFIG_BOOKE
309 case KVM_CAP_PPC_BOOKE_SREGS:
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000310 case KVM_CAP_PPC_BOOKE_WATCHDOG:
Alexander Graf1c810632013-01-04 18:12:48 +0100311 case KVM_CAP_PPC_EPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500312#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000313 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200314 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200315 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500316#endif
Alexander Graf18978762010-03-24 21:48:18 +0100317 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200318 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100319 case KVM_CAP_ENABLE_CAP:
Alexander Grafe24ed812011-09-14 10:02:41 +0200320 case KVM_CAP_ONE_REG:
Alexander Graf0e673fb2012-10-09 00:06:20 +0200321 case KVM_CAP_IOEVENTFD:
Scott Wood5df554a2013-04-12 14:08:46 +0000322 case KVM_CAP_DEVICE_CTRL:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000323 r = 1;
324 break;
325#ifndef CONFIG_KVM_BOOK3S_64_HV
326 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100327 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200328 case KVM_CAP_PPC_GET_PVINFO:
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000329#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500330 case KVM_CAP_SW_TLB:
331#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +0000332#ifdef CONFIG_KVM_MPIC
333 case KVM_CAP_IRQ_MPIC:
334#endif
Alexander Grafe15a1132009-11-30 03:02:02 +0000335 r = 1;
336 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200337 case KVM_CAP_COALESCED_MMIO:
338 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
339 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000340#endif
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000341#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000342 case KVM_CAP_SPAPR_TCE:
Paul Mackerras32fad282012-05-04 02:32:53 +0000343 case KVM_CAP_PPC_ALLOC_HTAB:
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000344 case KVM_CAP_PPC_RTAS:
David Gibson54738c02011-06-29 00:22:41 +0000345 r = 1;
346 break;
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000347#endif /* CONFIG_PPC_BOOK3S_64 */
348#ifdef CONFIG_KVM_BOOK3S_64_HV
Paul Mackerras371fefd2011-06-29 00:23:08 +0000349 case KVM_CAP_PPC_SMT:
350 r = threads_per_core;
351 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000352 case KVM_CAP_PPC_RMA:
353 r = 1;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000354 /* PPC970 requires an RMA */
355 if (cpu_has_feature(CPU_FTR_ARCH_201))
356 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000357 break;
David Gibson54738c02011-06-29 00:22:41 +0000358#endif
Alexander Graff4800b12012-08-07 10:24:14 +0200359 case KVM_CAP_SYNC_MMU:
360#ifdef CONFIG_KVM_BOOK3S_64_HV
361 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
362#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
363 r = 1;
364#else
365 r = 0;
Paul Mackerrasa2932922012-11-19 22:57:20 +0000366 break;
367#endif
368#ifdef CONFIG_KVM_BOOK3S_64_HV
369 case KVM_CAP_PPC_HTAB_FD:
370 r = 1;
371 break;
Alexander Graff4800b12012-08-07 10:24:14 +0200372#endif
373 break;
Matt Evansb5434032011-12-07 16:55:57 +0000374 case KVM_CAP_NR_VCPUS:
375 /*
376 * Recommending a number of CPUs is somewhat arbitrary; we
377 * return the number of present CPUs for -HV (since a host
378 * will have secondary threads "offline"), and for other KVM
379 * implementations just count online CPUs.
380 */
381#ifdef CONFIG_KVM_BOOK3S_64_HV
382 r = num_present_cpus();
383#else
384 r = num_online_cpus();
385#endif
386 break;
387 case KVM_CAP_MAX_VCPUS:
388 r = KVM_MAX_VCPUS;
389 break;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +0000390#ifdef CONFIG_PPC_BOOK3S_64
391 case KVM_CAP_PPC_GET_SMMU_INFO:
392 r = 1;
393 break;
394#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500395 default:
396 r = 0;
397 break;
398 }
399 return r;
400
401}
402
403long kvm_arch_dev_ioctl(struct file *filp,
404 unsigned int ioctl, unsigned long arg)
405{
406 return -EINVAL;
407}
408
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900409void kvm_arch_free_memslot(struct kvm_memory_slot *free,
410 struct kvm_memory_slot *dont)
411{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000412 kvmppc_core_free_memslot(free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900413}
414
415int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages)
416{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000417 return kvmppc_core_create_memslot(slot, npages);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900418}
419
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200420int kvm_arch_prepare_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900421 struct kvm_memory_slot *memslot,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900422 struct kvm_userspace_memory_region *mem,
423 enum kvm_mr_change change)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500424{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +0000425 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500426}
427
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200428void kvm_arch_commit_memory_region(struct kvm *kvm,
Takuya Yoshikawa462fce42013-02-27 19:41:56 +0900429 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900430 const struct kvm_memory_slot *old,
431 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200432{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000433 kvmppc_core_commit_memory_region(kvm, mem, old);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200434}
435
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300436void kvm_arch_flush_shadow_all(struct kvm *kvm)
437{
438}
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200439
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300440void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
441 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300442{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000443 kvmppc_core_flush_memslot(kvm, slot);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300444}
445
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500446struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
447{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600448 struct kvm_vcpu *vcpu;
449 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000450 if (!IS_ERR(vcpu)) {
451 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800452 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000453 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600454 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500455}
456
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200457int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
458{
459 return 0;
460}
461
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500462void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
463{
Alexander Grafa5954052010-02-22 16:52:14 +0100464 /* Make sure we're not using the vcpu anymore */
465 hrtimer_cancel(&vcpu->arch.dec_timer);
466 tasklet_kill(&vcpu->arch.tasklet);
467
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600468 kvmppc_remove_vcpu_debugfs(vcpu);
Scott Woodeb1e4f42013-04-12 14:08:47 +0000469
470 switch (vcpu->arch.irq_type) {
471 case KVMPPC_IRQ_MPIC:
472 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
473 break;
474 }
475
Hollis Blancharddb93f572008-11-05 09:36:18 -0600476 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500477}
478
479void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
480{
481 kvm_arch_vcpu_free(vcpu);
482}
483
484int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
485{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600486 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500487}
488
Alexander Graf544c6762009-11-02 12:02:31 +0000489/*
490 * low level hrtimer wake routine. Because this runs in hardirq context
491 * we schedule a tasklet to do the real work.
492 */
493enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
494{
495 struct kvm_vcpu *vcpu;
496
497 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
498 tasklet_schedule(&vcpu->arch.tasklet);
499
500 return HRTIMER_NORESTART;
501}
502
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500503int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
504{
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000505 int ret;
506
Alexander Graf544c6762009-11-02 12:02:31 +0000507 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
508 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
509 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000510 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500511
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530512#ifdef CONFIG_KVM_EXIT_TIMING
513 mutex_init(&vcpu->arch.exit_timing_lock);
514#endif
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000515 ret = kvmppc_subarch_vcpu_init(vcpu);
516 return ret;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500517}
518
519void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
520{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600521 kvmppc_mmu_destroy(vcpu);
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000522 kvmppc_subarch_vcpu_uninit(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500523}
524
525void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
526{
Scott Woodeab17672011-04-27 17:24:10 -0500527#ifdef CONFIG_BOOKE
528 /*
529 * vrsave (formerly usprg0) isn't used by Linux, but may
530 * be used by the guest.
531 *
532 * On non-booke this is associated with Altivec and
533 * is handled by code in book3s.c.
534 */
535 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
536#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600537 kvmppc_core_vcpu_load(vcpu, cpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500538}
539
540void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
541{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600542 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500543#ifdef CONFIG_BOOKE
544 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
545#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500546}
547
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500548static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
549 struct kvm_run *run)
550{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100551 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500552}
553
554static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
555 struct kvm_run *run)
556{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000557 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500558
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100559 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500560 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
561 return;
562 }
563
564 if (vcpu->arch.mmio_is_bigendian) {
565 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100566 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100567 case 4: gpr = *(u32 *)run->mmio.data; break;
568 case 2: gpr = *(u16 *)run->mmio.data; break;
569 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500570 }
571 } else {
572 /* Convert BE data from userland back to LE. */
573 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100574 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
575 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
576 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500577 }
578 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100579
Alexander Graf3587d532010-02-19 11:00:30 +0100580 if (vcpu->arch.mmio_sign_extend) {
581 switch (run->mmio.len) {
582#ifdef CONFIG_PPC64
583 case 4:
584 gpr = (s64)(s32)gpr;
585 break;
586#endif
587 case 2:
588 gpr = (s64)(s16)gpr;
589 break;
590 case 1:
591 gpr = (s64)(s8)gpr;
592 break;
593 }
594 }
595
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100596 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100597
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100598 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
599 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +0100600 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
601 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100602 case KVM_MMIO_REG_FPR:
603 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100604 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200605#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100606 case KVM_MMIO_REG_QPR:
607 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100608 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100609 case KVM_MMIO_REG_FQPR:
610 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
611 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100612 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200613#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100614 default:
615 BUG();
616 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500617}
618
619int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
620 unsigned int rt, unsigned int bytes, int is_bigendian)
621{
622 if (bytes > sizeof(run->mmio.data)) {
623 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
624 run->mmio.len);
625 }
626
627 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
628 run->mmio.len = bytes;
629 run->mmio.is_write = 0;
630
631 vcpu->arch.io_gpr = rt;
632 vcpu->arch.mmio_is_bigendian = is_bigendian;
633 vcpu->mmio_needed = 1;
634 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100635 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500636
Alexander Graf0e673fb2012-10-09 00:06:20 +0200637 if (!kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
638 bytes, &run->mmio.data)) {
639 kvmppc_complete_mmio_load(vcpu, run);
640 vcpu->mmio_needed = 0;
641 return EMULATE_DONE;
642 }
643
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500644 return EMULATE_DO_MMIO;
645}
646
Alexander Graf3587d532010-02-19 11:00:30 +0100647/* Same as above, but sign extends */
648int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
649 unsigned int rt, unsigned int bytes, int is_bigendian)
650{
651 int r;
652
Alexander Graf3587d532010-02-19 11:00:30 +0100653 vcpu->arch.mmio_sign_extend = 1;
Alexander Graf0e673fb2012-10-09 00:06:20 +0200654 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
Alexander Graf3587d532010-02-19 11:00:30 +0100655
656 return r;
657}
658
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500659int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100660 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500661{
662 void *data = run->mmio.data;
663
664 if (bytes > sizeof(run->mmio.data)) {
665 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
666 run->mmio.len);
667 }
668
669 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
670 run->mmio.len = bytes;
671 run->mmio.is_write = 1;
672 vcpu->mmio_needed = 1;
673 vcpu->mmio_is_write = 1;
674
675 /* Store the value at the lowest bytes in 'data'. */
676 if (is_bigendian) {
677 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100678 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500679 case 4: *(u32 *)data = val; break;
680 case 2: *(u16 *)data = val; break;
681 case 1: *(u8 *)data = val; break;
682 }
683 } else {
684 /* Store LE value into 'data'. */
685 switch (bytes) {
686 case 4: st_le32(data, val); break;
687 case 2: st_le16(data, val); break;
688 case 1: *(u8 *)data = val; break;
689 }
690 }
691
Alexander Graf0e673fb2012-10-09 00:06:20 +0200692 if (!kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
693 bytes, &run->mmio.data)) {
Alexander Graf0e673fb2012-10-09 00:06:20 +0200694 vcpu->mmio_needed = 0;
695 return EMULATE_DONE;
696 }
697
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500698 return EMULATE_DO_MMIO;
699}
700
701int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
702{
703 int r;
704 sigset_t sigsaved;
705
706 if (vcpu->sigset_active)
707 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
708
709 if (vcpu->mmio_needed) {
710 if (!vcpu->mmio_is_write)
711 kvmppc_complete_mmio_load(vcpu, run);
712 vcpu->mmio_needed = 0;
713 } else if (vcpu->arch.dcr_needed) {
714 if (!vcpu->arch.dcr_is_write)
715 kvmppc_complete_dcr_load(vcpu, run);
716 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100717 } else if (vcpu->arch.osi_needed) {
718 u64 *gprs = run->osi.gprs;
719 int i;
720
721 for (i = 0; i < 32; i++)
722 kvmppc_set_gpr(vcpu, i, gprs[i]);
723 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000724 } else if (vcpu->arch.hcall_needed) {
725 int i;
726
727 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
728 for (i = 0; i < 9; ++i)
729 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
730 vcpu->arch.hcall_needed = 0;
Alexander Graf1c810632013-01-04 18:12:48 +0100731#ifdef CONFIG_BOOKE
732 } else if (vcpu->arch.epr_needed) {
733 kvmppc_set_epr(vcpu, run->epr.epr);
734 vcpu->arch.epr_needed = 0;
735#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500736 }
737
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000738 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500739
740 if (vcpu->sigset_active)
741 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
742
743 return r;
744}
745
746int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
747{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000748 if (irq->irq == KVM_INTERRUPT_UNSET) {
Paul Mackerras4fe27d22013-02-14 14:00:25 +0000749 kvmppc_core_dequeue_external(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000750 return 0;
751 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500752
Paul Mackerras19ccb762011-07-23 17:42:46 +1000753 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500754
Scott Wooddfd4d472011-11-17 12:39:59 +0000755 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500756
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500757 return 0;
758}
759
Alexander Graf71fbfd52010-03-24 21:48:29 +0100760static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
761 struct kvm_enable_cap *cap)
762{
763 int r;
764
765 if (cap->flags)
766 return -EINVAL;
767
768 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100769 case KVM_CAP_PPC_OSI:
770 r = 0;
771 vcpu->arch.osi_enabled = true;
772 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200773 case KVM_CAP_PPC_PAPR:
774 r = 0;
775 vcpu->arch.papr_enabled = true;
776 break;
Alexander Graf1c810632013-01-04 18:12:48 +0100777 case KVM_CAP_PPC_EPR:
778 r = 0;
Scott Wood5df554a2013-04-12 14:08:46 +0000779 if (cap->args[0])
780 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
781 else
782 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
Alexander Graf1c810632013-01-04 18:12:48 +0100783 break;
Bharat Bhushanf61c94b2012-08-08 20:38:19 +0000784#ifdef CONFIG_BOOKE
785 case KVM_CAP_PPC_BOOKE_WATCHDOG:
786 r = 0;
787 vcpu->arch.watchdog_enabled = true;
788 break;
789#endif
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000790#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500791 case KVM_CAP_SW_TLB: {
792 struct kvm_config_tlb cfg;
793 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
794
795 r = -EFAULT;
796 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
797 break;
798
799 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
800 break;
801 }
802#endif
Scott Woodeb1e4f42013-04-12 14:08:47 +0000803#ifdef CONFIG_KVM_MPIC
804 case KVM_CAP_IRQ_MPIC: {
805 struct file *filp;
806 struct kvm_device *dev;
807
808 r = -EBADF;
809 filp = fget(cap->args[0]);
810 if (!filp)
811 break;
812
813 r = -EPERM;
814 dev = kvm_device_from_filp(filp);
815 if (dev)
816 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
817
818 fput(filp);
819 break;
820 }
821#endif
Alexander Graf71fbfd52010-03-24 21:48:29 +0100822 default:
823 r = -EINVAL;
824 break;
825 }
826
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200827 if (!r)
828 r = kvmppc_sanity_check(vcpu);
829
Alexander Graf71fbfd52010-03-24 21:48:29 +0100830 return r;
831}
832
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500833int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
834 struct kvm_mp_state *mp_state)
835{
836 return -EINVAL;
837}
838
839int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
840 struct kvm_mp_state *mp_state)
841{
842 return -EINVAL;
843}
844
845long kvm_arch_vcpu_ioctl(struct file *filp,
846 unsigned int ioctl, unsigned long arg)
847{
848 struct kvm_vcpu *vcpu = filp->private_data;
849 void __user *argp = (void __user *)arg;
850 long r;
851
Avi Kivity93736622010-05-13 12:35:17 +0300852 switch (ioctl) {
853 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500854 struct kvm_interrupt irq;
855 r = -EFAULT;
856 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300857 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500858 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300859 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500860 }
Avi Kivity19483d12010-05-13 12:30:43 +0300861
Alexander Graf71fbfd52010-03-24 21:48:29 +0100862 case KVM_ENABLE_CAP:
863 {
864 struct kvm_enable_cap cap;
865 r = -EFAULT;
866 if (copy_from_user(&cap, argp, sizeof(cap)))
867 goto out;
868 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
869 break;
870 }
Scott Wooddc83b8b2011-08-18 15:25:21 -0500871
Alexander Grafe24ed812011-09-14 10:02:41 +0200872 case KVM_SET_ONE_REG:
873 case KVM_GET_ONE_REG:
874 {
875 struct kvm_one_reg reg;
876 r = -EFAULT;
877 if (copy_from_user(&reg, argp, sizeof(reg)))
878 goto out;
879 if (ioctl == KVM_SET_ONE_REG)
880 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
881 else
882 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
883 break;
884 }
885
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000886#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
Scott Wooddc83b8b2011-08-18 15:25:21 -0500887 case KVM_DIRTY_TLB: {
888 struct kvm_dirty_tlb dirty;
889 r = -EFAULT;
890 if (copy_from_user(&dirty, argp, sizeof(dirty)))
891 goto out;
892 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
893 break;
894 }
895#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500896 default:
897 r = -EINVAL;
898 }
899
900out:
901 return r;
902}
903
Carsten Otte5b1c1492012-01-04 10:25:23 +0100904int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
905{
906 return VM_FAULT_SIGBUS;
907}
908
Alexander Graf15711e92010-07-29 14:48:08 +0200909static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
910{
Stuart Yoder784bafa2012-07-03 05:48:51 +0000911 u32 inst_nop = 0x60000000;
912#ifdef CONFIG_KVM_BOOKE_HV
913 u32 inst_sc1 = 0x44000022;
914 pvinfo->hcall[0] = inst_sc1;
915 pvinfo->hcall[1] = inst_nop;
916 pvinfo->hcall[2] = inst_nop;
917 pvinfo->hcall[3] = inst_nop;
918#else
Alexander Graf15711e92010-07-29 14:48:08 +0200919 u32 inst_lis = 0x3c000000;
920 u32 inst_ori = 0x60000000;
Alexander Graf15711e92010-07-29 14:48:08 +0200921 u32 inst_sc = 0x44000002;
922 u32 inst_imm_mask = 0xffff;
923
924 /*
925 * The hypercall to get into KVM from within guest context is as
926 * follows:
927 *
928 * lis r0, r0, KVM_SC_MAGIC_R0@h
929 * ori r0, KVM_SC_MAGIC_R0@l
930 * sc
931 * nop
932 */
933 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
934 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
935 pvinfo->hcall[2] = inst_sc;
936 pvinfo->hcall[3] = inst_nop;
Stuart Yoder784bafa2012-07-03 05:48:51 +0000937#endif
Alexander Graf15711e92010-07-29 14:48:08 +0200938
Liu Yu-B132019202e072012-07-03 05:48:52 +0000939 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
940
Alexander Graf15711e92010-07-29 14:48:08 +0200941 return 0;
942}
943
Alexander Graf5efdb4b2013-04-17 00:37:57 +0200944int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
945 bool line_status)
946{
947 if (!irqchip_in_kernel(kvm))
948 return -ENXIO;
949
950 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
951 irq_event->irq, irq_event->level,
952 line_status);
953 return 0;
954}
955
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500956long kvm_arch_vm_ioctl(struct file *filp,
957 unsigned int ioctl, unsigned long arg)
958{
Scott Wood5df554a2013-04-12 14:08:46 +0000959 struct kvm *kvm __maybe_unused = filp->private_data;
Alexander Graf15711e92010-07-29 14:48:08 +0200960 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500961 long r;
962
963 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +0200964 case KVM_PPC_GET_PVINFO: {
965 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +0400966 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +0200967 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
968 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
969 r = -EFAULT;
970 goto out;
971 }
972
973 break;
974 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000975#ifdef CONFIG_PPC_BOOK3S_64
David Gibson54738c02011-06-29 00:22:41 +0000976 case KVM_CREATE_SPAPR_TCE: {
977 struct kvm_create_spapr_tce create_tce;
David Gibson54738c02011-06-29 00:22:41 +0000978
979 r = -EFAULT;
980 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
981 goto out;
982 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
983 goto out;
984 }
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000985#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000986
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +0000987#ifdef CONFIG_KVM_BOOK3S_64_HV
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000988 case KVM_ALLOCATE_RMA: {
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000989 struct kvm_allocate_rma rma;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000990 struct kvm *kvm = filp->private_data;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000991
992 r = kvm_vm_ioctl_allocate_rma(kvm, &rma);
993 if (r >= 0 && copy_to_user(argp, &rma, sizeof(rma)))
994 r = -EFAULT;
995 break;
996 }
Paul Mackerras32fad282012-05-04 02:32:53 +0000997
998 case KVM_PPC_ALLOCATE_HTAB: {
Paul Mackerras32fad282012-05-04 02:32:53 +0000999 u32 htab_order;
1000
1001 r = -EFAULT;
1002 if (get_user(htab_order, (u32 __user *)argp))
1003 break;
1004 r = kvmppc_alloc_reset_hpt(kvm, &htab_order);
1005 if (r)
1006 break;
1007 r = -EFAULT;
1008 if (put_user(htab_order, (u32 __user *)argp))
1009 break;
1010 r = 0;
1011 break;
1012 }
Paul Mackerrasa2932922012-11-19 22:57:20 +00001013
1014 case KVM_PPC_GET_HTAB_FD: {
Paul Mackerrasa2932922012-11-19 22:57:20 +00001015 struct kvm_get_htab_fd ghf;
1016
1017 r = -EFAULT;
1018 if (copy_from_user(&ghf, argp, sizeof(ghf)))
1019 break;
1020 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
1021 break;
1022 }
David Gibson54738c02011-06-29 00:22:41 +00001023#endif /* CONFIG_KVM_BOOK3S_64_HV */
1024
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001025#ifdef CONFIG_PPC_BOOK3S_64
1026 case KVM_PPC_GET_SMMU_INFO: {
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001027 struct kvm_ppc_smmu_info info;
1028
1029 memset(&info, 0, sizeof(info));
1030 r = kvm_vm_ioctl_get_smmu_info(kvm, &info);
1031 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1032 r = -EFAULT;
1033 break;
1034 }
Michael Ellerman8e591cb2013-04-17 20:30:00 +00001035 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1036 struct kvm *kvm = filp->private_data;
1037
1038 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1039 break;
1040 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001041#endif /* CONFIG_PPC_BOOK3S_64 */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001042 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001043 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001044 }
1045
Alexander Graf15711e92010-07-29 14:48:08 +02001046out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001047 return r;
1048}
1049
Scott Wood043cc4d2011-12-20 15:34:20 +00001050static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1051static unsigned long nr_lpids;
1052
1053long kvmppc_alloc_lpid(void)
1054{
1055 long lpid;
1056
1057 do {
1058 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1059 if (lpid >= nr_lpids) {
1060 pr_err("%s: No LPIDs free\n", __func__);
1061 return -ENOMEM;
1062 }
1063 } while (test_and_set_bit(lpid, lpid_inuse));
1064
1065 return lpid;
1066}
1067
1068void kvmppc_claim_lpid(long lpid)
1069{
1070 set_bit(lpid, lpid_inuse);
1071}
1072
1073void kvmppc_free_lpid(long lpid)
1074{
1075 clear_bit(lpid, lpid_inuse);
1076}
1077
1078void kvmppc_init_lpid(unsigned long nr_lpids_param)
1079{
1080 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1081 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1082}
1083
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001084int kvm_arch_init(void *opaque)
1085{
1086 return 0;
1087}
1088
1089void kvm_arch_exit(void)
1090{
1091}