blob: 6fbfa5fff05dcc2bd7140d3993170b9dc457fa8e [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 */
Will Deacon4000be42014-08-26 15:13:21 +010085struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void)
Marc Zyngier1638a122013-01-21 19:36:11 -050086{
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
Andre Przywara3caa2d82014-06-02 16:26:01 +0200135 /* The maximum number of VCPUs is limited by the host's GIC model */
136 kvm->arch.max_vcpus = kvm_vgic_get_max_vcpus();
137
Christoffer Dalld5d81842013-01-20 18:28:07 -0500138 return ret;
139out_free_stage2_pgd:
140 kvm_free_stage2_pgd(kvm);
141out_fail_alloc:
142 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500143}
144
145int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
146{
147 return VM_FAULT_SIGBUS;
148}
149
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500150
Christoffer Dalld5d81842013-01-20 18:28:07 -0500151/**
152 * kvm_arch_destroy_vm - destroy the VM data structure
153 * @kvm: pointer to the KVM struct
154 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500155void kvm_arch_destroy_vm(struct kvm *kvm)
156{
157 int i;
158
Christoffer Dalld5d81842013-01-20 18:28:07 -0500159 kvm_free_stage2_pgd(kvm);
160
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500161 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
162 if (kvm->vcpus[i]) {
163 kvm_arch_vcpu_free(kvm->vcpus[i]);
164 kvm->vcpus[i] = NULL;
165 }
166 }
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100167
168 kvm_vgic_destroy(kvm);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500169}
170
Alexander Graf784aa3d2014-07-14 18:27:35 +0200171int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500172{
173 int r;
174 switch (ext) {
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500175 case KVM_CAP_IRQCHIP:
176 r = vgic_present;
177 break;
Christoffer Dall73306722013-10-25 17:29:18 +0100178 case KVM_CAP_DEVICE_CTRL:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500179 case KVM_CAP_USER_MEMORY:
180 case KVM_CAP_SYNC_MMU:
181 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
182 case KVM_CAP_ONE_REG:
Marc Zyngieraa024c22013-01-20 18:28:13 -0500183 case KVM_CAP_ARM_PSCI:
Anup Patel4447a202014-04-29 11:24:25 +0530184 case KVM_CAP_ARM_PSCI_0_2:
Christoffer Dall98047882014-08-19 12:18:04 +0200185 case KVM_CAP_READONLY_MEM:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500186 r = 1;
187 break;
188 case KVM_CAP_COALESCED_MMIO:
189 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
190 break;
Christoffer Dall3401d5462013-01-23 13:18:04 -0500191 case KVM_CAP_ARM_SET_DEVICE_ADDR:
192 r = 1;
Marc Zyngierca46e102013-04-03 10:43:13 +0100193 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500194 case KVM_CAP_NR_VCPUS:
195 r = num_online_cpus();
196 break;
197 case KVM_CAP_MAX_VCPUS:
198 r = KVM_MAX_VCPUS;
199 break;
200 default:
Marc Zyngier17b1e312013-04-08 16:47:18 +0100201 r = kvm_arch_dev_ioctl_check_extension(ext);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500202 break;
203 }
204 return r;
205}
206
207long kvm_arch_dev_ioctl(struct file *filp,
208 unsigned int ioctl, unsigned long arg)
209{
210 return -EINVAL;
211}
212
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500213
214struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
215{
216 int err;
217 struct kvm_vcpu *vcpu;
218
Christoffer Dall716139d2014-12-09 14:33:45 +0100219 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm)) {
220 err = -EBUSY;
221 goto out;
222 }
223
Andre Przywara3caa2d82014-06-02 16:26:01 +0200224 if (id >= kvm->arch.max_vcpus) {
225 err = -EINVAL;
226 goto out;
227 }
228
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500229 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
230 if (!vcpu) {
231 err = -ENOMEM;
232 goto out;
233 }
234
235 err = kvm_vcpu_init(vcpu, kvm, id);
236 if (err)
237 goto free_vcpu;
238
Christoffer Dalld5d81842013-01-20 18:28:07 -0500239 err = create_hyp_mappings(vcpu, vcpu + 1);
240 if (err)
241 goto vcpu_uninit;
242
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500243 return vcpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500244vcpu_uninit:
245 kvm_vcpu_uninit(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500246free_vcpu:
247 kmem_cache_free(kvm_vcpu_cache, vcpu);
248out:
249 return ERR_PTR(err);
250}
251
252int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
253{
254 return 0;
255}
256
257void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
258{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500259 kvm_mmu_free_memory_caches(vcpu);
Marc Zyngier967f8422013-01-23 13:21:59 -0500260 kvm_timer_vcpu_terminate(vcpu);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100261 kvm_vgic_vcpu_destroy(vcpu);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500262 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500263}
264
265void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
266{
267 kvm_arch_vcpu_free(vcpu);
268}
269
270int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
271{
272 return 0;
273}
274
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500275int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
276{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500277 /* Force users to call KVM_ARM_VCPU_INIT */
278 vcpu->arch.target = -1;
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200279 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500280
Marc Zyngier967f8422013-01-23 13:21:59 -0500281 /* Set up the timer */
282 kvm_timer_vcpu_init(vcpu);
283
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500284 return 0;
285}
286
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500287void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
288{
Christoffer Dall86ce8532013-01-20 18:28:08 -0500289 vcpu->cpu = cpu;
Marc Zyngier3de50da2013-04-08 16:47:19 +0100290 vcpu->arch.host_cpu_context = this_cpu_ptr(kvm_host_cpu_state);
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500291
292 /*
293 * Check whether this vcpu requires the cache to be flushed on
294 * this physical CPU. This is a consequence of doing dcache
295 * operations by set/way on this vcpu. We do it here to be in
296 * a non-preemptible section.
297 */
298 if (cpumask_test_and_clear_cpu(cpu, &vcpu->arch.require_dcache_flush))
299 flush_cache_all(); /* We'd really want v7_flush_dcache_all() */
Marc Zyngier1638a122013-01-21 19:36:11 -0500300
301 kvm_arm_set_running_vcpu(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500302}
303
304void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
305{
Christoffer Dalle9b152c2013-12-11 20:29:11 -0800306 /*
307 * The arch-generic KVM code expects the cpu field of a vcpu to be -1
308 * if the vcpu is no longer assigned to a cpu. This is used for the
309 * optimized make_all_cpus_request path.
310 */
311 vcpu->cpu = -1;
312
Marc Zyngier1638a122013-01-21 19:36:11 -0500313 kvm_arm_set_running_vcpu(NULL);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500314}
315
316int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
317 struct kvm_guest_debug *dbg)
318{
319 return -EINVAL;
320}
321
322
323int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
324 struct kvm_mp_state *mp_state)
325{
326 return -EINVAL;
327}
328
329int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
330 struct kvm_mp_state *mp_state)
331{
332 return -EINVAL;
333}
334
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500335/**
336 * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled
337 * @v: The VCPU pointer
338 *
339 * If the guest CPU is not waiting for interrupts or an interrupt line is
340 * asserted, the CPU is by definition runnable.
341 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500342int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
343{
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500344 return !!v->arch.irq_lines || kvm_vgic_vcpu_pending_irq(v);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500345}
346
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500347/* Just ensure a guest exit from a particular CPU */
348static void exit_vm_noop(void *info)
349{
350}
351
352void force_vm_exit(const cpumask_t *mask)
353{
354 smp_call_function_many(mask, exit_vm_noop, NULL, true);
355}
356
357/**
358 * need_new_vmid_gen - check that the VMID is still valid
359 * @kvm: The VM's VMID to checkt
360 *
361 * return true if there is a new generation of VMIDs being used
362 *
363 * The hardware supports only 256 values with the value zero reserved for the
364 * host, so we check if an assigned value belongs to a previous generation,
365 * which which requires us to assign a new value. If we're the first to use a
366 * VMID for the new generation, we must flush necessary caches and TLBs on all
367 * CPUs.
368 */
369static bool need_new_vmid_gen(struct kvm *kvm)
370{
371 return unlikely(kvm->arch.vmid_gen != atomic64_read(&kvm_vmid_gen));
372}
373
374/**
375 * update_vttbr - Update the VTTBR with a valid VMID before the guest runs
376 * @kvm The guest that we are about to run
377 *
378 * Called from kvm_arch_vcpu_ioctl_run before entering the guest to ensure the
379 * VM has a valid VMID, otherwise assigns a new one and flushes corresponding
380 * caches and TLBs.
381 */
382static void update_vttbr(struct kvm *kvm)
383{
384 phys_addr_t pgd_phys;
385 u64 vmid;
386
387 if (!need_new_vmid_gen(kvm))
388 return;
389
390 spin_lock(&kvm_vmid_lock);
391
392 /*
393 * We need to re-check the vmid_gen here to ensure that if another vcpu
394 * already allocated a valid vmid for this vm, then this vcpu should
395 * use the same vmid.
396 */
397 if (!need_new_vmid_gen(kvm)) {
398 spin_unlock(&kvm_vmid_lock);
399 return;
400 }
401
402 /* First user of a new VMID generation? */
403 if (unlikely(kvm_next_vmid == 0)) {
404 atomic64_inc(&kvm_vmid_gen);
405 kvm_next_vmid = 1;
406
407 /*
408 * On SMP we know no other CPUs can use this CPU's or each
409 * other's VMID after force_vm_exit returns since the
410 * kvm_vmid_lock blocks them from reentry to the guest.
411 */
412 force_vm_exit(cpu_all_mask);
413 /*
414 * Now broadcast TLB + ICACHE invalidation over the inner
415 * shareable domain to make sure all data structures are
416 * clean.
417 */
418 kvm_call_hyp(__kvm_flush_vm_context);
419 }
420
421 kvm->arch.vmid_gen = atomic64_read(&kvm_vmid_gen);
422 kvm->arch.vmid = kvm_next_vmid;
423 kvm_next_vmid++;
424
425 /* update vttbr to be used with the new vmid */
Christoffer Dall38f791a2014-10-10 12:14:28 +0200426 pgd_phys = virt_to_phys(kvm_get_hwpgd(kvm));
Joel Schoppdbff1242014-07-09 11:17:04 -0500427 BUG_ON(pgd_phys & ~VTTBR_BADDR_MASK);
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500428 vmid = ((u64)(kvm->arch.vmid) << VTTBR_VMID_SHIFT) & VTTBR_VMID_MASK;
Joel Schoppdbff1242014-07-09 11:17:04 -0500429 kvm->arch.vttbr = pgd_phys | vmid;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500430
431 spin_unlock(&kvm_vmid_lock);
432}
433
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500434static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu)
435{
Christoffer Dall05971122014-12-12 21:19:23 +0100436 struct kvm *kvm = vcpu->kvm;
Christoffer Dalle1ba0202013-09-23 14:55:55 -0700437 int ret;
438
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500439 if (likely(vcpu->arch.has_run_once))
440 return 0;
441
442 vcpu->arch.has_run_once = true;
Marc Zyngieraa024c22013-01-20 18:28:13 -0500443
444 /*
Peter Maydell6d3cfbe2014-12-04 15:02:24 +0000445 * Map the VGIC hardware resources before running a vcpu the first
446 * time on this VM.
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500447 */
Christoffer Dall05971122014-12-12 21:19:23 +0100448 if (unlikely(!vgic_ready(kvm))) {
449 ret = kvm_vgic_map_resources(kvm);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500450 if (ret)
451 return ret;
452 }
453
Christoffer Dall05971122014-12-12 21:19:23 +0100454 /*
455 * Enable the arch timers only if we have an in-kernel VGIC
456 * and it has been properly initialized, since we cannot handle
457 * interrupts from the virtual timer with a userspace gic.
458 */
459 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm))
460 kvm_timer_enable(kvm);
461
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500462 return 0;
463}
464
Marc Zyngieraa024c22013-01-20 18:28:13 -0500465static void vcpu_pause(struct kvm_vcpu *vcpu)
466{
467 wait_queue_head_t *wq = kvm_arch_vcpu_wq(vcpu);
468
469 wait_event_interruptible(*wq, !vcpu->arch.pause);
470}
471
Andre Przywarae8180dc2013-05-09 00:28:06 +0200472static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
473{
474 return vcpu->arch.target >= 0;
475}
476
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500477/**
478 * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code
479 * @vcpu: The VCPU pointer
480 * @run: The kvm_run structure pointer used for userspace state exchange
481 *
482 * This function is called through the VCPU_RUN ioctl called from user space. It
483 * will execute VM code in a loop until the time slice for the process is used
484 * or some emulation is needed from user space in which case the function will
485 * return with return value 0 and with the kvm_run structure filled in with the
486 * required data for the requested emulation.
487 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500488int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
489{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500490 int ret;
491 sigset_t sigsaved;
492
Andre Przywarae8180dc2013-05-09 00:28:06 +0200493 if (unlikely(!kvm_vcpu_initialized(vcpu)))
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500494 return -ENOEXEC;
495
496 ret = kvm_vcpu_first_run_init(vcpu);
497 if (ret)
498 return ret;
499
Christoffer Dall45e96ea2013-01-20 18:43:58 -0500500 if (run->exit_reason == KVM_EXIT_MMIO) {
501 ret = kvm_handle_mmio_return(vcpu, vcpu->run);
502 if (ret)
503 return ret;
504 }
505
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500506 if (vcpu->sigset_active)
507 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
508
509 ret = 1;
510 run->exit_reason = KVM_EXIT_UNKNOWN;
511 while (ret > 0) {
512 /*
513 * Check conditions before entering the guest
514 */
515 cond_resched();
516
517 update_vttbr(vcpu->kvm);
518
Marc Zyngieraa024c22013-01-20 18:28:13 -0500519 if (vcpu->arch.pause)
520 vcpu_pause(vcpu);
521
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500522 kvm_vgic_flush_hwstate(vcpu);
Marc Zyngierc7e3ba62013-01-23 13:21:59 -0500523 kvm_timer_flush_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500524
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500525 local_irq_disable();
526
527 /*
528 * Re-check atomic conditions
529 */
530 if (signal_pending(current)) {
531 ret = -EINTR;
532 run->exit_reason = KVM_EXIT_INTR;
533 }
534
535 if (ret <= 0 || need_new_vmid_gen(vcpu->kvm)) {
536 local_irq_enable();
Marc Zyngierc7e3ba62013-01-23 13:21:59 -0500537 kvm_timer_sync_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500538 kvm_vgic_sync_hwstate(vcpu);
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500539 continue;
540 }
541
542 /**************************************************************
543 * Enter the guest
544 */
545 trace_kvm_entry(*vcpu_pc(vcpu));
546 kvm_guest_enter();
547 vcpu->mode = IN_GUEST_MODE;
548
549 ret = kvm_call_hyp(__kvm_vcpu_run, vcpu);
550
551 vcpu->mode = OUTSIDE_GUEST_MODE;
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500552 vcpu->arch.last_pcpu = smp_processor_id();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500553 kvm_guest_exit();
554 trace_kvm_exit(*vcpu_pc(vcpu));
555 /*
556 * We may have taken a host interrupt in HYP mode (ie
557 * while executing the guest). This interrupt is still
558 * pending, as we haven't serviced it yet!
559 *
560 * We're now back in SVC mode, with interrupts
561 * disabled. Enabling the interrupts now will have
562 * the effect of taking the interrupt again, in SVC
563 * mode this time.
564 */
565 local_irq_enable();
566
567 /*
568 * Back from guest
569 *************************************************************/
570
Marc Zyngierc7e3ba62013-01-23 13:21:59 -0500571 kvm_timer_sync_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500572 kvm_vgic_sync_hwstate(vcpu);
573
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500574 ret = handle_exit(vcpu, run, ret);
575 }
576
577 if (vcpu->sigset_active)
578 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
579 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500580}
581
Christoffer Dall86ce8532013-01-20 18:28:08 -0500582static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level)
583{
584 int bit_index;
585 bool set;
586 unsigned long *ptr;
587
588 if (number == KVM_ARM_IRQ_CPU_IRQ)
589 bit_index = __ffs(HCR_VI);
590 else /* KVM_ARM_IRQ_CPU_FIQ */
591 bit_index = __ffs(HCR_VF);
592
593 ptr = (unsigned long *)&vcpu->arch.irq_lines;
594 if (level)
595 set = test_and_set_bit(bit_index, ptr);
596 else
597 set = test_and_clear_bit(bit_index, ptr);
598
599 /*
600 * If we didn't change anything, no need to wake up or kick other CPUs
601 */
602 if (set == level)
603 return 0;
604
605 /*
606 * The vcpu irq_lines field was updated, wake up sleeping VCPUs and
607 * trigger a world-switch round on the running physical CPU to set the
608 * virtual IRQ/FIQ fields in the HCR appropriately.
609 */
610 kvm_vcpu_kick(vcpu);
611
612 return 0;
613}
614
Alexander Graf79558f12013-04-16 19:21:41 +0200615int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
616 bool line_status)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500617{
618 u32 irq = irq_level->irq;
619 unsigned int irq_type, vcpu_idx, irq_num;
620 int nrcpus = atomic_read(&kvm->online_vcpus);
621 struct kvm_vcpu *vcpu = NULL;
622 bool level = irq_level->level;
623
624 irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK;
625 vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK;
626 irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK;
627
628 trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level);
629
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500630 switch (irq_type) {
631 case KVM_ARM_IRQ_TYPE_CPU:
632 if (irqchip_in_kernel(kvm))
633 return -ENXIO;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500634
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500635 if (vcpu_idx >= nrcpus)
636 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500637
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500638 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
639 if (!vcpu)
640 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500641
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500642 if (irq_num > KVM_ARM_IRQ_CPU_FIQ)
643 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500644
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500645 return vcpu_interrupt_line(vcpu, irq_num, level);
646 case KVM_ARM_IRQ_TYPE_PPI:
647 if (!irqchip_in_kernel(kvm))
648 return -ENXIO;
649
650 if (vcpu_idx >= nrcpus)
651 return -EINVAL;
652
653 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
654 if (!vcpu)
655 return -EINVAL;
656
657 if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS)
658 return -EINVAL;
659
660 return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level);
661 case KVM_ARM_IRQ_TYPE_SPI:
662 if (!irqchip_in_kernel(kvm))
663 return -ENXIO;
664
665 if (irq_num < VGIC_NR_PRIVATE_IRQS ||
666 irq_num > KVM_ARM_IRQ_GIC_MAX)
667 return -EINVAL;
668
669 return kvm_vgic_inject_irq(kvm, 0, irq_num, level);
670 }
671
672 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500673}
674
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200675static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu,
676 const struct kvm_vcpu_init *init)
677{
678 unsigned int i;
679 int phys_target = kvm_target_cpu();
680
681 if (init->target != phys_target)
682 return -EINVAL;
683
684 /*
685 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
686 * use the same target.
687 */
688 if (vcpu->arch.target != -1 && vcpu->arch.target != init->target)
689 return -EINVAL;
690
691 /* -ENOENT for unknown features, -EINVAL for invalid combinations. */
692 for (i = 0; i < sizeof(init->features) * 8; i++) {
693 bool set = (init->features[i / 32] & (1 << (i % 32)));
694
695 if (set && i >= KVM_VCPU_MAX_FEATURES)
696 return -ENOENT;
697
698 /*
699 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
700 * use the same feature set.
701 */
702 if (vcpu->arch.target != -1 && i < KVM_VCPU_MAX_FEATURES &&
703 test_bit(i, vcpu->arch.features) != set)
704 return -EINVAL;
705
706 if (set)
707 set_bit(i, vcpu->arch.features);
708 }
709
710 vcpu->arch.target = phys_target;
711
712 /* Now we know what it is, we can reset it. */
713 return kvm_reset_vcpu(vcpu);
714}
715
716
Christoffer Dall478a8232013-11-19 17:43:19 -0800717static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu,
718 struct kvm_vcpu_init *init)
719{
720 int ret;
721
722 ret = kvm_vcpu_set_target(vcpu, init);
723 if (ret)
724 return ret;
725
Christoffer Dall957db102014-11-27 10:35:03 +0100726 /*
727 * Ensure a rebooted VM will fault in RAM pages and detect if the
728 * guest MMU is turned off and flush the caches as needed.
729 */
730 if (vcpu->arch.has_run_once)
731 stage2_unmap_vm(vcpu->kvm);
732
Christoffer Dallb856a592014-10-16 17:21:16 +0200733 vcpu_reset_hcr(vcpu);
734
Christoffer Dall478a8232013-11-19 17:43:19 -0800735 /*
736 * Handle the "start in power-off" case by marking the VCPU as paused.
737 */
Christoffer Dall03f1d4c2014-12-02 15:27:51 +0100738 if (test_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features))
Christoffer Dall478a8232013-11-19 17:43:19 -0800739 vcpu->arch.pause = true;
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +0200740 else
741 vcpu->arch.pause = false;
Christoffer Dall478a8232013-11-19 17:43:19 -0800742
743 return 0;
744}
745
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500746long kvm_arch_vcpu_ioctl(struct file *filp,
747 unsigned int ioctl, unsigned long arg)
748{
749 struct kvm_vcpu *vcpu = filp->private_data;
750 void __user *argp = (void __user *)arg;
751
752 switch (ioctl) {
753 case KVM_ARM_VCPU_INIT: {
754 struct kvm_vcpu_init init;
755
756 if (copy_from_user(&init, argp, sizeof(init)))
757 return -EFAULT;
758
Christoffer Dall478a8232013-11-19 17:43:19 -0800759 return kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500760 }
761 case KVM_SET_ONE_REG:
762 case KVM_GET_ONE_REG: {
763 struct kvm_one_reg reg;
Andre Przywarae8180dc2013-05-09 00:28:06 +0200764
765 if (unlikely(!kvm_vcpu_initialized(vcpu)))
766 return -ENOEXEC;
767
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500768 if (copy_from_user(&reg, argp, sizeof(reg)))
769 return -EFAULT;
770 if (ioctl == KVM_SET_ONE_REG)
771 return kvm_arm_set_reg(vcpu, &reg);
772 else
773 return kvm_arm_get_reg(vcpu, &reg);
774 }
775 case KVM_GET_REG_LIST: {
776 struct kvm_reg_list __user *user_list = argp;
777 struct kvm_reg_list reg_list;
778 unsigned n;
779
Andre Przywarae8180dc2013-05-09 00:28:06 +0200780 if (unlikely(!kvm_vcpu_initialized(vcpu)))
781 return -ENOEXEC;
782
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500783 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
784 return -EFAULT;
785 n = reg_list.n;
786 reg_list.n = kvm_arm_num_regs(vcpu);
787 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
788 return -EFAULT;
789 if (n < reg_list.n)
790 return -E2BIG;
791 return kvm_arm_copy_reg_indices(vcpu, user_list->reg);
792 }
793 default:
794 return -EINVAL;
795 }
796}
797
Mario Smarduch53c810c2015-01-15 15:58:57 -0800798/**
799 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
800 * @kvm: kvm instance
801 * @log: slot id and address to which we copy the log
802 *
803 * Steps 1-4 below provide general overview of dirty page logging. See
804 * kvm_get_dirty_log_protect() function description for additional details.
805 *
806 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
807 * always flush the TLB (step 4) even if previous step failed and the dirty
808 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
809 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
810 * writes will be marked dirty for next log read.
811 *
812 * 1. Take a snapshot of the bit and clear it if needed.
813 * 2. Write protect the corresponding page.
814 * 3. Copy the snapshot to the userspace.
815 * 4. Flush TLB's if needed.
816 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500817int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
818{
Mario Smarduch53c810c2015-01-15 15:58:57 -0800819 bool is_dirty = false;
820 int r;
821
822 mutex_lock(&kvm->slots_lock);
823
824 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
825
826 if (is_dirty)
827 kvm_flush_remote_tlbs(kvm);
828
829 mutex_unlock(&kvm->slots_lock);
830 return r;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500831}
832
Christoffer Dall3401d5462013-01-23 13:18:04 -0500833static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm,
834 struct kvm_arm_device_addr *dev_addr)
835{
Christoffer Dall330690c2013-01-21 19:36:13 -0500836 unsigned long dev_id, type;
837
838 dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >>
839 KVM_ARM_DEVICE_ID_SHIFT;
840 type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >>
841 KVM_ARM_DEVICE_TYPE_SHIFT;
842
843 switch (dev_id) {
844 case KVM_ARM_DEVICE_VGIC_V2:
845 if (!vgic_present)
846 return -ENXIO;
Christoffer Dallce01e4e2013-09-23 14:55:56 -0700847 return kvm_vgic_addr(kvm, type, &dev_addr->addr, true);
Christoffer Dall330690c2013-01-21 19:36:13 -0500848 default:
849 return -ENODEV;
850 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500851}
852
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500853long kvm_arch_vm_ioctl(struct file *filp,
854 unsigned int ioctl, unsigned long arg)
855{
Christoffer Dall3401d5462013-01-23 13:18:04 -0500856 struct kvm *kvm = filp->private_data;
857 void __user *argp = (void __user *)arg;
858
859 switch (ioctl) {
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500860 case KVM_CREATE_IRQCHIP: {
861 if (vgic_present)
Andre Przywara598921362014-06-03 09:33:10 +0200862 return kvm_vgic_create(kvm, KVM_DEV_TYPE_ARM_VGIC_V2);
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500863 else
864 return -ENXIO;
865 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500866 case KVM_ARM_SET_DEVICE_ADDR: {
867 struct kvm_arm_device_addr dev_addr;
868
869 if (copy_from_user(&dev_addr, argp, sizeof(dev_addr)))
870 return -EFAULT;
871 return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr);
872 }
Anup Patel42c4e0c2013-09-30 14:20:07 +0530873 case KVM_ARM_PREFERRED_TARGET: {
874 int err;
875 struct kvm_vcpu_init init;
876
877 err = kvm_vcpu_preferred_target(&init);
878 if (err)
879 return err;
880
881 if (copy_to_user(argp, &init, sizeof(init)))
882 return -EFAULT;
883
884 return 0;
885 }
Christoffer Dall3401d5462013-01-23 13:18:04 -0500886 default:
887 return -EINVAL;
888 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500889}
890
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100891static void cpu_init_hyp_mode(void *dummy)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500892{
Marc Zyngierdac288f2013-05-14 12:11:37 +0100893 phys_addr_t boot_pgd_ptr;
894 phys_addr_t pgd_ptr;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500895 unsigned long hyp_stack_ptr;
896 unsigned long stack_page;
897 unsigned long vector_ptr;
898
899 /* Switch from the HYP stub to our own HYP init vector */
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100900 __hyp_set_vectors(kvm_get_idmap_vector());
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500901
Marc Zyngierdac288f2013-05-14 12:11:37 +0100902 boot_pgd_ptr = kvm_mmu_get_boot_httbr();
903 pgd_ptr = kvm_mmu_get_httbr();
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100904 stack_page = __this_cpu_read(kvm_arm_hyp_stack_page);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500905 hyp_stack_ptr = stack_page + PAGE_SIZE;
906 vector_ptr = (unsigned long)__kvm_hyp_vector;
907
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100908 __cpu_init_hyp_mode(boot_pgd_ptr, pgd_ptr, hyp_stack_ptr, vector_ptr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500909}
910
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100911static int hyp_init_cpu_notify(struct notifier_block *self,
912 unsigned long action, void *cpu)
913{
914 switch (action) {
915 case CPU_STARTING:
916 case CPU_STARTING_FROZEN:
Vladimir Murzin37a34ac2014-09-22 15:52:48 +0100917 if (__hyp_get_vectors() == hyp_default_vectors)
918 cpu_init_hyp_mode(NULL);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100919 break;
920 }
921
922 return NOTIFY_OK;
923}
924
925static struct notifier_block hyp_init_cpu_nb = {
926 .notifier_call = hyp_init_cpu_notify,
927};
928
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +0100929#ifdef CONFIG_CPU_PM
930static int hyp_init_cpu_pm_notifier(struct notifier_block *self,
931 unsigned long cmd,
932 void *v)
933{
Marc Zyngierb20c9f22014-02-26 18:47:36 +0000934 if (cmd == CPU_PM_EXIT &&
935 __hyp_get_vectors() == hyp_default_vectors) {
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +0100936 cpu_init_hyp_mode(NULL);
937 return NOTIFY_OK;
938 }
939
940 return NOTIFY_DONE;
941}
942
943static struct notifier_block hyp_init_cpu_pm_nb = {
944 .notifier_call = hyp_init_cpu_pm_notifier,
945};
946
947static void __init hyp_cpu_pm_init(void)
948{
949 cpu_pm_register_notifier(&hyp_init_cpu_pm_nb);
950}
951#else
952static inline void hyp_cpu_pm_init(void)
953{
954}
955#endif
956
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500957/**
958 * Inits Hyp-mode on all online CPUs
959 */
960static int init_hyp_mode(void)
961{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500962 int cpu;
963 int err = 0;
964
965 /*
966 * Allocate Hyp PGD and setup Hyp identity mapping
967 */
968 err = kvm_mmu_init();
969 if (err)
970 goto out_err;
971
972 /*
973 * It is probably enough to obtain the default on one
974 * CPU. It's unlikely to be different on the others.
975 */
976 hyp_default_vectors = __hyp_get_vectors();
977
978 /*
979 * Allocate stack pages for Hypervisor-mode
980 */
981 for_each_possible_cpu(cpu) {
982 unsigned long stack_page;
983
984 stack_page = __get_free_page(GFP_KERNEL);
985 if (!stack_page) {
986 err = -ENOMEM;
987 goto out_free_stack_pages;
988 }
989
990 per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page;
991 }
992
993 /*
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500994 * Map the Hyp-code called directly from the host
995 */
996 err = create_hyp_mappings(__kvm_hyp_code_start, __kvm_hyp_code_end);
997 if (err) {
998 kvm_err("Cannot map world-switch code\n");
999 goto out_free_mappings;
1000 }
1001
1002 /*
1003 * Map the Hyp stack pages
1004 */
1005 for_each_possible_cpu(cpu) {
1006 char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu);
1007 err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE);
1008
1009 if (err) {
1010 kvm_err("Cannot map hyp stack\n");
1011 goto out_free_mappings;
1012 }
1013 }
1014
1015 /*
Marc Zyngier3de50da2013-04-08 16:47:19 +01001016 * Map the host CPU structures
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001017 */
Marc Zyngier3de50da2013-04-08 16:47:19 +01001018 kvm_host_cpu_state = alloc_percpu(kvm_cpu_context_t);
1019 if (!kvm_host_cpu_state) {
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001020 err = -ENOMEM;
Marc Zyngier3de50da2013-04-08 16:47:19 +01001021 kvm_err("Cannot allocate host CPU state\n");
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001022 goto out_free_mappings;
1023 }
1024
1025 for_each_possible_cpu(cpu) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001026 kvm_cpu_context_t *cpu_ctxt;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001027
Marc Zyngier3de50da2013-04-08 16:47:19 +01001028 cpu_ctxt = per_cpu_ptr(kvm_host_cpu_state, cpu);
1029 err = create_hyp_mappings(cpu_ctxt, cpu_ctxt + 1);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001030
1031 if (err) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001032 kvm_err("Cannot map host CPU state: %d\n", err);
1033 goto out_free_context;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001034 }
1035 }
1036
Marc Zyngier1a89dd92013-01-21 19:36:12 -05001037 /*
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001038 * Execute the init code on each CPU.
1039 */
1040 on_each_cpu(cpu_init_hyp_mode, NULL, 1);
1041
1042 /*
Marc Zyngier1a89dd92013-01-21 19:36:12 -05001043 * Init HYP view of VGIC
1044 */
1045 err = kvm_vgic_hyp_init();
1046 if (err)
Marc Zyngier3de50da2013-04-08 16:47:19 +01001047 goto out_free_context;
Marc Zyngier1a89dd92013-01-21 19:36:12 -05001048
Marc Zyngier01ac5e32013-01-21 19:36:16 -05001049#ifdef CONFIG_KVM_ARM_VGIC
1050 vgic_present = true;
1051#endif
1052
Marc Zyngier967f8422013-01-23 13:21:59 -05001053 /*
1054 * Init HYP architected timer support
1055 */
1056 err = kvm_timer_hyp_init();
1057 if (err)
1058 goto out_free_mappings;
1059
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001060#ifndef CONFIG_HOTPLUG_CPU
1061 free_boot_hyp_pgd();
1062#endif
1063
Marc Zyngier210552c2013-03-05 03:18:00 +00001064 kvm_perf_init();
1065
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001066 kvm_info("Hyp mode initialized successfully\n");
Marc Zyngier210552c2013-03-05 03:18:00 +00001067
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001068 return 0;
Marc Zyngier3de50da2013-04-08 16:47:19 +01001069out_free_context:
1070 free_percpu(kvm_host_cpu_state);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001071out_free_mappings:
Marc Zyngier4f728272013-04-12 19:12:05 +01001072 free_hyp_pgds();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001073out_free_stack_pages:
1074 for_each_possible_cpu(cpu)
1075 free_page(per_cpu(kvm_arm_hyp_stack_page, cpu));
1076out_err:
1077 kvm_err("error initializing Hyp mode: %d\n", err);
1078 return err;
1079}
1080
Andre Przywarad4e071c2013-04-17 12:52:01 +02001081static void check_kvm_target_cpu(void *ret)
1082{
1083 *(int *)ret = kvm_target_cpu();
1084}
1085
Andre Przywara4429fc62014-06-02 15:37:13 +02001086struct kvm_vcpu *kvm_mpidr_to_vcpu(struct kvm *kvm, unsigned long mpidr)
1087{
1088 struct kvm_vcpu *vcpu;
1089 int i;
1090
1091 mpidr &= MPIDR_HWID_BITMASK;
1092 kvm_for_each_vcpu(i, vcpu, kvm) {
1093 if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu))
1094 return vcpu;
1095 }
1096 return NULL;
1097}
1098
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001099/**
1100 * Initialize Hyp-mode and memory mappings on all CPUs.
1101 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001102int kvm_arch_init(void *opaque)
1103{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001104 int err;
Andre Przywarad4e071c2013-04-17 12:52:01 +02001105 int ret, cpu;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001106
1107 if (!is_hyp_mode_available()) {
1108 kvm_err("HYP mode not available\n");
1109 return -ENODEV;
1110 }
1111
Andre Przywarad4e071c2013-04-17 12:52:01 +02001112 for_each_online_cpu(cpu) {
1113 smp_call_function_single(cpu, check_kvm_target_cpu, &ret, 1);
1114 if (ret < 0) {
1115 kvm_err("Error, CPU %d not supported!\n", cpu);
1116 return -ENODEV;
1117 }
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001118 }
1119
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301120 cpu_notifier_register_begin();
1121
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001122 err = init_hyp_mode();
1123 if (err)
1124 goto out_err;
1125
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301126 err = __register_cpu_notifier(&hyp_init_cpu_nb);
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001127 if (err) {
1128 kvm_err("Cannot register HYP init CPU notifier (%d)\n", err);
1129 goto out_err;
1130 }
1131
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301132 cpu_notifier_register_done();
1133
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001134 hyp_cpu_pm_init();
1135
Christoffer Dall5b3e5e52013-01-20 18:28:09 -05001136 kvm_coproc_table_init();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001137 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001138out_err:
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301139 cpu_notifier_register_done();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001140 return err;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001141}
1142
1143/* NOP: Compiling as a module not supported */
1144void kvm_arch_exit(void)
1145{
Marc Zyngier210552c2013-03-05 03:18:00 +00001146 kvm_perf_teardown();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001147}
1148
1149static int arm_init(void)
1150{
1151 int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1152 return rc;
1153}
1154
1155module_init(arm_init);