blob: 005a7b5fd0aa8c149e3d76f96f7e14e729a300e9 [file] [log] [blame]
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001/*
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
Marc Zyngierd157f4a2013-04-12 19:12:07 +010019#include <linux/cpu.h>
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +010020#include <linux/cpu_pm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050021#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>
Christoffer Dall86ce8532013-01-20 18:28:08 -050029#include <linux/kvm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050030#include <trace/events/kvm.h>
31
32#define CREATE_TRACE_POINTS
33#include "trace.h"
34
Christoffer Dall749cf76c2013-01-20 18:28:06 -050035#include <asm/uaccess.h>
36#include <asm/ptrace.h>
37#include <asm/mman.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050038#include <asm/tlbflush.h>
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050039#include <asm/cacheflush.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050040#include <asm/virt.h>
41#include <asm/kvm_arm.h>
42#include <asm/kvm_asm.h>
43#include <asm/kvm_mmu.h>
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050044#include <asm/kvm_emulate.h>
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050045#include <asm/kvm_coproc.h>
Marc Zyngieraa024c22013-01-20 18:28:13 -050046#include <asm/kvm_psci.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050047
48#ifdef REQUIRES_VIRT
49__asm__(".arch_extension virt");
50#endif
51
Christoffer Dall342cd0a2013-01-20 18:28:06 -050052static DEFINE_PER_CPU(unsigned long, kvm_arm_hyp_stack_page);
Marc Zyngier3de50da2013-04-08 16:47:19 +010053static kvm_cpu_context_t __percpu *kvm_host_cpu_state;
Christoffer Dall342cd0a2013-01-20 18:28:06 -050054static unsigned long hyp_default_vectors;
55
Marc Zyngier1638a122013-01-21 19:36:11 -050056/* Per-CPU variable containing the currently running vcpu. */
57static DEFINE_PER_CPU(struct kvm_vcpu *, kvm_arm_running_vcpu);
58
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050059/* The VMID used in the VTTBR */
60static atomic64_t kvm_vmid_gen = ATOMIC64_INIT(1);
61static u8 kvm_next_vmid;
62static DEFINE_SPINLOCK(kvm_vmid_lock);
Christoffer Dall342cd0a2013-01-20 18:28:06 -050063
Marc Zyngier1a89dd92013-01-21 19:36:12 -050064static bool vgic_present;
65
Marc Zyngier1638a122013-01-21 19:36:11 -050066static void kvm_arm_set_running_vcpu(struct kvm_vcpu *vcpu)
67{
68 BUG_ON(preemptible());
Christoph Lameter1436c1a2013-10-21 13:17:08 +010069 __this_cpu_write(kvm_arm_running_vcpu, vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050070}
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 */
76struct kvm_vcpu *kvm_arm_get_running_vcpu(void)
77{
78 BUG_ON(preemptible());
Christoph Lameter1436c1a2013-10-21 13:17:08 +010079 return __this_cpu_read(kvm_arm_running_vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050080}
81
82/**
83 * kvm_arm_get_running_vcpus - get the per-CPU array of currently running vcpus.
84 */
85struct kvm_vcpu __percpu **kvm_get_running_vcpus(void)
86{
87 return &kvm_arm_running_vcpu;
88}
89
Radim Krčmář13a34e02014-08-28 15:13:03 +020090int kvm_arch_hardware_enable(void)
Christoffer Dall749cf76c2013-01-20 18:28:06 -050091{
92 return 0;
93}
94
95int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
96{
97 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
98}
99
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500100int kvm_arch_hardware_setup(void)
101{
102 return 0;
103}
104
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500105void kvm_arch_check_processor_compat(void *rtn)
106{
107 *(int *)rtn = 0;
108}
109
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500110
Christoffer Dalld5d81842013-01-20 18:28:07 -0500111/**
112 * kvm_arch_init_vm - initializes a VM data structure
113 * @kvm: pointer to the KVM struct
114 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500115int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
116{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500117 int ret = 0;
118
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500119 if (type)
120 return -EINVAL;
121
Christoffer Dalld5d81842013-01-20 18:28:07 -0500122 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
Christoffer Dalla1a64382013-11-16 10:51:25 -0800130 kvm_timer_init(kvm);
131
Christoffer Dalld5d81842013-01-20 18:28:07 -0500132 /* Mark the initial VMID generation invalid */
133 kvm->arch.vmid_gen = 0;
134
135 return ret;
136out_free_stage2_pgd:
137 kvm_free_stage2_pgd(kvm);
138out_fail_alloc:
139 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500140}
141
142int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
143{
144 return VM_FAULT_SIGBUS;
145}
146
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500147
Christoffer Dalld5d81842013-01-20 18:28:07 -0500148/**
149 * kvm_arch_destroy_vm - destroy the VM data structure
150 * @kvm: pointer to the KVM struct
151 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500152void kvm_arch_destroy_vm(struct kvm *kvm)
153{
154 int i;
155
Christoffer Dalld5d81842013-01-20 18:28:07 -0500156 kvm_free_stage2_pgd(kvm);
157
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500158 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
Alexander Graf784aa3d2014-07-14 18:27:35 +0200166int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500167{
168 int r;
169 switch (ext) {
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500170 case KVM_CAP_IRQCHIP:
171 r = vgic_present;
172 break;
Christoffer Dall73306722013-10-25 17:29:18 +0100173 case KVM_CAP_DEVICE_CTRL:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500174 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:
Marc Zyngieraa024c22013-01-20 18:28:13 -0500178 case KVM_CAP_ARM_PSCI:
Anup Patel4447a202014-04-29 11:24:25 +0530179 case KVM_CAP_ARM_PSCI_0_2:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500180 r = 1;
181 break;
182 case KVM_CAP_COALESCED_MMIO:
183 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
184 break;
Christoffer Dall3401d5462013-01-23 13:18:04 -0500185 case KVM_CAP_ARM_SET_DEVICE_ADDR:
186 r = 1;
Marc Zyngierca46e102013-04-03 10:43:13 +0100187 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500188 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:
Marc Zyngier17b1e312013-04-08 16:47:18 +0100195 r = kvm_arch_dev_ioctl_check_extension(ext);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500196 break;
197 }
198 return r;
199}
200
201long kvm_arch_dev_ioctl(struct file *filp,
202 unsigned int ioctl, unsigned long arg)
203{
204 return -EINVAL;
205}
206
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500207
208struct 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
Christoffer Dalld5d81842013-01-20 18:28:07 -0500223 err = create_hyp_mappings(vcpu, vcpu + 1);
224 if (err)
225 goto vcpu_uninit;
226
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500227 return vcpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500228vcpu_uninit:
229 kvm_vcpu_uninit(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500230free_vcpu:
231 kmem_cache_free(kvm_vcpu_cache, vcpu);
232out:
233 return ERR_PTR(err);
234}
235
236int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
237{
238 return 0;
239}
240
241void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
242{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500243 kvm_mmu_free_memory_caches(vcpu);
Marc Zyngier967f8422013-01-23 13:21:59 -0500244 kvm_timer_vcpu_terminate(vcpu);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500245 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500246}
247
248void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
249{
250 kvm_arch_vcpu_free(vcpu);
251}
252
253int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
254{
255 return 0;
256}
257
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500258int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
259{
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500260 int ret;
261
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500262 /* Force users to call KVM_ARM_VCPU_INIT */
263 vcpu->arch.target = -1;
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500264
265 /* Set up VGIC */
266 ret = kvm_vgic_vcpu_init(vcpu);
267 if (ret)
268 return ret;
269
Marc Zyngier967f8422013-01-23 13:21:59 -0500270 /* Set up the timer */
271 kvm_timer_vcpu_init(vcpu);
272
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500273 return 0;
274}
275
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500276void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
277{
Christoffer Dall86ce8532013-01-20 18:28:08 -0500278 vcpu->cpu = cpu;
Marc Zyngier3de50da2013-04-08 16:47:19 +0100279 vcpu->arch.host_cpu_context = this_cpu_ptr(kvm_host_cpu_state);
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500280
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() */
Marc Zyngier1638a122013-01-21 19:36:11 -0500289
290 kvm_arm_set_running_vcpu(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500291}
292
293void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
294{
Christoffer Dalle9b152c2013-12-11 20:29:11 -0800295 /*
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
Marc Zyngier1638a122013-01-21 19:36:11 -0500302 kvm_arm_set_running_vcpu(NULL);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500303}
304
305int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
306 struct kvm_guest_debug *dbg)
307{
308 return -EINVAL;
309}
310
311
312int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
313 struct kvm_mp_state *mp_state)
314{
315 return -EINVAL;
316}
317
318int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
319 struct kvm_mp_state *mp_state)
320{
321 return -EINVAL;
322}
323
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500324/**
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 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500331int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
332{
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500333 return !!v->arch.irq_lines || kvm_vgic_vcpu_pending_irq(v);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500334}
335
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500336/* Just ensure a guest exit from a particular CPU */
337static void exit_vm_noop(void *info)
338{
339}
340
341void 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 */
358static 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 */
371static 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
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500423static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu)
424{
Christoffer Dalle1ba0202013-09-23 14:55:55 -0700425 int ret;
426
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500427 if (likely(vcpu->arch.has_run_once))
428 return 0;
429
430 vcpu->arch.has_run_once = true;
Marc Zyngieraa024c22013-01-20 18:28:13 -0500431
432 /*
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500433 * Initialize the VGIC before running a vcpu the first time on
434 * this VM.
435 */
Christoffer Dalle1ba0202013-09-23 14:55:55 -0700436 if (unlikely(!vgic_initialized(vcpu->kvm))) {
437 ret = kvm_vgic_init(vcpu->kvm);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500438 if (ret)
439 return ret;
440 }
441
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500442 return 0;
443}
444
Marc Zyngieraa024c22013-01-20 18:28:13 -0500445static 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
Andre Przywarae8180dc2013-05-09 00:28:06 +0200452static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
453{
454 return vcpu->arch.target >= 0;
455}
456
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500457/**
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 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500468int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
469{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500470 int ret;
471 sigset_t sigsaved;
472
Andre Przywarae8180dc2013-05-09 00:28:06 +0200473 if (unlikely(!kvm_vcpu_initialized(vcpu)))
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500474 return -ENOEXEC;
475
476 ret = kvm_vcpu_first_run_init(vcpu);
477 if (ret)
478 return ret;
479
Christoffer Dall45e96ea2013-01-20 18:43:58 -0500480 if (run->exit_reason == KVM_EXIT_MMIO) {
481 ret = kvm_handle_mmio_return(vcpu, vcpu->run);
482 if (ret)
483 return ret;
484 }
485
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500486 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
Marc Zyngieraa024c22013-01-20 18:28:13 -0500499 if (vcpu->arch.pause)
500 vcpu_pause(vcpu);
501
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500502 kvm_vgic_flush_hwstate(vcpu);
Marc Zyngierc7e3ba62013-01-23 13:21:59 -0500503 kvm_timer_flush_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500504
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500505 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();
Marc Zyngierc7e3ba62013-01-23 13:21:59 -0500517 kvm_timer_sync_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500518 kvm_vgic_sync_hwstate(vcpu);
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500519 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;
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500532 vcpu->arch.last_pcpu = smp_processor_id();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500533 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
Marc Zyngierc7e3ba62013-01-23 13:21:59 -0500551 kvm_timer_sync_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500552 kvm_vgic_sync_hwstate(vcpu);
553
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500554 ret = handle_exit(vcpu, run, ret);
555 }
556
557 if (vcpu->sigset_active)
558 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
559 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500560}
561
Christoffer Dall86ce8532013-01-20 18:28:08 -0500562static 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
Alexander Graf79558f12013-04-16 19:21:41 +0200595int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
596 bool line_status)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500597{
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
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500610 switch (irq_type) {
611 case KVM_ARM_IRQ_TYPE_CPU:
612 if (irqchip_in_kernel(kvm))
613 return -ENXIO;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500614
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500615 if (vcpu_idx >= nrcpus)
616 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500617
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500618 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
619 if (!vcpu)
620 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500621
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500622 if (irq_num > KVM_ARM_IRQ_CPU_FIQ)
623 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500624
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500625 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;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500653}
654
Christoffer Dall478a8232013-11-19 17:43:19 -0800655static 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
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500673long 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
Christoffer Dall478a8232013-11-19 17:43:19 -0800686 return kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500687 }
688 case KVM_SET_ONE_REG:
689 case KVM_GET_ONE_REG: {
690 struct kvm_one_reg reg;
Andre Przywarae8180dc2013-05-09 00:28:06 +0200691
692 if (unlikely(!kvm_vcpu_initialized(vcpu)))
693 return -ENOEXEC;
694
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500695 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
Andre Przywarae8180dc2013-05-09 00:28:06 +0200707 if (unlikely(!kvm_vcpu_initialized(vcpu)))
708 return -ENOEXEC;
709
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500710 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
725int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
726{
727 return -EINVAL;
728}
729
Christoffer Dall3401d5462013-01-23 13:18:04 -0500730static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm,
731 struct kvm_arm_device_addr *dev_addr)
732{
Christoffer Dall330690c2013-01-21 19:36:13 -0500733 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;
Christoffer Dallce01e4e2013-09-23 14:55:56 -0700744 return kvm_vgic_addr(kvm, type, &dev_addr->addr, true);
Christoffer Dall330690c2013-01-21 19:36:13 -0500745 default:
746 return -ENODEV;
747 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500748}
749
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500750long kvm_arch_vm_ioctl(struct file *filp,
751 unsigned int ioctl, unsigned long arg)
752{
Christoffer Dall3401d5462013-01-23 13:18:04 -0500753 struct kvm *kvm = filp->private_data;
754 void __user *argp = (void __user *)arg;
755
756 switch (ioctl) {
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500757 case KVM_CREATE_IRQCHIP: {
758 if (vgic_present)
759 return kvm_vgic_create(kvm);
760 else
761 return -ENXIO;
762 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500763 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 }
Anup Patel42c4e0c2013-09-30 14:20:07 +0530770 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 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500783 default:
784 return -EINVAL;
785 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500786}
787
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100788static void cpu_init_hyp_mode(void *dummy)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500789{
Marc Zyngierdac288f2013-05-14 12:11:37 +0100790 phys_addr_t boot_pgd_ptr;
791 phys_addr_t pgd_ptr;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500792 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 */
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100797 __hyp_set_vectors(kvm_get_idmap_vector());
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500798
Marc Zyngierdac288f2013-05-14 12:11:37 +0100799 boot_pgd_ptr = kvm_mmu_get_boot_httbr();
800 pgd_ptr = kvm_mmu_get_httbr();
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100801 stack_page = __this_cpu_read(kvm_arm_hyp_stack_page);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500802 hyp_stack_ptr = stack_page + PAGE_SIZE;
803 vector_ptr = (unsigned long)__kvm_hyp_vector;
804
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100805 __cpu_init_hyp_mode(boot_pgd_ptr, pgd_ptr, hyp_stack_ptr, vector_ptr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500806}
807
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100808static 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
821static struct notifier_block hyp_init_cpu_nb = {
822 .notifier_call = hyp_init_cpu_notify,
823};
824
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +0100825#ifdef CONFIG_CPU_PM
826static int hyp_init_cpu_pm_notifier(struct notifier_block *self,
827 unsigned long cmd,
828 void *v)
829{
Marc Zyngierb20c9f22014-02-26 18:47:36 +0000830 if (cmd == CPU_PM_EXIT &&
831 __hyp_get_vectors() == hyp_default_vectors) {
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +0100832 cpu_init_hyp_mode(NULL);
833 return NOTIFY_OK;
834 }
835
836 return NOTIFY_DONE;
837}
838
839static struct notifier_block hyp_init_cpu_pm_nb = {
840 .notifier_call = hyp_init_cpu_pm_notifier,
841};
842
843static void __init hyp_cpu_pm_init(void)
844{
845 cpu_pm_register_notifier(&hyp_init_cpu_pm_nb);
846}
847#else
848static inline void hyp_cpu_pm_init(void)
849{
850}
851#endif
852
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500853/**
854 * Inits Hyp-mode on all online CPUs
855 */
856static int init_hyp_mode(void)
857{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500858 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 /*
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500890 * 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 /*
Marc Zyngier3de50da2013-04-08 16:47:19 +0100912 * Map the host CPU structures
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500913 */
Marc Zyngier3de50da2013-04-08 16:47:19 +0100914 kvm_host_cpu_state = alloc_percpu(kvm_cpu_context_t);
915 if (!kvm_host_cpu_state) {
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500916 err = -ENOMEM;
Marc Zyngier3de50da2013-04-08 16:47:19 +0100917 kvm_err("Cannot allocate host CPU state\n");
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500918 goto out_free_mappings;
919 }
920
921 for_each_possible_cpu(cpu) {
Marc Zyngier3de50da2013-04-08 16:47:19 +0100922 kvm_cpu_context_t *cpu_ctxt;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500923
Marc Zyngier3de50da2013-04-08 16:47:19 +0100924 cpu_ctxt = per_cpu_ptr(kvm_host_cpu_state, cpu);
925 err = create_hyp_mappings(cpu_ctxt, cpu_ctxt + 1);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500926
927 if (err) {
Marc Zyngier3de50da2013-04-08 16:47:19 +0100928 kvm_err("Cannot map host CPU state: %d\n", err);
929 goto out_free_context;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500930 }
931 }
932
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500933 /*
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100934 * Execute the init code on each CPU.
935 */
936 on_each_cpu(cpu_init_hyp_mode, NULL, 1);
937
938 /*
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500939 * Init HYP view of VGIC
940 */
941 err = kvm_vgic_hyp_init();
942 if (err)
Marc Zyngier3de50da2013-04-08 16:47:19 +0100943 goto out_free_context;
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500944
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500945#ifdef CONFIG_KVM_ARM_VGIC
946 vgic_present = true;
947#endif
948
Marc Zyngier967f8422013-01-23 13:21:59 -0500949 /*
950 * Init HYP architected timer support
951 */
952 err = kvm_timer_hyp_init();
953 if (err)
954 goto out_free_mappings;
955
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100956#ifndef CONFIG_HOTPLUG_CPU
957 free_boot_hyp_pgd();
958#endif
959
Marc Zyngier210552c2013-03-05 03:18:00 +0000960 kvm_perf_init();
961
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500962 kvm_info("Hyp mode initialized successfully\n");
Marc Zyngier210552c2013-03-05 03:18:00 +0000963
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500964 return 0;
Marc Zyngier3de50da2013-04-08 16:47:19 +0100965out_free_context:
966 free_percpu(kvm_host_cpu_state);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500967out_free_mappings:
Marc Zyngier4f728272013-04-12 19:12:05 +0100968 free_hyp_pgds();
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500969out_free_stack_pages:
970 for_each_possible_cpu(cpu)
971 free_page(per_cpu(kvm_arm_hyp_stack_page, cpu));
972out_err:
973 kvm_err("error initializing Hyp mode: %d\n", err);
974 return err;
975}
976
Andre Przywarad4e071c2013-04-17 12:52:01 +0200977static void check_kvm_target_cpu(void *ret)
978{
979 *(int *)ret = kvm_target_cpu();
980}
981
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500982/**
983 * Initialize Hyp-mode and memory mappings on all CPUs.
984 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500985int kvm_arch_init(void *opaque)
986{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500987 int err;
Andre Przywarad4e071c2013-04-17 12:52:01 +0200988 int ret, cpu;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500989
990 if (!is_hyp_mode_available()) {
991 kvm_err("HYP mode not available\n");
992 return -ENODEV;
993 }
994
Andre Przywarad4e071c2013-04-17 12:52:01 +0200995 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 }
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001001 }
1002
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301003 cpu_notifier_register_begin();
1004
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001005 err = init_hyp_mode();
1006 if (err)
1007 goto out_err;
1008
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301009 err = __register_cpu_notifier(&hyp_init_cpu_nb);
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001010 if (err) {
1011 kvm_err("Cannot register HYP init CPU notifier (%d)\n", err);
1012 goto out_err;
1013 }
1014
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301015 cpu_notifier_register_done();
1016
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001017 hyp_cpu_pm_init();
1018
Christoffer Dall5b3e5e52013-01-20 18:28:09 -05001019 kvm_coproc_table_init();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001020 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001021out_err:
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301022 cpu_notifier_register_done();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001023 return err;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001024}
1025
1026/* NOP: Compiling as a module not supported */
1027void kvm_arch_exit(void)
1028{
Marc Zyngier210552c2013-03-05 03:18:00 +00001029 kvm_perf_teardown();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001030}
1031
1032static int arm_init(void)
1033{
1034 int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1035 return rc;
1036}
1037
1038module_init(arm_init);