132bb0d9c5ad3248681b20b7220f5f06d0d1648a
[pandora-kernel.git] / arch / arm / kvm / arm.c
1 /*
2  * Copyright (C) 2012 - Virtual Open Systems and Columbia University
3  * Author: Christoffer Dall <c.dall@virtualopensystems.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License, version 2, as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18
19 #include <linux/cpu.h>
20 #include <linux/cpu_pm.h>
21 #include <linux/errno.h>
22 #include <linux/err.h>
23 #include <linux/kvm_host.h>
24 #include <linux/module.h>
25 #include <linux/vmalloc.h>
26 #include <linux/fs.h>
27 #include <linux/mman.h>
28 #include <linux/sched.h>
29 #include <linux/kvm.h>
30 #include <trace/events/kvm.h>
31
32 #define CREATE_TRACE_POINTS
33 #include "trace.h"
34
35 #include <asm/uaccess.h>
36 #include <asm/ptrace.h>
37 #include <asm/mman.h>
38 #include <asm/tlbflush.h>
39 #include <asm/cacheflush.h>
40 #include <asm/virt.h>
41 #include <asm/kvm_arm.h>
42 #include <asm/kvm_asm.h>
43 #include <asm/kvm_mmu.h>
44 #include <asm/kvm_emulate.h>
45 #include <asm/kvm_coproc.h>
46 #include <asm/kvm_psci.h>
47
48 #ifdef REQUIRES_VIRT
49 __asm__(".arch_extension        virt");
50 #endif
51
52 static DEFINE_PER_CPU(unsigned long, kvm_arm_hyp_stack_page);
53 static kvm_cpu_context_t __percpu *kvm_host_cpu_state;
54 static unsigned long hyp_default_vectors;
55
56 /* Per-CPU variable containing the currently running vcpu. */
57 static DEFINE_PER_CPU(struct kvm_vcpu *, kvm_arm_running_vcpu);
58
59 /* The VMID used in the VTTBR */
60 static atomic64_t kvm_vmid_gen = ATOMIC64_INIT(1);
61 static u8 kvm_next_vmid;
62 static DEFINE_SPINLOCK(kvm_vmid_lock);
63
64 static bool vgic_present;
65
66 static void kvm_arm_set_running_vcpu(struct kvm_vcpu *vcpu)
67 {
68         BUG_ON(preemptible());
69         __this_cpu_write(kvm_arm_running_vcpu, vcpu);
70 }
71
72 /**
73  * kvm_arm_get_running_vcpu - get the vcpu running on the current CPU.
74  * Must be called from non-preemptible context
75  */
76 struct kvm_vcpu *kvm_arm_get_running_vcpu(void)
77 {
78         BUG_ON(preemptible());
79         return __this_cpu_read(kvm_arm_running_vcpu);
80 }
81
82 /**
83  * kvm_arm_get_running_vcpus - get the per-CPU array of currently running vcpus.
84  */
85 struct kvm_vcpu __percpu **kvm_get_running_vcpus(void)
86 {
87         return &kvm_arm_running_vcpu;
88 }
89
90 int kvm_arch_hardware_enable(void *garbage)
91 {
92         return 0;
93 }
94
95 int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
96 {
97         return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
98 }
99
100 int kvm_arch_hardware_setup(void)
101 {
102         return 0;
103 }
104
105 void kvm_arch_check_processor_compat(void *rtn)
106 {
107         *(int *)rtn = 0;
108 }
109
110
111 /**
112  * kvm_arch_init_vm - initializes a VM data structure
113  * @kvm:        pointer to the KVM struct
114  */
115 int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
116 {
117         int ret = 0;
118
119         if (type)
120                 return -EINVAL;
121
122         ret = kvm_alloc_stage2_pgd(kvm);
123         if (ret)
124                 goto out_fail_alloc;
125
126         ret = create_hyp_mappings(kvm, kvm + 1);
127         if (ret)
128                 goto out_free_stage2_pgd;
129
130         kvm_timer_init(kvm);
131
132         /* Mark the initial VMID generation invalid */
133         kvm->arch.vmid_gen = 0;
134
135         return ret;
136 out_free_stage2_pgd:
137         kvm_free_stage2_pgd(kvm);
138 out_fail_alloc:
139         return ret;
140 }
141
142 int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
143 {
144         return VM_FAULT_SIGBUS;
145 }
146
147
148 /**
149  * kvm_arch_destroy_vm - destroy the VM data structure
150  * @kvm:        pointer to the KVM struct
151  */
152 void kvm_arch_destroy_vm(struct kvm *kvm)
153 {
154         int i;
155
156         kvm_free_stage2_pgd(kvm);
157
158         for (i = 0; i < KVM_MAX_VCPUS; ++i) {
159                 if (kvm->vcpus[i]) {
160                         kvm_arch_vcpu_free(kvm->vcpus[i]);
161                         kvm->vcpus[i] = NULL;
162                 }
163         }
164 }
165
166 int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
167 {
168         int r;
169         switch (ext) {
170         case KVM_CAP_IRQCHIP:
171                 r = vgic_present;
172                 break;
173         case KVM_CAP_DEVICE_CTRL:
174         case KVM_CAP_USER_MEMORY:
175         case KVM_CAP_SYNC_MMU:
176         case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
177         case KVM_CAP_ONE_REG:
178         case KVM_CAP_ARM_PSCI:
179         case KVM_CAP_ARM_PSCI_0_2:
180                 r = 1;
181                 break;
182         case KVM_CAP_COALESCED_MMIO:
183                 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
184                 break;
185         case KVM_CAP_ARM_SET_DEVICE_ADDR:
186                 r = 1;
187                 break;
188         case KVM_CAP_NR_VCPUS:
189                 r = num_online_cpus();
190                 break;
191         case KVM_CAP_MAX_VCPUS:
192                 r = KVM_MAX_VCPUS;
193                 break;
194         default:
195                 r = kvm_arch_dev_ioctl_check_extension(ext);
196                 break;
197         }
198         return r;
199 }
200
201 long kvm_arch_dev_ioctl(struct file *filp,
202                         unsigned int ioctl, unsigned long arg)
203 {
204         return -EINVAL;
205 }
206
207
208 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
209 {
210         int err;
211         struct kvm_vcpu *vcpu;
212
213         vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
214         if (!vcpu) {
215                 err = -ENOMEM;
216                 goto out;
217         }
218
219         err = kvm_vcpu_init(vcpu, kvm, id);
220         if (err)
221                 goto free_vcpu;
222
223         err = create_hyp_mappings(vcpu, vcpu + 1);
224         if (err)
225                 goto vcpu_uninit;
226
227         return vcpu;
228 vcpu_uninit:
229         kvm_vcpu_uninit(vcpu);
230 free_vcpu:
231         kmem_cache_free(kvm_vcpu_cache, vcpu);
232 out:
233         return ERR_PTR(err);
234 }
235
236 int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
237 {
238         return 0;
239 }
240
241 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
242 {
243         kvm_mmu_free_memory_caches(vcpu);
244         kvm_timer_vcpu_terminate(vcpu);
245         kmem_cache_free(kvm_vcpu_cache, vcpu);
246 }
247
248 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
249 {
250         kvm_arch_vcpu_free(vcpu);
251 }
252
253 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
254 {
255         return 0;
256 }
257
258 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
259 {
260         int ret;
261
262         /* Force users to call KVM_ARM_VCPU_INIT */
263         vcpu->arch.target = -1;
264
265         /* Set up VGIC */
266         ret = kvm_vgic_vcpu_init(vcpu);
267         if (ret)
268                 return ret;
269
270         /* Set up the timer */
271         kvm_timer_vcpu_init(vcpu);
272
273         return 0;
274 }
275
276 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
277 {
278         vcpu->cpu = cpu;
279         vcpu->arch.host_cpu_context = this_cpu_ptr(kvm_host_cpu_state);
280
281         /*
282          * Check whether this vcpu requires the cache to be flushed on
283          * this physical CPU. This is a consequence of doing dcache
284          * operations by set/way on this vcpu. We do it here to be in
285          * a non-preemptible section.
286          */
287         if (cpumask_test_and_clear_cpu(cpu, &vcpu->arch.require_dcache_flush))
288                 flush_cache_all(); /* We'd really want v7_flush_dcache_all() */
289
290         kvm_arm_set_running_vcpu(vcpu);
291 }
292
293 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
294 {
295         /*
296          * The arch-generic KVM code expects the cpu field of a vcpu to be -1
297          * if the vcpu is no longer assigned to a cpu.  This is used for the
298          * optimized make_all_cpus_request path.
299          */
300         vcpu->cpu = -1;
301
302         kvm_arm_set_running_vcpu(NULL);
303 }
304
305 int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
306                                         struct kvm_guest_debug *dbg)
307 {
308         return -EINVAL;
309 }
310
311
312 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
313                                     struct kvm_mp_state *mp_state)
314 {
315         return -EINVAL;
316 }
317
318 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
319                                     struct kvm_mp_state *mp_state)
320 {
321         return -EINVAL;
322 }
323
324 /**
325  * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled
326  * @v:          The VCPU pointer
327  *
328  * If the guest CPU is not waiting for interrupts or an interrupt line is
329  * asserted, the CPU is by definition runnable.
330  */
331 int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
332 {
333         return !!v->arch.irq_lines || kvm_vgic_vcpu_pending_irq(v);
334 }
335
336 /* Just ensure a guest exit from a particular CPU */
337 static void exit_vm_noop(void *info)
338 {
339 }
340
341 void force_vm_exit(const cpumask_t *mask)
342 {
343         smp_call_function_many(mask, exit_vm_noop, NULL, true);
344 }
345
346 /**
347  * need_new_vmid_gen - check that the VMID is still valid
348  * @kvm: The VM's VMID to checkt
349  *
350  * return true if there is a new generation of VMIDs being used
351  *
352  * The hardware supports only 256 values with the value zero reserved for the
353  * host, so we check if an assigned value belongs to a previous generation,
354  * which which requires us to assign a new value. If we're the first to use a
355  * VMID for the new generation, we must flush necessary caches and TLBs on all
356  * CPUs.
357  */
358 static bool need_new_vmid_gen(struct kvm *kvm)
359 {
360         return unlikely(kvm->arch.vmid_gen != atomic64_read(&kvm_vmid_gen));
361 }
362
363 /**
364  * update_vttbr - Update the VTTBR with a valid VMID before the guest runs
365  * @kvm The guest that we are about to run
366  *
367  * Called from kvm_arch_vcpu_ioctl_run before entering the guest to ensure the
368  * VM has a valid VMID, otherwise assigns a new one and flushes corresponding
369  * caches and TLBs.
370  */
371 static void update_vttbr(struct kvm *kvm)
372 {
373         phys_addr_t pgd_phys;
374         u64 vmid;
375
376         if (!need_new_vmid_gen(kvm))
377                 return;
378
379         spin_lock(&kvm_vmid_lock);
380
381         /*
382          * We need to re-check the vmid_gen here to ensure that if another vcpu
383          * already allocated a valid vmid for this vm, then this vcpu should
384          * use the same vmid.
385          */
386         if (!need_new_vmid_gen(kvm)) {
387                 spin_unlock(&kvm_vmid_lock);
388                 return;
389         }
390
391         /* First user of a new VMID generation? */
392         if (unlikely(kvm_next_vmid == 0)) {
393                 atomic64_inc(&kvm_vmid_gen);
394                 kvm_next_vmid = 1;
395
396                 /*
397                  * On SMP we know no other CPUs can use this CPU's or each
398                  * other's VMID after force_vm_exit returns since the
399                  * kvm_vmid_lock blocks them from reentry to the guest.
400                  */
401                 force_vm_exit(cpu_all_mask);
402                 /*
403                  * Now broadcast TLB + ICACHE invalidation over the inner
404                  * shareable domain to make sure all data structures are
405                  * clean.
406                  */
407                 kvm_call_hyp(__kvm_flush_vm_context);
408         }
409
410         kvm->arch.vmid_gen = atomic64_read(&kvm_vmid_gen);
411         kvm->arch.vmid = kvm_next_vmid;
412         kvm_next_vmid++;
413
414         /* update vttbr to be used with the new vmid */
415         pgd_phys = virt_to_phys(kvm->arch.pgd);
416         vmid = ((u64)(kvm->arch.vmid) << VTTBR_VMID_SHIFT) & VTTBR_VMID_MASK;
417         kvm->arch.vttbr = pgd_phys & VTTBR_BADDR_MASK;
418         kvm->arch.vttbr |= vmid;
419
420         spin_unlock(&kvm_vmid_lock);
421 }
422
423 static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu)
424 {
425         int ret;
426
427         if (likely(vcpu->arch.has_run_once))
428                 return 0;
429
430         vcpu->arch.has_run_once = true;
431
432         /*
433          * Initialize the VGIC before running a vcpu the first time on
434          * this VM.
435          */
436         if (unlikely(!vgic_initialized(vcpu->kvm))) {
437                 ret = kvm_vgic_init(vcpu->kvm);
438                 if (ret)
439                         return ret;
440         }
441
442         return 0;
443 }
444
445 static void vcpu_pause(struct kvm_vcpu *vcpu)
446 {
447         wait_queue_head_t *wq = kvm_arch_vcpu_wq(vcpu);
448
449         wait_event_interruptible(*wq, !vcpu->arch.pause);
450 }
451
452 static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
453 {
454         return vcpu->arch.target >= 0;
455 }
456
457 /**
458  * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code
459  * @vcpu:       The VCPU pointer
460  * @run:        The kvm_run structure pointer used for userspace state exchange
461  *
462  * This function is called through the VCPU_RUN ioctl called from user space. It
463  * will execute VM code in a loop until the time slice for the process is used
464  * or some emulation is needed from user space in which case the function will
465  * return with return value 0 and with the kvm_run structure filled in with the
466  * required data for the requested emulation.
467  */
468 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
469 {
470         int ret;
471         sigset_t sigsaved;
472
473         if (unlikely(!kvm_vcpu_initialized(vcpu)))
474                 return -ENOEXEC;
475
476         ret = kvm_vcpu_first_run_init(vcpu);
477         if (ret)
478                 return ret;
479
480         if (run->exit_reason == KVM_EXIT_MMIO) {
481                 ret = kvm_handle_mmio_return(vcpu, vcpu->run);
482                 if (ret)
483                         return ret;
484         }
485
486         if (vcpu->sigset_active)
487                 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
488
489         ret = 1;
490         run->exit_reason = KVM_EXIT_UNKNOWN;
491         while (ret > 0) {
492                 /*
493                  * Check conditions before entering the guest
494                  */
495                 cond_resched();
496
497                 update_vttbr(vcpu->kvm);
498
499                 if (vcpu->arch.pause)
500                         vcpu_pause(vcpu);
501
502                 kvm_vgic_flush_hwstate(vcpu);
503                 kvm_timer_flush_hwstate(vcpu);
504
505                 local_irq_disable();
506
507                 /*
508                  * Re-check atomic conditions
509                  */
510                 if (signal_pending(current)) {
511                         ret = -EINTR;
512                         run->exit_reason = KVM_EXIT_INTR;
513                 }
514
515                 if (ret <= 0 || need_new_vmid_gen(vcpu->kvm)) {
516                         local_irq_enable();
517                         kvm_timer_sync_hwstate(vcpu);
518                         kvm_vgic_sync_hwstate(vcpu);
519                         continue;
520                 }
521
522                 /**************************************************************
523                  * Enter the guest
524                  */
525                 trace_kvm_entry(*vcpu_pc(vcpu));
526                 kvm_guest_enter();
527                 vcpu->mode = IN_GUEST_MODE;
528
529                 ret = kvm_call_hyp(__kvm_vcpu_run, vcpu);
530
531                 vcpu->mode = OUTSIDE_GUEST_MODE;
532                 vcpu->arch.last_pcpu = smp_processor_id();
533                 kvm_guest_exit();
534                 trace_kvm_exit(*vcpu_pc(vcpu));
535                 /*
536                  * We may have taken a host interrupt in HYP mode (ie
537                  * while executing the guest). This interrupt is still
538                  * pending, as we haven't serviced it yet!
539                  *
540                  * We're now back in SVC mode, with interrupts
541                  * disabled.  Enabling the interrupts now will have
542                  * the effect of taking the interrupt again, in SVC
543                  * mode this time.
544                  */
545                 local_irq_enable();
546
547                 /*
548                  * Back from guest
549                  *************************************************************/
550
551                 kvm_timer_sync_hwstate(vcpu);
552                 kvm_vgic_sync_hwstate(vcpu);
553
554                 ret = handle_exit(vcpu, run, ret);
555         }
556
557         if (vcpu->sigset_active)
558                 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
559         return ret;
560 }
561
562 static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level)
563 {
564         int bit_index;
565         bool set;
566         unsigned long *ptr;
567
568         if (number == KVM_ARM_IRQ_CPU_IRQ)
569                 bit_index = __ffs(HCR_VI);
570         else /* KVM_ARM_IRQ_CPU_FIQ */
571                 bit_index = __ffs(HCR_VF);
572
573         ptr = (unsigned long *)&vcpu->arch.irq_lines;
574         if (level)
575                 set = test_and_set_bit(bit_index, ptr);
576         else
577                 set = test_and_clear_bit(bit_index, ptr);
578
579         /*
580          * If we didn't change anything, no need to wake up or kick other CPUs
581          */
582         if (set == level)
583                 return 0;
584
585         /*
586          * The vcpu irq_lines field was updated, wake up sleeping VCPUs and
587          * trigger a world-switch round on the running physical CPU to set the
588          * virtual IRQ/FIQ fields in the HCR appropriately.
589          */
590         kvm_vcpu_kick(vcpu);
591
592         return 0;
593 }
594
595 int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
596                           bool line_status)
597 {
598         u32 irq = irq_level->irq;
599         unsigned int irq_type, vcpu_idx, irq_num;
600         int nrcpus = atomic_read(&kvm->online_vcpus);
601         struct kvm_vcpu *vcpu = NULL;
602         bool level = irq_level->level;
603
604         irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK;
605         vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK;
606         irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK;
607
608         trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level);
609
610         switch (irq_type) {
611         case KVM_ARM_IRQ_TYPE_CPU:
612                 if (irqchip_in_kernel(kvm))
613                         return -ENXIO;
614
615                 if (vcpu_idx >= nrcpus)
616                         return -EINVAL;
617
618                 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
619                 if (!vcpu)
620                         return -EINVAL;
621
622                 if (irq_num > KVM_ARM_IRQ_CPU_FIQ)
623                         return -EINVAL;
624
625                 return vcpu_interrupt_line(vcpu, irq_num, level);
626         case KVM_ARM_IRQ_TYPE_PPI:
627                 if (!irqchip_in_kernel(kvm))
628                         return -ENXIO;
629
630                 if (vcpu_idx >= nrcpus)
631                         return -EINVAL;
632
633                 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
634                 if (!vcpu)
635                         return -EINVAL;
636
637                 if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS)
638                         return -EINVAL;
639
640                 return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level);
641         case KVM_ARM_IRQ_TYPE_SPI:
642                 if (!irqchip_in_kernel(kvm))
643                         return -ENXIO;
644
645                 if (irq_num < VGIC_NR_PRIVATE_IRQS ||
646                     irq_num > KVM_ARM_IRQ_GIC_MAX)
647                         return -EINVAL;
648
649                 return kvm_vgic_inject_irq(kvm, 0, irq_num, level);
650         }
651
652         return -EINVAL;
653 }
654
655 static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu,
656                                          struct kvm_vcpu_init *init)
657 {
658         int ret;
659
660         ret = kvm_vcpu_set_target(vcpu, init);
661         if (ret)
662                 return ret;
663
664         /*
665          * Handle the "start in power-off" case by marking the VCPU as paused.
666          */
667         if (__test_and_clear_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features))
668                 vcpu->arch.pause = true;
669
670         return 0;
671 }
672
673 long kvm_arch_vcpu_ioctl(struct file *filp,
674                          unsigned int ioctl, unsigned long arg)
675 {
676         struct kvm_vcpu *vcpu = filp->private_data;
677         void __user *argp = (void __user *)arg;
678
679         switch (ioctl) {
680         case KVM_ARM_VCPU_INIT: {
681                 struct kvm_vcpu_init init;
682
683                 if (copy_from_user(&init, argp, sizeof(init)))
684                         return -EFAULT;
685
686                 return kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init);
687         }
688         case KVM_SET_ONE_REG:
689         case KVM_GET_ONE_REG: {
690                 struct kvm_one_reg reg;
691
692                 if (unlikely(!kvm_vcpu_initialized(vcpu)))
693                         return -ENOEXEC;
694
695                 if (copy_from_user(&reg, argp, sizeof(reg)))
696                         return -EFAULT;
697                 if (ioctl == KVM_SET_ONE_REG)
698                         return kvm_arm_set_reg(vcpu, &reg);
699                 else
700                         return kvm_arm_get_reg(vcpu, &reg);
701         }
702         case KVM_GET_REG_LIST: {
703                 struct kvm_reg_list __user *user_list = argp;
704                 struct kvm_reg_list reg_list;
705                 unsigned n;
706
707                 if (unlikely(!kvm_vcpu_initialized(vcpu)))
708                         return -ENOEXEC;
709
710                 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
711                         return -EFAULT;
712                 n = reg_list.n;
713                 reg_list.n = kvm_arm_num_regs(vcpu);
714                 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
715                         return -EFAULT;
716                 if (n < reg_list.n)
717                         return -E2BIG;
718                 return kvm_arm_copy_reg_indices(vcpu, user_list->reg);
719         }
720         default:
721                 return -EINVAL;
722         }
723 }
724
725 int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
726 {
727         return -EINVAL;
728 }
729
730 static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm,
731                                         struct kvm_arm_device_addr *dev_addr)
732 {
733         unsigned long dev_id, type;
734
735         dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >>
736                 KVM_ARM_DEVICE_ID_SHIFT;
737         type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >>
738                 KVM_ARM_DEVICE_TYPE_SHIFT;
739
740         switch (dev_id) {
741         case KVM_ARM_DEVICE_VGIC_V2:
742                 if (!vgic_present)
743                         return -ENXIO;
744                 return kvm_vgic_addr(kvm, type, &dev_addr->addr, true);
745         default:
746                 return -ENODEV;
747         }
748 }
749
750 long kvm_arch_vm_ioctl(struct file *filp,
751                        unsigned int ioctl, unsigned long arg)
752 {
753         struct kvm *kvm = filp->private_data;
754         void __user *argp = (void __user *)arg;
755
756         switch (ioctl) {
757         case KVM_CREATE_IRQCHIP: {
758                 if (vgic_present)
759                         return kvm_vgic_create(kvm);
760                 else
761                         return -ENXIO;
762         }
763         case KVM_ARM_SET_DEVICE_ADDR: {
764                 struct kvm_arm_device_addr dev_addr;
765
766                 if (copy_from_user(&dev_addr, argp, sizeof(dev_addr)))
767                         return -EFAULT;
768                 return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr);
769         }
770         case KVM_ARM_PREFERRED_TARGET: {
771                 int err;
772                 struct kvm_vcpu_init init;
773
774                 err = kvm_vcpu_preferred_target(&init);
775                 if (err)
776                         return err;
777
778                 if (copy_to_user(argp, &init, sizeof(init)))
779                         return -EFAULT;
780
781                 return 0;
782         }
783         default:
784                 return -EINVAL;
785         }
786 }
787
788 static void cpu_init_hyp_mode(void *dummy)
789 {
790         phys_addr_t boot_pgd_ptr;
791         phys_addr_t pgd_ptr;
792         unsigned long hyp_stack_ptr;
793         unsigned long stack_page;
794         unsigned long vector_ptr;
795
796         /* Switch from the HYP stub to our own HYP init vector */
797         __hyp_set_vectors(kvm_get_idmap_vector());
798
799         boot_pgd_ptr = kvm_mmu_get_boot_httbr();
800         pgd_ptr = kvm_mmu_get_httbr();
801         stack_page = __this_cpu_read(kvm_arm_hyp_stack_page);
802         hyp_stack_ptr = stack_page + PAGE_SIZE;
803         vector_ptr = (unsigned long)__kvm_hyp_vector;
804
805         __cpu_init_hyp_mode(boot_pgd_ptr, pgd_ptr, hyp_stack_ptr, vector_ptr);
806 }
807
808 static int hyp_init_cpu_notify(struct notifier_block *self,
809                                unsigned long action, void *cpu)
810 {
811         switch (action) {
812         case CPU_STARTING:
813         case CPU_STARTING_FROZEN:
814                 cpu_init_hyp_mode(NULL);
815                 break;
816         }
817
818         return NOTIFY_OK;
819 }
820
821 static struct notifier_block hyp_init_cpu_nb = {
822         .notifier_call = hyp_init_cpu_notify,
823 };
824
825 #ifdef CONFIG_CPU_PM
826 static int hyp_init_cpu_pm_notifier(struct notifier_block *self,
827                                     unsigned long cmd,
828                                     void *v)
829 {
830         if (cmd == CPU_PM_EXIT &&
831             __hyp_get_vectors() == hyp_default_vectors) {
832                 cpu_init_hyp_mode(NULL);
833                 return NOTIFY_OK;
834         }
835
836         return NOTIFY_DONE;
837 }
838
839 static struct notifier_block hyp_init_cpu_pm_nb = {
840         .notifier_call = hyp_init_cpu_pm_notifier,
841 };
842
843 static void __init hyp_cpu_pm_init(void)
844 {
845         cpu_pm_register_notifier(&hyp_init_cpu_pm_nb);
846 }
847 #else
848 static inline void hyp_cpu_pm_init(void)
849 {
850 }
851 #endif
852
853 /**
854  * Inits Hyp-mode on all online CPUs
855  */
856 static int init_hyp_mode(void)
857 {
858         int cpu;
859         int err = 0;
860
861         /*
862          * Allocate Hyp PGD and setup Hyp identity mapping
863          */
864         err = kvm_mmu_init();
865         if (err)
866                 goto out_err;
867
868         /*
869          * It is probably enough to obtain the default on one
870          * CPU. It's unlikely to be different on the others.
871          */
872         hyp_default_vectors = __hyp_get_vectors();
873
874         /*
875          * Allocate stack pages for Hypervisor-mode
876          */
877         for_each_possible_cpu(cpu) {
878                 unsigned long stack_page;
879
880                 stack_page = __get_free_page(GFP_KERNEL);
881                 if (!stack_page) {
882                         err = -ENOMEM;
883                         goto out_free_stack_pages;
884                 }
885
886                 per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page;
887         }
888
889         /*
890          * Map the Hyp-code called directly from the host
891          */
892         err = create_hyp_mappings(__kvm_hyp_code_start, __kvm_hyp_code_end);
893         if (err) {
894                 kvm_err("Cannot map world-switch code\n");
895                 goto out_free_mappings;
896         }
897
898         /*
899          * Map the Hyp stack pages
900          */
901         for_each_possible_cpu(cpu) {
902                 char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu);
903                 err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE);
904
905                 if (err) {
906                         kvm_err("Cannot map hyp stack\n");
907                         goto out_free_mappings;
908                 }
909         }
910
911         /*
912          * Map the host CPU structures
913          */
914         kvm_host_cpu_state = alloc_percpu(kvm_cpu_context_t);
915         if (!kvm_host_cpu_state) {
916                 err = -ENOMEM;
917                 kvm_err("Cannot allocate host CPU state\n");
918                 goto out_free_mappings;
919         }
920
921         for_each_possible_cpu(cpu) {
922                 kvm_cpu_context_t *cpu_ctxt;
923
924                 cpu_ctxt = per_cpu_ptr(kvm_host_cpu_state, cpu);
925                 err = create_hyp_mappings(cpu_ctxt, cpu_ctxt + 1);
926
927                 if (err) {
928                         kvm_err("Cannot map host CPU state: %d\n", err);
929                         goto out_free_context;
930                 }
931         }
932
933         /*
934          * Execute the init code on each CPU.
935          */
936         on_each_cpu(cpu_init_hyp_mode, NULL, 1);
937
938         /*
939          * Init HYP view of VGIC
940          */
941         err = kvm_vgic_hyp_init();
942         if (err)
943                 goto out_free_context;
944
945 #ifdef CONFIG_KVM_ARM_VGIC
946                 vgic_present = true;
947 #endif
948
949         /*
950          * Init HYP architected timer support
951          */
952         err = kvm_timer_hyp_init();
953         if (err)
954                 goto out_free_mappings;
955
956 #ifndef CONFIG_HOTPLUG_CPU
957         free_boot_hyp_pgd();
958 #endif
959
960         kvm_perf_init();
961
962         kvm_info("Hyp mode initialized successfully\n");
963
964         return 0;
965 out_free_context:
966         free_percpu(kvm_host_cpu_state);
967 out_free_mappings:
968         free_hyp_pgds();
969 out_free_stack_pages:
970         for_each_possible_cpu(cpu)
971                 free_page(per_cpu(kvm_arm_hyp_stack_page, cpu));
972 out_err:
973         kvm_err("error initializing Hyp mode: %d\n", err);
974         return err;
975 }
976
977 static void check_kvm_target_cpu(void *ret)
978 {
979         *(int *)ret = kvm_target_cpu();
980 }
981
982 /**
983  * Initialize Hyp-mode and memory mappings on all CPUs.
984  */
985 int kvm_arch_init(void *opaque)
986 {
987         int err;
988         int ret, cpu;
989
990         if (!is_hyp_mode_available()) {
991                 kvm_err("HYP mode not available\n");
992                 return -ENODEV;
993         }
994
995         for_each_online_cpu(cpu) {
996                 smp_call_function_single(cpu, check_kvm_target_cpu, &ret, 1);
997                 if (ret < 0) {
998                         kvm_err("Error, CPU %d not supported!\n", cpu);
999                         return -ENODEV;
1000                 }
1001         }
1002
1003         cpu_notifier_register_begin();
1004
1005         err = init_hyp_mode();
1006         if (err)
1007                 goto out_err;
1008
1009         err = __register_cpu_notifier(&hyp_init_cpu_nb);
1010         if (err) {
1011                 kvm_err("Cannot register HYP init CPU notifier (%d)\n", err);
1012                 goto out_err;
1013         }
1014
1015         cpu_notifier_register_done();
1016
1017         hyp_cpu_pm_init();
1018
1019         kvm_coproc_table_init();
1020         return 0;
1021 out_err:
1022         cpu_notifier_register_done();
1023         return err;
1024 }
1025
1026 /* NOP: Compiling as a module not supported */
1027 void kvm_arch_exit(void)
1028 {
1029         kvm_perf_teardown();
1030 }
1031
1032 static int arm_init(void)
1033 {
1034         int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1035         return rc;
1036 }
1037
1038 module_init(arm_init);