blob: 6a530e4b3e7c53c882304d64f6b533dc84473b15 [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>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060033#include "timing.h"
Paul Mackerrasfad7b9b2008-12-23 14:57:26 +110034#include "../mm/mmu_decl.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050035
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030036#define CREATE_TRACE_POINTS
37#include "trace.h"
38
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050039int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
40{
Alexander Graf666e7252010-07-29 14:47:43 +020041 return !(v->arch.shared->msr & MSR_WE) ||
Scott Wooddfd4d472011-11-17 12:39:59 +000042 !!(v->arch.pending_exceptions) ||
43 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 Graf2a342ed2010-07-29 14:47:48 +020051int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
52{
53 int nr = kvmppc_get_gpr(vcpu, 11);
54 int r;
55 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
56 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
57 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
58 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
59 unsigned long r2 = 0;
60
61 if (!(vcpu->arch.shared->msr & MSR_SF)) {
62 /* 32 bit mode */
63 param1 &= 0xffffffff;
64 param2 &= 0xffffffff;
65 param3 &= 0xffffffff;
66 param4 &= 0xffffffff;
67 }
68
69 switch (nr) {
Alexander Graf5fc87402010-07-29 14:47:55 +020070 case HC_VENDOR_KVM | KVM_HC_PPC_MAP_MAGIC_PAGE:
71 {
72 vcpu->arch.magic_page_pa = param1;
73 vcpu->arch.magic_page_ea = param2;
74
Scott Woodb5904972011-11-08 18:23:30 -060075 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
Alexander Graf7508e162010-08-03 11:32:56 +020076
Alexander Graf5fc87402010-07-29 14:47:55 +020077 r = HC_EV_SUCCESS;
78 break;
79 }
Alexander Graf2a342ed2010-07-29 14:47:48 +020080 case HC_VENDOR_KVM | KVM_HC_FEATURES:
81 r = HC_EV_SUCCESS;
Scott Wooda4cd8b22011-06-14 18:34:41 -050082#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500)
83 /* XXX Missing magic page on 44x */
Alexander Graf5fc87402010-07-29 14:47:55 +020084 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
85#endif
Alexander Graf2a342ed2010-07-29 14:47:48 +020086
87 /* Second return value is in r4 */
Alexander Graf2a342ed2010-07-29 14:47:48 +020088 break;
89 default:
90 r = HC_EV_UNIMPLEMENTED;
91 break;
92 }
93
Alexander Graf7508e162010-08-03 11:32:56 +020094 kvmppc_set_gpr(vcpu, 4, r2);
95
Alexander Graf2a342ed2010-07-29 14:47:48 +020096 return r;
97}
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050098
Alexander Grafaf8f38b2011-08-10 13:57:08 +020099int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
100{
101 int r = false;
102
103 /* We have to know what CPU to virtualize */
104 if (!vcpu->arch.pvr)
105 goto out;
106
107 /* PAPR only works with book3s_64 */
108 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
109 goto out;
110
111#ifdef CONFIG_KVM_BOOK3S_64_HV
112 /* HV KVM can only do PAPR mode for now */
113 if (!vcpu->arch.papr_enabled)
114 goto out;
115#endif
116
Scott Woodd30f6e42011-12-20 15:34:43 +0000117#ifdef CONFIG_KVM_BOOKE_HV
118 if (!cpu_has_feature(CPU_FTR_EMB_HV))
119 goto out;
120#endif
121
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200122 r = true;
123
124out:
125 vcpu->arch.sane = r;
126 return r ? 0 : -EINVAL;
127}
128
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500129int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
130{
131 enum emulation_result er;
132 int r;
133
134 er = kvmppc_emulate_instruction(run, vcpu);
135 switch (er) {
136 case EMULATE_DONE:
137 /* Future optimization: only reload non-volatiles if they were
138 * actually modified. */
139 r = RESUME_GUEST_NV;
140 break;
141 case EMULATE_DO_MMIO:
142 run->exit_reason = KVM_EXIT_MMIO;
143 /* We must reload nonvolatiles because "update" load/store
144 * instructions modify register state. */
145 /* Future optimization: only reload non-volatiles if they were
146 * actually modified. */
147 r = RESUME_HOST_NV;
148 break;
149 case EMULATE_FAIL:
150 /* XXX Deliver Program interrupt to guest. */
151 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
Alexander Grafc7f38f42010-04-16 00:11:40 +0200152 kvmppc_get_last_inst(vcpu));
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500153 r = RESUME_HOST;
154 break;
155 default:
156 BUG();
157 }
158
159 return r;
160}
161
Alexander Graf10474ae2009-09-15 11:37:46 +0200162int kvm_arch_hardware_enable(void *garbage)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500163{
Alexander Graf10474ae2009-09-15 11:37:46 +0200164 return 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500165}
166
167void kvm_arch_hardware_disable(void *garbage)
168{
169}
170
171int kvm_arch_hardware_setup(void)
172{
173 return 0;
174}
175
176void kvm_arch_hardware_unsetup(void)
177{
178}
179
180void kvm_arch_check_processor_compat(void *rtn)
181{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600182 *(int *)rtn = kvmppc_core_check_processor_compat();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500183}
184
Carsten Ottee08b9632012-01-04 10:25:20 +0100185int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500186{
Carsten Ottee08b9632012-01-04 10:25:20 +0100187 if (type)
188 return -EINVAL;
189
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000190 return kvmppc_core_init_vm(kvm);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500191}
192
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100193void kvm_arch_destroy_vm(struct kvm *kvm)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500194{
195 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300196 struct kvm_vcpu *vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500197
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300198 kvm_for_each_vcpu(i, vcpu, kvm)
199 kvm_arch_vcpu_free(vcpu);
200
201 mutex_lock(&kvm->lock);
202 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
203 kvm->vcpus[i] = NULL;
204
205 atomic_set(&kvm->online_vcpus, 0);
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000206
207 kvmppc_core_destroy_vm(kvm);
208
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300209 mutex_unlock(&kvm->lock);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500210}
211
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800212void kvm_arch_sync_events(struct kvm *kvm)
213{
214}
215
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500216int kvm_dev_ioctl_check_extension(long ext)
217{
218 int r;
219
220 switch (ext) {
Scott Wood5ce941e2011-04-27 17:24:21 -0500221#ifdef CONFIG_BOOKE
222 case KVM_CAP_PPC_BOOKE_SREGS:
223#else
Alexander Grafe15a1132009-11-30 03:02:02 +0000224 case KVM_CAP_PPC_SEGSTATE:
Alexander Graf1022fc32011-09-14 21:45:23 +0200225 case KVM_CAP_PPC_HIOR:
Alexander Graf930b4122011-08-08 17:29:42 +0200226 case KVM_CAP_PPC_PAPR:
Scott Wood5ce941e2011-04-27 17:24:21 -0500227#endif
Alexander Graf18978762010-03-24 21:48:18 +0100228 case KVM_CAP_PPC_UNSET_IRQ:
Alexander Graf7b4203e2010-08-30 13:50:45 +0200229 case KVM_CAP_PPC_IRQ_LEVEL:
Alexander Graf71fbfd52010-03-24 21:48:29 +0100230 case KVM_CAP_ENABLE_CAP:
Alexander Grafe24ed812011-09-14 10:02:41 +0200231 case KVM_CAP_ONE_REG:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000232 r = 1;
233 break;
234#ifndef CONFIG_KVM_BOOK3S_64_HV
235 case KVM_CAP_PPC_PAIRED_SINGLES:
Alexander Grafad0a0482010-03-24 21:48:30 +0100236 case KVM_CAP_PPC_OSI:
Alexander Graf15711e92010-07-29 14:48:08 +0200237 case KVM_CAP_PPC_GET_PVINFO:
Scott Wooddc83b8b2011-08-18 15:25:21 -0500238#ifdef CONFIG_KVM_E500
239 case KVM_CAP_SW_TLB:
240#endif
Alexander Grafe15a1132009-11-30 03:02:02 +0000241 r = 1;
242 break;
Laurent Vivier588968b2008-05-30 16:05:56 +0200243 case KVM_CAP_COALESCED_MMIO:
244 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
245 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000246#endif
David Gibson54738c02011-06-29 00:22:41 +0000247#ifdef CONFIG_KVM_BOOK3S_64_HV
248 case KVM_CAP_SPAPR_TCE:
249 r = 1;
250 break;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000251 case KVM_CAP_PPC_SMT:
252 r = threads_per_core;
253 break;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000254 case KVM_CAP_PPC_RMA:
255 r = 1;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000256 /* PPC970 requires an RMA */
257 if (cpu_has_feature(CPU_FTR_ARCH_201))
258 r = 2;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000259 break;
Paul Mackerras342d3db2011-12-12 12:38:05 +0000260 case KVM_CAP_SYNC_MMU:
261 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
262 break;
David Gibson54738c02011-06-29 00:22:41 +0000263#endif
Matt Evansb5434032011-12-07 16:55:57 +0000264 case KVM_CAP_NR_VCPUS:
265 /*
266 * Recommending a number of CPUs is somewhat arbitrary; we
267 * return the number of present CPUs for -HV (since a host
268 * will have secondary threads "offline"), and for other KVM
269 * implementations just count online CPUs.
270 */
271#ifdef CONFIG_KVM_BOOK3S_64_HV
272 r = num_present_cpus();
273#else
274 r = num_online_cpus();
275#endif
276 break;
277 case KVM_CAP_MAX_VCPUS:
278 r = KVM_MAX_VCPUS;
279 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500280 default:
281 r = 0;
282 break;
283 }
284 return r;
285
286}
287
288long kvm_arch_dev_ioctl(struct file *filp,
289 unsigned int ioctl, unsigned long arg)
290{
291 return -EINVAL;
292}
293
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900294void kvm_arch_free_memslot(struct kvm_memory_slot *free,
295 struct kvm_memory_slot *dont)
296{
297}
298
299int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages)
300{
301 return 0;
302}
303
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200304int kvm_arch_prepare_memory_region(struct kvm *kvm,
305 struct kvm_memory_slot *memslot,
306 struct kvm_memory_slot old,
307 struct kvm_userspace_memory_region *mem,
308 int user_alloc)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500309{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000310 return kvmppc_core_prepare_memory_region(kvm, mem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500311}
312
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200313void kvm_arch_commit_memory_region(struct kvm *kvm,
314 struct kvm_userspace_memory_region *mem,
315 struct kvm_memory_slot old,
316 int user_alloc)
317{
Paul Mackerrasf9e05542011-06-29 00:19:22 +0000318 kvmppc_core_commit_memory_region(kvm, mem);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200319}
320
321
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300322void kvm_arch_flush_shadow(struct kvm *kvm)
323{
324}
325
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500326struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
327{
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600328 struct kvm_vcpu *vcpu;
329 vcpu = kvmppc_core_vcpu_create(kvm, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000330 if (!IS_ERR(vcpu)) {
331 vcpu->arch.wqp = &vcpu->wq;
Wei Yongjun06056bf2010-03-09 14:13:43 +0800332 kvmppc_create_vcpu_debugfs(vcpu, id);
Matt Evans03cdab52011-12-06 21:19:42 +0000333 }
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600334 return vcpu;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500335}
336
337void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
338{
Alexander Grafa5954052010-02-22 16:52:14 +0100339 /* Make sure we're not using the vcpu anymore */
340 hrtimer_cancel(&vcpu->arch.dec_timer);
341 tasklet_kill(&vcpu->arch.tasklet);
342
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600343 kvmppc_remove_vcpu_debugfs(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600344 kvmppc_core_vcpu_free(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500345}
346
347void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
348{
349 kvm_arch_vcpu_free(vcpu);
350}
351
352int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
353{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600354 return kvmppc_core_pending_dec(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500355}
356
Alexander Graf544c6762009-11-02 12:02:31 +0000357/*
358 * low level hrtimer wake routine. Because this runs in hardirq context
359 * we schedule a tasklet to do the real work.
360 */
361enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
362{
363 struct kvm_vcpu *vcpu;
364
365 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
366 tasklet_schedule(&vcpu->arch.tasklet);
367
368 return HRTIMER_NORESTART;
369}
370
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500371int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
372{
Alexander Graf544c6762009-11-02 12:02:31 +0000373 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
374 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
375 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000376 vcpu->arch.dec_expires = ~(u64)0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500377
Bharat Bhushan09000ad2011-03-25 10:32:13 +0530378#ifdef CONFIG_KVM_EXIT_TIMING
379 mutex_init(&vcpu->arch.exit_timing_lock);
380#endif
381
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500382 return 0;
383}
384
385void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
386{
Hollis Blanchardecc09812009-01-03 16:22:59 -0600387 kvmppc_mmu_destroy(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500388}
389
390void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
391{
Scott Woodeab17672011-04-27 17:24:10 -0500392#ifdef CONFIG_BOOKE
393 /*
394 * vrsave (formerly usprg0) isn't used by Linux, but may
395 * be used by the guest.
396 *
397 * On non-booke this is associated with Altivec and
398 * is handled by code in book3s.c.
399 */
400 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
401#endif
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600402 kvmppc_core_vcpu_load(vcpu, cpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000403 vcpu->cpu = smp_processor_id();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500404}
405
406void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
407{
Hollis Blanchard9dd921c2008-11-05 09:36:14 -0600408 kvmppc_core_vcpu_put(vcpu);
Scott Woodeab17672011-04-27 17:24:10 -0500409#ifdef CONFIG_BOOKE
410 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
411#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +0000412 vcpu->cpu = -1;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500413}
414
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100415int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600416 struct kvm_guest_debug *dbg)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500417{
Hollis Blanchardf5d09062009-01-04 13:51:09 -0600418 return -EINVAL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500419}
420
421static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
422 struct kvm_run *run)
423{
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100424 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500425}
426
427static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
428 struct kvm_run *run)
429{
Denis Kirjanov69b61832010-06-11 11:23:26 +0000430 u64 uninitialized_var(gpr);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500431
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100432 if (run->mmio.len > sizeof(gpr)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500433 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
434 return;
435 }
436
437 if (vcpu->arch.mmio_is_bigendian) {
438 switch (run->mmio.len) {
Alexander Grafb104d062010-02-19 11:00:29 +0100439 case 8: gpr = *(u64 *)run->mmio.data; break;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100440 case 4: gpr = *(u32 *)run->mmio.data; break;
441 case 2: gpr = *(u16 *)run->mmio.data; break;
442 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500443 }
444 } else {
445 /* Convert BE data from userland back to LE. */
446 switch (run->mmio.len) {
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100447 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
448 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
449 case 1: gpr = *(u8 *)run->mmio.data; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500450 }
451 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100452
Alexander Graf3587d532010-02-19 11:00:30 +0100453 if (vcpu->arch.mmio_sign_extend) {
454 switch (run->mmio.len) {
455#ifdef CONFIG_PPC64
456 case 4:
457 gpr = (s64)(s32)gpr;
458 break;
459#endif
460 case 2:
461 gpr = (s64)(s16)gpr;
462 break;
463 case 1:
464 gpr = (s64)(s8)gpr;
465 break;
466 }
467 }
468
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100469 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
Alexander Grafb104d062010-02-19 11:00:29 +0100470
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100471 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
472 case KVM_MMIO_REG_GPR:
Alexander Grafb104d062010-02-19 11:00:29 +0100473 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
474 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100475 case KVM_MMIO_REG_FPR:
476 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100477 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200478#ifdef CONFIG_PPC_BOOK3S
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100479 case KVM_MMIO_REG_QPR:
480 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100481 break;
Alexander Grafb3c5d3c2012-01-07 02:07:38 +0100482 case KVM_MMIO_REG_FQPR:
483 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
484 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
Alexander Grafb104d062010-02-19 11:00:29 +0100485 break;
Alexander Graf287d5612010-04-01 15:33:21 +0200486#endif
Alexander Grafb104d062010-02-19 11:00:29 +0100487 default:
488 BUG();
489 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500490}
491
492int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
493 unsigned int rt, unsigned int bytes, int is_bigendian)
494{
495 if (bytes > sizeof(run->mmio.data)) {
496 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
497 run->mmio.len);
498 }
499
500 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
501 run->mmio.len = bytes;
502 run->mmio.is_write = 0;
503
504 vcpu->arch.io_gpr = rt;
505 vcpu->arch.mmio_is_bigendian = is_bigendian;
506 vcpu->mmio_needed = 1;
507 vcpu->mmio_is_write = 0;
Alexander Graf3587d532010-02-19 11:00:30 +0100508 vcpu->arch.mmio_sign_extend = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500509
510 return EMULATE_DO_MMIO;
511}
512
Alexander Graf3587d532010-02-19 11:00:30 +0100513/* Same as above, but sign extends */
514int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
515 unsigned int rt, unsigned int bytes, int is_bigendian)
516{
517 int r;
518
519 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
520 vcpu->arch.mmio_sign_extend = 1;
521
522 return r;
523}
524
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500525int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
Alexander Grafb104d062010-02-19 11:00:29 +0100526 u64 val, unsigned int bytes, int is_bigendian)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500527{
528 void *data = run->mmio.data;
529
530 if (bytes > sizeof(run->mmio.data)) {
531 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
532 run->mmio.len);
533 }
534
535 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
536 run->mmio.len = bytes;
537 run->mmio.is_write = 1;
538 vcpu->mmio_needed = 1;
539 vcpu->mmio_is_write = 1;
540
541 /* Store the value at the lowest bytes in 'data'. */
542 if (is_bigendian) {
543 switch (bytes) {
Alexander Grafb104d062010-02-19 11:00:29 +0100544 case 8: *(u64 *)data = val; break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500545 case 4: *(u32 *)data = val; break;
546 case 2: *(u16 *)data = val; break;
547 case 1: *(u8 *)data = val; break;
548 }
549 } else {
550 /* Store LE value into 'data'. */
551 switch (bytes) {
552 case 4: st_le32(data, val); break;
553 case 2: st_le16(data, val); break;
554 case 1: *(u8 *)data = val; break;
555 }
556 }
557
558 return EMULATE_DO_MMIO;
559}
560
561int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
562{
563 int r;
564 sigset_t sigsaved;
565
566 if (vcpu->sigset_active)
567 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
568
569 if (vcpu->mmio_needed) {
570 if (!vcpu->mmio_is_write)
571 kvmppc_complete_mmio_load(vcpu, run);
572 vcpu->mmio_needed = 0;
573 } else if (vcpu->arch.dcr_needed) {
574 if (!vcpu->arch.dcr_is_write)
575 kvmppc_complete_dcr_load(vcpu, run);
576 vcpu->arch.dcr_needed = 0;
Alexander Grafad0a0482010-03-24 21:48:30 +0100577 } else if (vcpu->arch.osi_needed) {
578 u64 *gprs = run->osi.gprs;
579 int i;
580
581 for (i = 0; i < 32; i++)
582 kvmppc_set_gpr(vcpu, i, gprs[i]);
583 vcpu->arch.osi_needed = 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000584 } else if (vcpu->arch.hcall_needed) {
585 int i;
586
587 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
588 for (i = 0; i < 9; ++i)
589 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
590 vcpu->arch.hcall_needed = 0;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500591 }
592
Paul Mackerrasdf6909e52011-06-29 00:19:50 +0000593 r = kvmppc_vcpu_run(run, vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500594
595 if (vcpu->sigset_active)
596 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
597
598 return r;
599}
600
601int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
602{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000603 if (irq->irq == KVM_INTERRUPT_UNSET) {
Alexander Graf18978762010-03-24 21:48:18 +0100604 kvmppc_core_dequeue_external(vcpu, irq);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000605 return 0;
606 }
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500607
Paul Mackerras19ccb762011-07-23 17:42:46 +1000608 kvmppc_core_queue_external(vcpu, irq);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500609
Scott Wooddfd4d472011-11-17 12:39:59 +0000610 kvm_vcpu_kick(vcpu);
Hollis Blanchard45c5eb62008-04-25 17:55:49 -0500611
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500612 return 0;
613}
614
Alexander Graf71fbfd52010-03-24 21:48:29 +0100615static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
616 struct kvm_enable_cap *cap)
617{
618 int r;
619
620 if (cap->flags)
621 return -EINVAL;
622
623 switch (cap->cap) {
Alexander Grafad0a0482010-03-24 21:48:30 +0100624 case KVM_CAP_PPC_OSI:
625 r = 0;
626 vcpu->arch.osi_enabled = true;
627 break;
Alexander Graf930b4122011-08-08 17:29:42 +0200628 case KVM_CAP_PPC_PAPR:
629 r = 0;
630 vcpu->arch.papr_enabled = true;
631 break;
Scott Wooddc83b8b2011-08-18 15:25:21 -0500632#ifdef CONFIG_KVM_E500
633 case KVM_CAP_SW_TLB: {
634 struct kvm_config_tlb cfg;
635 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
636
637 r = -EFAULT;
638 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
639 break;
640
641 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
642 break;
643 }
644#endif
Alexander Graf71fbfd52010-03-24 21:48:29 +0100645 default:
646 r = -EINVAL;
647 break;
648 }
649
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200650 if (!r)
651 r = kvmppc_sanity_check(vcpu);
652
Alexander Graf71fbfd52010-03-24 21:48:29 +0100653 return r;
654}
655
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500656int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
657 struct kvm_mp_state *mp_state)
658{
659 return -EINVAL;
660}
661
662int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
663 struct kvm_mp_state *mp_state)
664{
665 return -EINVAL;
666}
667
668long kvm_arch_vcpu_ioctl(struct file *filp,
669 unsigned int ioctl, unsigned long arg)
670{
671 struct kvm_vcpu *vcpu = filp->private_data;
672 void __user *argp = (void __user *)arg;
673 long r;
674
Avi Kivity93736622010-05-13 12:35:17 +0300675 switch (ioctl) {
676 case KVM_INTERRUPT: {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500677 struct kvm_interrupt irq;
678 r = -EFAULT;
679 if (copy_from_user(&irq, argp, sizeof(irq)))
Avi Kivity93736622010-05-13 12:35:17 +0300680 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500681 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity93736622010-05-13 12:35:17 +0300682 goto out;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500683 }
Avi Kivity19483d12010-05-13 12:30:43 +0300684
Alexander Graf71fbfd52010-03-24 21:48:29 +0100685 case KVM_ENABLE_CAP:
686 {
687 struct kvm_enable_cap cap;
688 r = -EFAULT;
689 if (copy_from_user(&cap, argp, sizeof(cap)))
690 goto out;
691 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
692 break;
693 }
Scott Wooddc83b8b2011-08-18 15:25:21 -0500694
Alexander Grafe24ed812011-09-14 10:02:41 +0200695 case KVM_SET_ONE_REG:
696 case KVM_GET_ONE_REG:
697 {
698 struct kvm_one_reg reg;
699 r = -EFAULT;
700 if (copy_from_user(&reg, argp, sizeof(reg)))
701 goto out;
702 if (ioctl == KVM_SET_ONE_REG)
703 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
704 else
705 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
706 break;
707 }
708
Scott Wooddc83b8b2011-08-18 15:25:21 -0500709#ifdef CONFIG_KVM_E500
710 case KVM_DIRTY_TLB: {
711 struct kvm_dirty_tlb dirty;
712 r = -EFAULT;
713 if (copy_from_user(&dirty, argp, sizeof(dirty)))
714 goto out;
715 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
716 break;
717 }
718#endif
719
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500720 default:
721 r = -EINVAL;
722 }
723
724out:
725 return r;
726}
727
Carsten Otte5b1c1492012-01-04 10:25:23 +0100728int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
729{
730 return VM_FAULT_SIGBUS;
731}
732
Alexander Graf15711e92010-07-29 14:48:08 +0200733static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
734{
735 u32 inst_lis = 0x3c000000;
736 u32 inst_ori = 0x60000000;
737 u32 inst_nop = 0x60000000;
738 u32 inst_sc = 0x44000002;
739 u32 inst_imm_mask = 0xffff;
740
741 /*
742 * The hypercall to get into KVM from within guest context is as
743 * follows:
744 *
745 * lis r0, r0, KVM_SC_MAGIC_R0@h
746 * ori r0, KVM_SC_MAGIC_R0@l
747 * sc
748 * nop
749 */
750 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
751 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
752 pvinfo->hcall[2] = inst_sc;
753 pvinfo->hcall[3] = inst_nop;
754
755 return 0;
756}
757
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500758long kvm_arch_vm_ioctl(struct file *filp,
759 unsigned int ioctl, unsigned long arg)
760{
Alexander Graf15711e92010-07-29 14:48:08 +0200761 void __user *argp = (void __user *)arg;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500762 long r;
763
764 switch (ioctl) {
Alexander Graf15711e92010-07-29 14:48:08 +0200765 case KVM_PPC_GET_PVINFO: {
766 struct kvm_ppc_pvinfo pvinfo;
Vasiliy Kulikovd8cdddc2010-10-30 13:04:24 +0400767 memset(&pvinfo, 0, sizeof(pvinfo));
Alexander Graf15711e92010-07-29 14:48:08 +0200768 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
769 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
770 r = -EFAULT;
771 goto out;
772 }
773
774 break;
775 }
David Gibson54738c02011-06-29 00:22:41 +0000776#ifdef CONFIG_KVM_BOOK3S_64_HV
777 case KVM_CREATE_SPAPR_TCE: {
778 struct kvm_create_spapr_tce create_tce;
779 struct kvm *kvm = filp->private_data;
780
781 r = -EFAULT;
782 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
783 goto out;
784 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
785 goto out;
786 }
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000787
788 case KVM_ALLOCATE_RMA: {
789 struct kvm *kvm = filp->private_data;
790 struct kvm_allocate_rma rma;
791
792 r = kvm_vm_ioctl_allocate_rma(kvm, &rma);
793 if (r >= 0 && copy_to_user(argp, &rma, sizeof(rma)))
794 r = -EFAULT;
795 break;
796 }
David Gibson54738c02011-06-29 00:22:41 +0000797#endif /* CONFIG_KVM_BOOK3S_64_HV */
798
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500799 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300800 r = -ENOTTY;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500801 }
802
Alexander Graf15711e92010-07-29 14:48:08 +0200803out:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500804 return r;
805}
806
Scott Wood043cc4d2011-12-20 15:34:20 +0000807static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
808static unsigned long nr_lpids;
809
810long kvmppc_alloc_lpid(void)
811{
812 long lpid;
813
814 do {
815 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
816 if (lpid >= nr_lpids) {
817 pr_err("%s: No LPIDs free\n", __func__);
818 return -ENOMEM;
819 }
820 } while (test_and_set_bit(lpid, lpid_inuse));
821
822 return lpid;
823}
824
825void kvmppc_claim_lpid(long lpid)
826{
827 set_bit(lpid, lpid_inuse);
828}
829
830void kvmppc_free_lpid(long lpid)
831{
832 clear_bit(lpid, lpid_inuse);
833}
834
835void kvmppc_init_lpid(unsigned long nr_lpids_param)
836{
837 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
838 memset(lpid_inuse, 0, sizeof(lpid_inuse));
839}
840
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500841int kvm_arch_init(void *opaque)
842{
843 return 0;
844}
845
846void kvm_arch_exit(void)
847{
848}