]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/powerpc/kvm/powerpc.c
KVM: add kvm_arch_sched_in
[karo-tx-linux.git] / arch / powerpc / kvm / powerpc.c
1 /*
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>
24 #include <linux/vmalloc.h>
25 #include <linux/hrtimer.h>
26 #include <linux/fs.h>
27 #include <linux/slab.h>
28 #include <linux/file.h>
29 #include <linux/module.h>
30 #include <asm/cputable.h>
31 #include <asm/uaccess.h>
32 #include <asm/kvm_ppc.h>
33 #include <asm/tlbflush.h>
34 #include <asm/cputhreads.h>
35 #include <asm/irqflags.h>
36 #include "timing.h"
37 #include "irq.h"
38 #include "../mm/mmu_decl.h"
39
40 #define CREATE_TRACE_POINTS
41 #include "trace.h"
42
43 struct kvmppc_ops *kvmppc_hv_ops;
44 EXPORT_SYMBOL_GPL(kvmppc_hv_ops);
45 struct kvmppc_ops *kvmppc_pr_ops;
46 EXPORT_SYMBOL_GPL(kvmppc_pr_ops);
47
48
49 int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
50 {
51         return !!(v->arch.pending_exceptions) ||
52                v->requests;
53 }
54
55 int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
56 {
57         return 1;
58 }
59
60 /*
61  * Common checks before entering the guest world.  Call with interrupts
62  * disabled.
63  *
64  * returns:
65  *
66  * == 1 if we're ready to go into guest state
67  * <= 0 if we need to go back to the host with return value
68  */
69 int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
70 {
71         int r;
72
73         WARN_ON(irqs_disabled());
74         hard_irq_disable();
75
76         while (true) {
77                 if (need_resched()) {
78                         local_irq_enable();
79                         cond_resched();
80                         hard_irq_disable();
81                         continue;
82                 }
83
84                 if (signal_pending(current)) {
85                         kvmppc_account_exit(vcpu, SIGNAL_EXITS);
86                         vcpu->run->exit_reason = KVM_EXIT_INTR;
87                         r = -EINTR;
88                         break;
89                 }
90
91                 vcpu->mode = IN_GUEST_MODE;
92
93                 /*
94                  * Reading vcpu->requests must happen after setting vcpu->mode,
95                  * so we don't miss a request because the requester sees
96                  * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
97                  * before next entering the guest (and thus doesn't IPI).
98                  */
99                 smp_mb();
100
101                 if (vcpu->requests) {
102                         /* Make sure we process requests preemptable */
103                         local_irq_enable();
104                         trace_kvm_check_requests(vcpu);
105                         r = kvmppc_core_check_requests(vcpu);
106                         hard_irq_disable();
107                         if (r > 0)
108                                 continue;
109                         break;
110                 }
111
112                 if (kvmppc_core_prepare_to_enter(vcpu)) {
113                         /* interrupts got enabled in between, so we
114                            are back at square 1 */
115                         continue;
116                 }
117
118                 kvm_guest_enter();
119                 return 1;
120         }
121
122         /* return to host */
123         local_irq_enable();
124         return r;
125 }
126 EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
127
128 #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
129 static void kvmppc_swab_shared(struct kvm_vcpu *vcpu)
130 {
131         struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared;
132         int i;
133
134         shared->sprg0 = swab64(shared->sprg0);
135         shared->sprg1 = swab64(shared->sprg1);
136         shared->sprg2 = swab64(shared->sprg2);
137         shared->sprg3 = swab64(shared->sprg3);
138         shared->srr0 = swab64(shared->srr0);
139         shared->srr1 = swab64(shared->srr1);
140         shared->dar = swab64(shared->dar);
141         shared->msr = swab64(shared->msr);
142         shared->dsisr = swab32(shared->dsisr);
143         shared->int_pending = swab32(shared->int_pending);
144         for (i = 0; i < ARRAY_SIZE(shared->sr); i++)
145                 shared->sr[i] = swab32(shared->sr[i]);
146 }
147 #endif
148
149 int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
150 {
151         int nr = kvmppc_get_gpr(vcpu, 11);
152         int r;
153         unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
154         unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
155         unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
156         unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
157         unsigned long r2 = 0;
158
159         if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
160                 /* 32 bit mode */
161                 param1 &= 0xffffffff;
162                 param2 &= 0xffffffff;
163                 param3 &= 0xffffffff;
164                 param4 &= 0xffffffff;
165         }
166
167         switch (nr) {
168         case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
169         {
170 #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
171                 /* Book3S can be little endian, find it out here */
172                 int shared_big_endian = true;
173                 if (vcpu->arch.intr_msr & MSR_LE)
174                         shared_big_endian = false;
175                 if (shared_big_endian != vcpu->arch.shared_big_endian)
176                         kvmppc_swab_shared(vcpu);
177                 vcpu->arch.shared_big_endian = shared_big_endian;
178 #endif
179
180                 if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) {
181                         /*
182                          * Older versions of the Linux magic page code had
183                          * a bug where they would map their trampoline code
184                          * NX. If that's the case, remove !PR NX capability.
185                          */
186                         vcpu->arch.disable_kernel_nx = true;
187                         kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
188                 }
189
190                 vcpu->arch.magic_page_pa = param1 & ~0xfffULL;
191                 vcpu->arch.magic_page_ea = param2 & ~0xfffULL;
192
193 #ifdef CONFIG_PPC_64K_PAGES
194                 /*
195                  * Make sure our 4k magic page is in the same window of a 64k
196                  * page within the guest and within the host's page.
197                  */
198                 if ((vcpu->arch.magic_page_pa & 0xf000) !=
199                     ((ulong)vcpu->arch.shared & 0xf000)) {
200                         void *old_shared = vcpu->arch.shared;
201                         ulong shared = (ulong)vcpu->arch.shared;
202                         void *new_shared;
203
204                         shared &= PAGE_MASK;
205                         shared |= vcpu->arch.magic_page_pa & 0xf000;
206                         new_shared = (void*)shared;
207                         memcpy(new_shared, old_shared, 0x1000);
208                         vcpu->arch.shared = new_shared;
209                 }
210 #endif
211
212                 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
213
214                 r = EV_SUCCESS;
215                 break;
216         }
217         case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
218                 r = EV_SUCCESS;
219 #if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
220                 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
221 #endif
222
223                 /* Second return value is in r4 */
224                 break;
225         case EV_HCALL_TOKEN(EV_IDLE):
226                 r = EV_SUCCESS;
227                 kvm_vcpu_block(vcpu);
228                 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
229                 break;
230         default:
231                 r = EV_UNIMPLEMENTED;
232                 break;
233         }
234
235         kvmppc_set_gpr(vcpu, 4, r2);
236
237         return r;
238 }
239 EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
240
241 int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
242 {
243         int r = false;
244
245         /* We have to know what CPU to virtualize */
246         if (!vcpu->arch.pvr)
247                 goto out;
248
249         /* PAPR only works with book3s_64 */
250         if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
251                 goto out;
252
253         /* HV KVM can only do PAPR mode for now */
254         if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
255                 goto out;
256
257 #ifdef CONFIG_KVM_BOOKE_HV
258         if (!cpu_has_feature(CPU_FTR_EMB_HV))
259                 goto out;
260 #endif
261
262         r = true;
263
264 out:
265         vcpu->arch.sane = r;
266         return r ? 0 : -EINVAL;
267 }
268 EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
269
270 int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
271 {
272         enum emulation_result er;
273         int r;
274
275         er = kvmppc_emulate_loadstore(vcpu);
276         switch (er) {
277         case EMULATE_DONE:
278                 /* Future optimization: only reload non-volatiles if they were
279                  * actually modified. */
280                 r = RESUME_GUEST_NV;
281                 break;
282         case EMULATE_AGAIN:
283                 r = RESUME_GUEST;
284                 break;
285         case EMULATE_DO_MMIO:
286                 run->exit_reason = KVM_EXIT_MMIO;
287                 /* We must reload nonvolatiles because "update" load/store
288                  * instructions modify register state. */
289                 /* Future optimization: only reload non-volatiles if they were
290                  * actually modified. */
291                 r = RESUME_HOST_NV;
292                 break;
293         case EMULATE_FAIL:
294         {
295                 u32 last_inst;
296
297                 kvmppc_get_last_inst(vcpu, false, &last_inst);
298                 /* XXX Deliver Program interrupt to guest. */
299                 pr_emerg("%s: emulation failed (%08x)\n", __func__, last_inst);
300                 r = RESUME_HOST;
301                 break;
302         }
303         default:
304                 WARN_ON(1);
305                 r = RESUME_GUEST;
306         }
307
308         return r;
309 }
310 EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
311
312 int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
313               bool data)
314 {
315         ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
316         struct kvmppc_pte pte;
317         int r;
318
319         vcpu->stat.st++;
320
321         r = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
322                          XLATE_WRITE, &pte);
323         if (r < 0)
324                 return r;
325
326         *eaddr = pte.raddr;
327
328         if (!pte.may_write)
329                 return -EPERM;
330
331         /* Magic page override */
332         if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
333             ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
334             !(kvmppc_get_msr(vcpu) & MSR_PR)) {
335                 void *magic = vcpu->arch.shared;
336                 magic += pte.eaddr & 0xfff;
337                 memcpy(magic, ptr, size);
338                 return EMULATE_DONE;
339         }
340
341         if (kvm_write_guest(vcpu->kvm, pte.raddr, ptr, size))
342                 return EMULATE_DO_MMIO;
343
344         return EMULATE_DONE;
345 }
346 EXPORT_SYMBOL_GPL(kvmppc_st);
347
348 int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
349                       bool data)
350 {
351         ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
352         struct kvmppc_pte pte;
353         int rc;
354
355         vcpu->stat.ld++;
356
357         rc = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
358                           XLATE_READ, &pte);
359         if (rc)
360                 return rc;
361
362         *eaddr = pte.raddr;
363
364         if (!pte.may_read)
365                 return -EPERM;
366
367         if (!data && !pte.may_execute)
368                 return -ENOEXEC;
369
370         /* Magic page override */
371         if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
372             ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
373             !(kvmppc_get_msr(vcpu) & MSR_PR)) {
374                 void *magic = vcpu->arch.shared;
375                 magic += pte.eaddr & 0xfff;
376                 memcpy(ptr, magic, size);
377                 return EMULATE_DONE;
378         }
379
380         if (kvm_read_guest(vcpu->kvm, pte.raddr, ptr, size))
381                 return EMULATE_DO_MMIO;
382
383         return EMULATE_DONE;
384 }
385 EXPORT_SYMBOL_GPL(kvmppc_ld);
386
387 int kvm_arch_hardware_enable(void *garbage)
388 {
389         return 0;
390 }
391
392 void kvm_arch_hardware_disable(void *garbage)
393 {
394 }
395
396 int kvm_arch_hardware_setup(void)
397 {
398         return 0;
399 }
400
401 void kvm_arch_hardware_unsetup(void)
402 {
403 }
404
405 void kvm_arch_check_processor_compat(void *rtn)
406 {
407         *(int *)rtn = kvmppc_core_check_processor_compat();
408 }
409
410 int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
411 {
412         struct kvmppc_ops *kvm_ops = NULL;
413         /*
414          * if we have both HV and PR enabled, default is HV
415          */
416         if (type == 0) {
417                 if (kvmppc_hv_ops)
418                         kvm_ops = kvmppc_hv_ops;
419                 else
420                         kvm_ops = kvmppc_pr_ops;
421                 if (!kvm_ops)
422                         goto err_out;
423         } else  if (type == KVM_VM_PPC_HV) {
424                 if (!kvmppc_hv_ops)
425                         goto err_out;
426                 kvm_ops = kvmppc_hv_ops;
427         } else if (type == KVM_VM_PPC_PR) {
428                 if (!kvmppc_pr_ops)
429                         goto err_out;
430                 kvm_ops = kvmppc_pr_ops;
431         } else
432                 goto err_out;
433
434         if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
435                 return -ENOENT;
436
437         kvm->arch.kvm_ops = kvm_ops;
438         return kvmppc_core_init_vm(kvm);
439 err_out:
440         return -EINVAL;
441 }
442
443 void kvm_arch_destroy_vm(struct kvm *kvm)
444 {
445         unsigned int i;
446         struct kvm_vcpu *vcpu;
447
448         kvm_for_each_vcpu(i, vcpu, kvm)
449                 kvm_arch_vcpu_free(vcpu);
450
451         mutex_lock(&kvm->lock);
452         for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
453                 kvm->vcpus[i] = NULL;
454
455         atomic_set(&kvm->online_vcpus, 0);
456
457         kvmppc_core_destroy_vm(kvm);
458
459         mutex_unlock(&kvm->lock);
460
461         /* drop the module reference */
462         module_put(kvm->arch.kvm_ops->owner);
463 }
464
465 void kvm_arch_sync_events(struct kvm *kvm)
466 {
467 }
468
469 int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
470 {
471         int r;
472         /* Assume we're using HV mode when the HV module is loaded */
473         int hv_enabled = kvmppc_hv_ops ? 1 : 0;
474
475         if (kvm) {
476                 /*
477                  * Hooray - we know which VM type we're running on. Depend on
478                  * that rather than the guess above.
479                  */
480                 hv_enabled = is_kvmppc_hv_enabled(kvm);
481         }
482
483         switch (ext) {
484 #ifdef CONFIG_BOOKE
485         case KVM_CAP_PPC_BOOKE_SREGS:
486         case KVM_CAP_PPC_BOOKE_WATCHDOG:
487         case KVM_CAP_PPC_EPR:
488 #else
489         case KVM_CAP_PPC_SEGSTATE:
490         case KVM_CAP_PPC_HIOR:
491         case KVM_CAP_PPC_PAPR:
492 #endif
493         case KVM_CAP_PPC_UNSET_IRQ:
494         case KVM_CAP_PPC_IRQ_LEVEL:
495         case KVM_CAP_ENABLE_CAP:
496         case KVM_CAP_ENABLE_CAP_VM:
497         case KVM_CAP_ONE_REG:
498         case KVM_CAP_IOEVENTFD:
499         case KVM_CAP_DEVICE_CTRL:
500                 r = 1;
501                 break;
502         case KVM_CAP_PPC_PAIRED_SINGLES:
503         case KVM_CAP_PPC_OSI:
504         case KVM_CAP_PPC_GET_PVINFO:
505 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
506         case KVM_CAP_SW_TLB:
507 #endif
508                 /* We support this only for PR */
509                 r = !hv_enabled;
510                 break;
511 #ifdef CONFIG_KVM_MMIO
512         case KVM_CAP_COALESCED_MMIO:
513                 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
514                 break;
515 #endif
516 #ifdef CONFIG_KVM_MPIC
517         case KVM_CAP_IRQ_MPIC:
518                 r = 1;
519                 break;
520 #endif
521
522 #ifdef CONFIG_PPC_BOOK3S_64
523         case KVM_CAP_SPAPR_TCE:
524         case KVM_CAP_PPC_ALLOC_HTAB:
525         case KVM_CAP_PPC_RTAS:
526         case KVM_CAP_PPC_FIXUP_HCALL:
527         case KVM_CAP_PPC_ENABLE_HCALL:
528 #ifdef CONFIG_KVM_XICS
529         case KVM_CAP_IRQ_XICS:
530 #endif
531                 r = 1;
532                 break;
533 #endif /* CONFIG_PPC_BOOK3S_64 */
534 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
535         case KVM_CAP_PPC_SMT:
536                 if (hv_enabled)
537                         r = threads_per_subcore;
538                 else
539                         r = 0;
540                 break;
541         case KVM_CAP_PPC_RMA:
542                 r = hv_enabled;
543                 /* PPC970 requires an RMA */
544                 if (r && cpu_has_feature(CPU_FTR_ARCH_201))
545                         r = 2;
546                 break;
547 #endif
548         case KVM_CAP_SYNC_MMU:
549 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
550                 if (hv_enabled)
551                         r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
552                 else
553                         r = 0;
554 #elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
555                 r = 1;
556 #else
557                 r = 0;
558 #endif
559                 break;
560 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
561         case KVM_CAP_PPC_HTAB_FD:
562                 r = hv_enabled;
563                 break;
564 #endif
565         case KVM_CAP_NR_VCPUS:
566                 /*
567                  * Recommending a number of CPUs is somewhat arbitrary; we
568                  * return the number of present CPUs for -HV (since a host
569                  * will have secondary threads "offline"), and for other KVM
570                  * implementations just count online CPUs.
571                  */
572                 if (hv_enabled)
573                         r = num_present_cpus();
574                 else
575                         r = num_online_cpus();
576                 break;
577         case KVM_CAP_MAX_VCPUS:
578                 r = KVM_MAX_VCPUS;
579                 break;
580 #ifdef CONFIG_PPC_BOOK3S_64
581         case KVM_CAP_PPC_GET_SMMU_INFO:
582                 r = 1;
583                 break;
584 #endif
585         default:
586                 r = 0;
587                 break;
588         }
589         return r;
590
591 }
592
593 long kvm_arch_dev_ioctl(struct file *filp,
594                         unsigned int ioctl, unsigned long arg)
595 {
596         return -EINVAL;
597 }
598
599 void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
600                            struct kvm_memory_slot *dont)
601 {
602         kvmppc_core_free_memslot(kvm, free, dont);
603 }
604
605 int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
606                             unsigned long npages)
607 {
608         return kvmppc_core_create_memslot(kvm, slot, npages);
609 }
610
611 void kvm_arch_memslots_updated(struct kvm *kvm)
612 {
613 }
614
615 int kvm_arch_prepare_memory_region(struct kvm *kvm,
616                                    struct kvm_memory_slot *memslot,
617                                    struct kvm_userspace_memory_region *mem,
618                                    enum kvm_mr_change change)
619 {
620         return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
621 }
622
623 void kvm_arch_commit_memory_region(struct kvm *kvm,
624                                    struct kvm_userspace_memory_region *mem,
625                                    const struct kvm_memory_slot *old,
626                                    enum kvm_mr_change change)
627 {
628         kvmppc_core_commit_memory_region(kvm, mem, old);
629 }
630
631 void kvm_arch_flush_shadow_all(struct kvm *kvm)
632 {
633 }
634
635 void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
636                                    struct kvm_memory_slot *slot)
637 {
638         kvmppc_core_flush_memslot(kvm, slot);
639 }
640
641 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
642 {
643         struct kvm_vcpu *vcpu;
644         vcpu = kvmppc_core_vcpu_create(kvm, id);
645         if (!IS_ERR(vcpu)) {
646                 vcpu->arch.wqp = &vcpu->wq;
647                 kvmppc_create_vcpu_debugfs(vcpu, id);
648         }
649         return vcpu;
650 }
651
652 int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
653 {
654         return 0;
655 }
656
657 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
658 {
659         /* Make sure we're not using the vcpu anymore */
660         hrtimer_cancel(&vcpu->arch.dec_timer);
661         tasklet_kill(&vcpu->arch.tasklet);
662
663         kvmppc_remove_vcpu_debugfs(vcpu);
664
665         switch (vcpu->arch.irq_type) {
666         case KVMPPC_IRQ_MPIC:
667                 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
668                 break;
669         case KVMPPC_IRQ_XICS:
670                 kvmppc_xics_free_icp(vcpu);
671                 break;
672         }
673
674         kvmppc_core_vcpu_free(vcpu);
675 }
676
677 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
678 {
679         kvm_arch_vcpu_free(vcpu);
680 }
681
682 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
683 {
684         return kvmppc_core_pending_dec(vcpu);
685 }
686
687 /*
688  * low level hrtimer wake routine. Because this runs in hardirq context
689  * we schedule a tasklet to do the real work.
690  */
691 enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
692 {
693         struct kvm_vcpu *vcpu;
694
695         vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
696         tasklet_schedule(&vcpu->arch.tasklet);
697
698         return HRTIMER_NORESTART;
699 }
700
701 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
702 {
703         int ret;
704
705         hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
706         tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
707         vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
708         vcpu->arch.dec_expires = ~(u64)0;
709
710 #ifdef CONFIG_KVM_EXIT_TIMING
711         mutex_init(&vcpu->arch.exit_timing_lock);
712 #endif
713         ret = kvmppc_subarch_vcpu_init(vcpu);
714         return ret;
715 }
716
717 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
718 {
719         kvmppc_mmu_destroy(vcpu);
720         kvmppc_subarch_vcpu_uninit(vcpu);
721 }
722
723 void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
724 {
725 }
726
727 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
728 {
729 #ifdef CONFIG_BOOKE
730         /*
731          * vrsave (formerly usprg0) isn't used by Linux, but may
732          * be used by the guest.
733          *
734          * On non-booke this is associated with Altivec and
735          * is handled by code in book3s.c.
736          */
737         mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
738 #endif
739         kvmppc_core_vcpu_load(vcpu, cpu);
740 }
741
742 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
743 {
744         kvmppc_core_vcpu_put(vcpu);
745 #ifdef CONFIG_BOOKE
746         vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
747 #endif
748 }
749
750 static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
751                                       struct kvm_run *run)
752 {
753         u64 uninitialized_var(gpr);
754
755         if (run->mmio.len > sizeof(gpr)) {
756                 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
757                 return;
758         }
759
760         if (vcpu->arch.mmio_is_bigendian) {
761                 switch (run->mmio.len) {
762                 case 8: gpr = *(u64 *)run->mmio.data; break;
763                 case 4: gpr = *(u32 *)run->mmio.data; break;
764                 case 2: gpr = *(u16 *)run->mmio.data; break;
765                 case 1: gpr = *(u8 *)run->mmio.data; break;
766                 }
767         } else {
768                 /* Convert BE data from userland back to LE. */
769                 switch (run->mmio.len) {
770                 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
771                 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
772                 case 1: gpr = *(u8 *)run->mmio.data; break;
773                 }
774         }
775
776         if (vcpu->arch.mmio_sign_extend) {
777                 switch (run->mmio.len) {
778 #ifdef CONFIG_PPC64
779                 case 4:
780                         gpr = (s64)(s32)gpr;
781                         break;
782 #endif
783                 case 2:
784                         gpr = (s64)(s16)gpr;
785                         break;
786                 case 1:
787                         gpr = (s64)(s8)gpr;
788                         break;
789                 }
790         }
791
792         kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
793
794         switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
795         case KVM_MMIO_REG_GPR:
796                 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
797                 break;
798         case KVM_MMIO_REG_FPR:
799                 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
800                 break;
801 #ifdef CONFIG_PPC_BOOK3S
802         case KVM_MMIO_REG_QPR:
803                 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
804                 break;
805         case KVM_MMIO_REG_FQPR:
806                 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
807                 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
808                 break;
809 #endif
810         default:
811                 BUG();
812         }
813 }
814
815 int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
816                        unsigned int rt, unsigned int bytes,
817                        int is_default_endian)
818 {
819         int idx, ret;
820         int is_bigendian;
821
822         if (kvmppc_need_byteswap(vcpu)) {
823                 /* Default endianness is "little endian". */
824                 is_bigendian = !is_default_endian;
825         } else {
826                 /* Default endianness is "big endian". */
827                 is_bigendian = is_default_endian;
828         }
829
830         if (bytes > sizeof(run->mmio.data)) {
831                 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
832                        run->mmio.len);
833         }
834
835         run->mmio.phys_addr = vcpu->arch.paddr_accessed;
836         run->mmio.len = bytes;
837         run->mmio.is_write = 0;
838
839         vcpu->arch.io_gpr = rt;
840         vcpu->arch.mmio_is_bigendian = is_bigendian;
841         vcpu->mmio_needed = 1;
842         vcpu->mmio_is_write = 0;
843         vcpu->arch.mmio_sign_extend = 0;
844
845         idx = srcu_read_lock(&vcpu->kvm->srcu);
846
847         ret = kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
848                               bytes, &run->mmio.data);
849
850         srcu_read_unlock(&vcpu->kvm->srcu, idx);
851
852         if (!ret) {
853                 kvmppc_complete_mmio_load(vcpu, run);
854                 vcpu->mmio_needed = 0;
855                 return EMULATE_DONE;
856         }
857
858         return EMULATE_DO_MMIO;
859 }
860 EXPORT_SYMBOL_GPL(kvmppc_handle_load);
861
862 /* Same as above, but sign extends */
863 int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
864                         unsigned int rt, unsigned int bytes,
865                         int is_default_endian)
866 {
867         int r;
868
869         vcpu->arch.mmio_sign_extend = 1;
870         r = kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian);
871
872         return r;
873 }
874
875 int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
876                         u64 val, unsigned int bytes, int is_default_endian)
877 {
878         void *data = run->mmio.data;
879         int idx, ret;
880         int is_bigendian;
881
882         if (kvmppc_need_byteswap(vcpu)) {
883                 /* Default endianness is "little endian". */
884                 is_bigendian = !is_default_endian;
885         } else {
886                 /* Default endianness is "big endian". */
887                 is_bigendian = is_default_endian;
888         }
889
890         if (bytes > sizeof(run->mmio.data)) {
891                 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
892                        run->mmio.len);
893         }
894
895         run->mmio.phys_addr = vcpu->arch.paddr_accessed;
896         run->mmio.len = bytes;
897         run->mmio.is_write = 1;
898         vcpu->mmio_needed = 1;
899         vcpu->mmio_is_write = 1;
900
901         /* Store the value at the lowest bytes in 'data'. */
902         if (is_bigendian) {
903                 switch (bytes) {
904                 case 8: *(u64 *)data = val; break;
905                 case 4: *(u32 *)data = val; break;
906                 case 2: *(u16 *)data = val; break;
907                 case 1: *(u8  *)data = val; break;
908                 }
909         } else {
910                 /* Store LE value into 'data'. */
911                 switch (bytes) {
912                 case 4: st_le32(data, val); break;
913                 case 2: st_le16(data, val); break;
914                 case 1: *(u8 *)data = val; break;
915                 }
916         }
917
918         idx = srcu_read_lock(&vcpu->kvm->srcu);
919
920         ret = kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
921                                bytes, &run->mmio.data);
922
923         srcu_read_unlock(&vcpu->kvm->srcu, idx);
924
925         if (!ret) {
926                 vcpu->mmio_needed = 0;
927                 return EMULATE_DONE;
928         }
929
930         return EMULATE_DO_MMIO;
931 }
932 EXPORT_SYMBOL_GPL(kvmppc_handle_store);
933
934 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
935 {
936         int r;
937         sigset_t sigsaved;
938
939         if (vcpu->sigset_active)
940                 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
941
942         if (vcpu->mmio_needed) {
943                 if (!vcpu->mmio_is_write)
944                         kvmppc_complete_mmio_load(vcpu, run);
945                 vcpu->mmio_needed = 0;
946         } else if (vcpu->arch.osi_needed) {
947                 u64 *gprs = run->osi.gprs;
948                 int i;
949
950                 for (i = 0; i < 32; i++)
951                         kvmppc_set_gpr(vcpu, i, gprs[i]);
952                 vcpu->arch.osi_needed = 0;
953         } else if (vcpu->arch.hcall_needed) {
954                 int i;
955
956                 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
957                 for (i = 0; i < 9; ++i)
958                         kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
959                 vcpu->arch.hcall_needed = 0;
960 #ifdef CONFIG_BOOKE
961         } else if (vcpu->arch.epr_needed) {
962                 kvmppc_set_epr(vcpu, run->epr.epr);
963                 vcpu->arch.epr_needed = 0;
964 #endif
965         }
966
967         r = kvmppc_vcpu_run(run, vcpu);
968
969         if (vcpu->sigset_active)
970                 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
971
972         return r;
973 }
974
975 int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
976 {
977         if (irq->irq == KVM_INTERRUPT_UNSET) {
978                 kvmppc_core_dequeue_external(vcpu);
979                 return 0;
980         }
981
982         kvmppc_core_queue_external(vcpu, irq);
983
984         kvm_vcpu_kick(vcpu);
985
986         return 0;
987 }
988
989 static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
990                                      struct kvm_enable_cap *cap)
991 {
992         int r;
993
994         if (cap->flags)
995                 return -EINVAL;
996
997         switch (cap->cap) {
998         case KVM_CAP_PPC_OSI:
999                 r = 0;
1000                 vcpu->arch.osi_enabled = true;
1001                 break;
1002         case KVM_CAP_PPC_PAPR:
1003                 r = 0;
1004                 vcpu->arch.papr_enabled = true;
1005                 break;
1006         case KVM_CAP_PPC_EPR:
1007                 r = 0;
1008                 if (cap->args[0])
1009                         vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
1010                 else
1011                         vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
1012                 break;
1013 #ifdef CONFIG_BOOKE
1014         case KVM_CAP_PPC_BOOKE_WATCHDOG:
1015                 r = 0;
1016                 vcpu->arch.watchdog_enabled = true;
1017                 break;
1018 #endif
1019 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
1020         case KVM_CAP_SW_TLB: {
1021                 struct kvm_config_tlb cfg;
1022                 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
1023
1024                 r = -EFAULT;
1025                 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
1026                         break;
1027
1028                 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
1029                 break;
1030         }
1031 #endif
1032 #ifdef CONFIG_KVM_MPIC
1033         case KVM_CAP_IRQ_MPIC: {
1034                 struct fd f;
1035                 struct kvm_device *dev;
1036
1037                 r = -EBADF;
1038                 f = fdget(cap->args[0]);
1039                 if (!f.file)
1040                         break;
1041
1042                 r = -EPERM;
1043                 dev = kvm_device_from_filp(f.file);
1044                 if (dev)
1045                         r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
1046
1047                 fdput(f);
1048                 break;
1049         }
1050 #endif
1051 #ifdef CONFIG_KVM_XICS
1052         case KVM_CAP_IRQ_XICS: {
1053                 struct fd f;
1054                 struct kvm_device *dev;
1055
1056                 r = -EBADF;
1057                 f = fdget(cap->args[0]);
1058                 if (!f.file)
1059                         break;
1060
1061                 r = -EPERM;
1062                 dev = kvm_device_from_filp(f.file);
1063                 if (dev)
1064                         r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
1065
1066                 fdput(f);
1067                 break;
1068         }
1069 #endif /* CONFIG_KVM_XICS */
1070         default:
1071                 r = -EINVAL;
1072                 break;
1073         }
1074
1075         if (!r)
1076                 r = kvmppc_sanity_check(vcpu);
1077
1078         return r;
1079 }
1080
1081 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
1082                                     struct kvm_mp_state *mp_state)
1083 {
1084         return -EINVAL;
1085 }
1086
1087 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
1088                                     struct kvm_mp_state *mp_state)
1089 {
1090         return -EINVAL;
1091 }
1092
1093 long kvm_arch_vcpu_ioctl(struct file *filp,
1094                          unsigned int ioctl, unsigned long arg)
1095 {
1096         struct kvm_vcpu *vcpu = filp->private_data;
1097         void __user *argp = (void __user *)arg;
1098         long r;
1099
1100         switch (ioctl) {
1101         case KVM_INTERRUPT: {
1102                 struct kvm_interrupt irq;
1103                 r = -EFAULT;
1104                 if (copy_from_user(&irq, argp, sizeof(irq)))
1105                         goto out;
1106                 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
1107                 goto out;
1108         }
1109
1110         case KVM_ENABLE_CAP:
1111         {
1112                 struct kvm_enable_cap cap;
1113                 r = -EFAULT;
1114                 if (copy_from_user(&cap, argp, sizeof(cap)))
1115                         goto out;
1116                 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1117                 break;
1118         }
1119
1120         case KVM_SET_ONE_REG:
1121         case KVM_GET_ONE_REG:
1122         {
1123                 struct kvm_one_reg reg;
1124                 r = -EFAULT;
1125                 if (copy_from_user(&reg, argp, sizeof(reg)))
1126                         goto out;
1127                 if (ioctl == KVM_SET_ONE_REG)
1128                         r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
1129                 else
1130                         r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
1131                 break;
1132         }
1133
1134 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
1135         case KVM_DIRTY_TLB: {
1136                 struct kvm_dirty_tlb dirty;
1137                 r = -EFAULT;
1138                 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1139                         goto out;
1140                 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1141                 break;
1142         }
1143 #endif
1144         default:
1145                 r = -EINVAL;
1146         }
1147
1148 out:
1149         return r;
1150 }
1151
1152 int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1153 {
1154         return VM_FAULT_SIGBUS;
1155 }
1156
1157 static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1158 {
1159         u32 inst_nop = 0x60000000;
1160 #ifdef CONFIG_KVM_BOOKE_HV
1161         u32 inst_sc1 = 0x44000022;
1162         pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
1163         pvinfo->hcall[1] = cpu_to_be32(inst_nop);
1164         pvinfo->hcall[2] = cpu_to_be32(inst_nop);
1165         pvinfo->hcall[3] = cpu_to_be32(inst_nop);
1166 #else
1167         u32 inst_lis = 0x3c000000;
1168         u32 inst_ori = 0x60000000;
1169         u32 inst_sc = 0x44000002;
1170         u32 inst_imm_mask = 0xffff;
1171
1172         /*
1173          * The hypercall to get into KVM from within guest context is as
1174          * follows:
1175          *
1176          *    lis r0, r0, KVM_SC_MAGIC_R0@h
1177          *    ori r0, KVM_SC_MAGIC_R0@l
1178          *    sc
1179          *    nop
1180          */
1181         pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
1182         pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
1183         pvinfo->hcall[2] = cpu_to_be32(inst_sc);
1184         pvinfo->hcall[3] = cpu_to_be32(inst_nop);
1185 #endif
1186
1187         pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1188
1189         return 0;
1190 }
1191
1192 int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1193                           bool line_status)
1194 {
1195         if (!irqchip_in_kernel(kvm))
1196                 return -ENXIO;
1197
1198         irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1199                                         irq_event->irq, irq_event->level,
1200                                         line_status);
1201         return 0;
1202 }
1203
1204
1205 static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1206                                    struct kvm_enable_cap *cap)
1207 {
1208         int r;
1209
1210         if (cap->flags)
1211                 return -EINVAL;
1212
1213         switch (cap->cap) {
1214 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1215         case KVM_CAP_PPC_ENABLE_HCALL: {
1216                 unsigned long hcall = cap->args[0];
1217
1218                 r = -EINVAL;
1219                 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
1220                     cap->args[1] > 1)
1221                         break;
1222                 if (!kvmppc_book3s_hcall_implemented(kvm, hcall))
1223                         break;
1224                 if (cap->args[1])
1225                         set_bit(hcall / 4, kvm->arch.enabled_hcalls);
1226                 else
1227                         clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
1228                 r = 0;
1229                 break;
1230         }
1231 #endif
1232         default:
1233                 r = -EINVAL;
1234                 break;
1235         }
1236
1237         return r;
1238 }
1239
1240 long kvm_arch_vm_ioctl(struct file *filp,
1241                        unsigned int ioctl, unsigned long arg)
1242 {
1243         struct kvm *kvm __maybe_unused = filp->private_data;
1244         void __user *argp = (void __user *)arg;
1245         long r;
1246
1247         switch (ioctl) {
1248         case KVM_PPC_GET_PVINFO: {
1249                 struct kvm_ppc_pvinfo pvinfo;
1250                 memset(&pvinfo, 0, sizeof(pvinfo));
1251                 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1252                 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1253                         r = -EFAULT;
1254                         goto out;
1255                 }
1256
1257                 break;
1258         }
1259         case KVM_ENABLE_CAP:
1260         {
1261                 struct kvm_enable_cap cap;
1262                 r = -EFAULT;
1263                 if (copy_from_user(&cap, argp, sizeof(cap)))
1264                         goto out;
1265                 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1266                 break;
1267         }
1268 #ifdef CONFIG_PPC_BOOK3S_64
1269         case KVM_CREATE_SPAPR_TCE: {
1270                 struct kvm_create_spapr_tce create_tce;
1271
1272                 r = -EFAULT;
1273                 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1274                         goto out;
1275                 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
1276                 goto out;
1277         }
1278         case KVM_PPC_GET_SMMU_INFO: {
1279                 struct kvm_ppc_smmu_info info;
1280                 struct kvm *kvm = filp->private_data;
1281
1282                 memset(&info, 0, sizeof(info));
1283                 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
1284                 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1285                         r = -EFAULT;
1286                 break;
1287         }
1288         case KVM_PPC_RTAS_DEFINE_TOKEN: {
1289                 struct kvm *kvm = filp->private_data;
1290
1291                 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1292                 break;
1293         }
1294         default: {
1295                 struct kvm *kvm = filp->private_data;
1296                 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1297         }
1298 #else /* CONFIG_PPC_BOOK3S_64 */
1299         default:
1300                 r = -ENOTTY;
1301 #endif
1302         }
1303 out:
1304         return r;
1305 }
1306
1307 static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1308 static unsigned long nr_lpids;
1309
1310 long kvmppc_alloc_lpid(void)
1311 {
1312         long lpid;
1313
1314         do {
1315                 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1316                 if (lpid >= nr_lpids) {
1317                         pr_err("%s: No LPIDs free\n", __func__);
1318                         return -ENOMEM;
1319                 }
1320         } while (test_and_set_bit(lpid, lpid_inuse));
1321
1322         return lpid;
1323 }
1324 EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
1325
1326 void kvmppc_claim_lpid(long lpid)
1327 {
1328         set_bit(lpid, lpid_inuse);
1329 }
1330 EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
1331
1332 void kvmppc_free_lpid(long lpid)
1333 {
1334         clear_bit(lpid, lpid_inuse);
1335 }
1336 EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
1337
1338 void kvmppc_init_lpid(unsigned long nr_lpids_param)
1339 {
1340         nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1341         memset(lpid_inuse, 0, sizeof(lpid_inuse));
1342 }
1343 EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
1344
1345 int kvm_arch_init(void *opaque)
1346 {
1347         return 0;
1348 }
1349
1350 void kvm_arch_exit(void)
1351 {
1352
1353 }
1354
1355 EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ppc_instr);