blob: 03e9273f18765b039179dd87c0931d4d30b567c4 [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
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +010019#include <linux/cpu_pm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050020#include <linux/errno.h>
21#include <linux/err.h>
22#include <linux/kvm_host.h>
Andre Przywara1085fdc2016-07-15 12:43:31 +010023#include <linux/list.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050024#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 Dall86ce85352013-01-20 18:28:08 -050029#include <linux/kvm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050030#include <trace/events/kvm.h>
Shannon Zhaob02386e2016-02-26 19:29:19 +080031#include <kvm/arm_pmu.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050032
33#define CREATE_TRACE_POINTS
34#include "trace.h"
35
Christoffer Dall749cf76c2013-01-20 18:28:06 -050036#include <asm/uaccess.h>
37#include <asm/ptrace.h>
38#include <asm/mman.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050039#include <asm/tlbflush.h>
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050040#include <asm/cacheflush.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050041#include <asm/virt.h>
42#include <asm/kvm_arm.h>
43#include <asm/kvm_asm.h>
44#include <asm/kvm_mmu.h>
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050045#include <asm/kvm_emulate.h>
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050046#include <asm/kvm_coproc.h>
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050047#include <asm/kvm_psci.h>
Marc Zyngier910917b2015-10-27 12:18:48 +000048#include <asm/sections.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050049
50#ifdef REQUIRES_VIRT
51__asm__(".arch_extension virt");
52#endif
53
Christoffer Dall342cd0a2013-01-20 18:28:06 -050054static DEFINE_PER_CPU(unsigned long, kvm_arm_hyp_stack_page);
Marc Zyngier3de50da2013-04-08 16:47:19 +010055static kvm_cpu_context_t __percpu *kvm_host_cpu_state;
Christoffer Dall342cd0a2013-01-20 18:28:06 -050056static unsigned long hyp_default_vectors;
57
Marc Zyngier1638a122013-01-21 19:36:11 -050058/* Per-CPU variable containing the currently running vcpu. */
59static DEFINE_PER_CPU(struct kvm_vcpu *, kvm_arm_running_vcpu);
60
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050061/* The VMID used in the VTTBR */
62static atomic64_t kvm_vmid_gen = ATOMIC64_INIT(1);
Vladimir Murzin20475f72015-11-16 11:28:18 +000063static u32 kvm_next_vmid;
64static unsigned int kvm_vmid_bits __read_mostly;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050065static DEFINE_SPINLOCK(kvm_vmid_lock);
Christoffer Dall342cd0a2013-01-20 18:28:06 -050066
Pavel Fedinc7da6fa2015-12-18 14:38:43 +030067static bool vgic_present;
68
AKASHI Takahiro67f69192016-04-27 17:47:05 +010069static DEFINE_PER_CPU(unsigned char, kvm_arm_hardware_enabled);
70
Marc Zyngier1638a122013-01-21 19:36:11 -050071static void kvm_arm_set_running_vcpu(struct kvm_vcpu *vcpu)
72{
73 BUG_ON(preemptible());
Christoph Lameter1436c1a2013-10-21 13:17:08 +010074 __this_cpu_write(kvm_arm_running_vcpu, vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050075}
76
77/**
78 * kvm_arm_get_running_vcpu - get the vcpu running on the current CPU.
79 * Must be called from non-preemptible context
80 */
81struct kvm_vcpu *kvm_arm_get_running_vcpu(void)
82{
83 BUG_ON(preemptible());
Christoph Lameter1436c1a2013-10-21 13:17:08 +010084 return __this_cpu_read(kvm_arm_running_vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050085}
86
87/**
88 * kvm_arm_get_running_vcpus - get the per-CPU array of currently running vcpus.
89 */
Will Deacon4000be42014-08-26 15:13:21 +010090struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void)
Marc Zyngier1638a122013-01-21 19:36:11 -050091{
92 return &kvm_arm_running_vcpu;
93}
94
Christoffer Dall749cf76c2013-01-20 18:28:06 -050095int 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
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100126 ret = create_hyp_mappings(kvm, kvm + 1, PAGE_HYP);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500127 if (ret)
128 goto out_free_stage2_pgd;
129
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100130 kvm_vgic_early_init(kvm);
Christoffer Dalla1a64382013-11-16 10:51:25 -0800131 kvm_timer_init(kvm);
132
Christoffer Dalld5d81842013-01-20 18:28:07 -0500133 /* Mark the initial VMID generation invalid */
134 kvm->arch.vmid_gen = 0;
135
Andre Przywara3caa2d82014-06-02 16:26:01 +0200136 /* The maximum number of VCPUs is limited by the host's GIC model */
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300137 kvm->arch.max_vcpus = vgic_present ?
138 kvm_vgic_get_max_vcpus() : KVM_MAX_VCPUS;
Andre Przywara3caa2d82014-06-02 16:26:01 +0200139
Christoffer Dalld5d81842013-01-20 18:28:07 -0500140 return ret;
141out_free_stage2_pgd:
142 kvm_free_stage2_pgd(kvm);
143out_fail_alloc:
144 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500145}
146
Luiz Capitulino235539b2016-09-07 14:47:23 -0400147bool kvm_arch_has_vcpu_debugfs(void)
148{
149 return false;
150}
151
152int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
153{
154 return 0;
155}
156
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500157int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
158{
159 return VM_FAULT_SIGBUS;
160}
161
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500162
Christoffer Dalld5d81842013-01-20 18:28:07 -0500163/**
164 * kvm_arch_destroy_vm - destroy the VM data structure
165 * @kvm: pointer to the KVM struct
166 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500167void kvm_arch_destroy_vm(struct kvm *kvm)
168{
169 int i;
170
171 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
172 if (kvm->vcpus[i]) {
173 kvm_arch_vcpu_free(kvm->vcpus[i]);
174 kvm->vcpus[i] = NULL;
175 }
176 }
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100177
178 kvm_vgic_destroy(kvm);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500179}
180
Alexander Graf784aa3d2014-07-14 18:27:35 +0200181int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500182{
183 int r;
184 switch (ext) {
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500185 case KVM_CAP_IRQCHIP:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300186 r = vgic_present;
187 break;
Nikolay Nikolaevd44758c2015-01-24 12:00:02 +0000188 case KVM_CAP_IOEVENTFD:
Christoffer Dall73306722013-10-25 17:29:18 +0100189 case KVM_CAP_DEVICE_CTRL:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500190 case KVM_CAP_USER_MEMORY:
191 case KVM_CAP_SYNC_MMU:
192 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
193 case KVM_CAP_ONE_REG:
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500194 case KVM_CAP_ARM_PSCI:
Anup Patel4447a202014-04-29 11:24:25 +0530195 case KVM_CAP_ARM_PSCI_0_2:
Christoffer Dall98047882014-08-19 12:18:04 +0200196 case KVM_CAP_READONLY_MEM:
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000197 case KVM_CAP_MP_STATE:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500198 r = 1;
199 break;
200 case KVM_CAP_COALESCED_MMIO:
201 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
202 break;
Christoffer Dall3401d5462013-01-23 13:18:04 -0500203 case KVM_CAP_ARM_SET_DEVICE_ADDR:
204 r = 1;
Marc Zyngierca46e102013-04-03 10:43:13 +0100205 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500206 case KVM_CAP_NR_VCPUS:
207 r = num_online_cpus();
208 break;
209 case KVM_CAP_MAX_VCPUS:
210 r = KVM_MAX_VCPUS;
211 break;
212 default:
Andre Przywarab46f01c2016-07-15 12:43:25 +0100213 r = kvm_arch_dev_ioctl_check_extension(kvm, ext);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500214 break;
215 }
216 return r;
217}
218
219long kvm_arch_dev_ioctl(struct file *filp,
220 unsigned int ioctl, unsigned long arg)
221{
222 return -EINVAL;
223}
224
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500225
226struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
227{
228 int err;
229 struct kvm_vcpu *vcpu;
230
Christoffer Dall716139d2014-12-09 14:33:45 +0100231 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm)) {
232 err = -EBUSY;
233 goto out;
234 }
235
Andre Przywara3caa2d82014-06-02 16:26:01 +0200236 if (id >= kvm->arch.max_vcpus) {
237 err = -EINVAL;
238 goto out;
239 }
240
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500241 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
242 if (!vcpu) {
243 err = -ENOMEM;
244 goto out;
245 }
246
247 err = kvm_vcpu_init(vcpu, kvm, id);
248 if (err)
249 goto free_vcpu;
250
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100251 err = create_hyp_mappings(vcpu, vcpu + 1, PAGE_HYP);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500252 if (err)
253 goto vcpu_uninit;
254
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500255 return vcpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500256vcpu_uninit:
257 kvm_vcpu_uninit(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500258free_vcpu:
259 kmem_cache_free(kvm_vcpu_cache, vcpu);
260out:
261 return ERR_PTR(err);
262}
263
Dominik Dingel31928aa2014-12-04 15:47:07 +0100264void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500265{
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100266 kvm_vgic_vcpu_early_init(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500267}
268
269void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
270{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500271 kvm_mmu_free_memory_caches(vcpu);
Marc Zyngier967f8422013-01-23 13:21:59 -0500272 kvm_timer_vcpu_terminate(vcpu);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100273 kvm_vgic_vcpu_destroy(vcpu);
Shannon Zhao5f0a7142015-09-11 15:18:05 +0800274 kvm_pmu_vcpu_destroy(vcpu);
James Morse591d2152016-06-08 17:24:45 +0100275 kvm_vcpu_uninit(vcpu);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500276 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500277}
278
279void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
280{
281 kvm_arch_vcpu_free(vcpu);
282}
283
284int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
285{
Christoffer Dall1a748472015-03-13 17:02:55 +0000286 return kvm_timer_should_fire(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500287}
288
Christoffer Dalld35268d2015-08-25 19:48:21 +0200289void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu)
290{
291 kvm_timer_schedule(vcpu);
292}
293
294void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
295{
296 kvm_timer_unschedule(vcpu);
297}
298
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500299int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
300{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500301 /* Force users to call KVM_ARM_VCPU_INIT */
302 vcpu->arch.target = -1;
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200303 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500304
Marc Zyngier967f8422013-01-23 13:21:59 -0500305 /* Set up the timer */
306 kvm_timer_vcpu_init(vcpu);
307
Alex Bennée84e690b2015-07-07 17:30:00 +0100308 kvm_arm_reset_debug_ptr(vcpu);
309
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500310 return 0;
311}
312
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500313void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
314{
Christoffer Dall86ce85352013-01-20 18:28:08 -0500315 vcpu->cpu = cpu;
Marc Zyngier3de50da2013-04-08 16:47:19 +0100316 vcpu->arch.host_cpu_context = this_cpu_ptr(kvm_host_cpu_state);
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500317
Marc Zyngier1638a122013-01-21 19:36:11 -0500318 kvm_arm_set_running_vcpu(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500319}
320
321void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
322{
Christoffer Dalle9b152c2013-12-11 20:29:11 -0800323 /*
324 * The arch-generic KVM code expects the cpu field of a vcpu to be -1
325 * if the vcpu is no longer assigned to a cpu. This is used for the
326 * optimized make_all_cpus_request path.
327 */
328 vcpu->cpu = -1;
329
Marc Zyngier1638a122013-01-21 19:36:11 -0500330 kvm_arm_set_running_vcpu(NULL);
Marc Zyngier9b4a3002016-01-29 19:04:48 +0000331 kvm_timer_vcpu_put(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500332}
333
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500334int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
335 struct kvm_mp_state *mp_state)
336{
Eric Auger37815282015-09-25 23:41:14 +0200337 if (vcpu->arch.power_off)
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000338 mp_state->mp_state = KVM_MP_STATE_STOPPED;
339 else
340 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
341
342 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500343}
344
345int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
346 struct kvm_mp_state *mp_state)
347{
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000348 switch (mp_state->mp_state) {
349 case KVM_MP_STATE_RUNNABLE:
Eric Auger37815282015-09-25 23:41:14 +0200350 vcpu->arch.power_off = false;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000351 break;
352 case KVM_MP_STATE_STOPPED:
Eric Auger37815282015-09-25 23:41:14 +0200353 vcpu->arch.power_off = true;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000354 break;
355 default:
356 return -EINVAL;
357 }
358
359 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500360}
361
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500362/**
363 * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled
364 * @v: The VCPU pointer
365 *
366 * If the guest CPU is not waiting for interrupts or an interrupt line is
367 * asserted, the CPU is by definition runnable.
368 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500369int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
370{
Eric Auger4f5f1dc2015-09-25 23:41:15 +0200371 return ((!!v->arch.irq_lines || kvm_vgic_vcpu_pending_irq(v))
Eric Auger3b928302015-09-25 23:41:17 +0200372 && !v->arch.power_off && !v->arch.pause);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500373}
374
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500375/* Just ensure a guest exit from a particular CPU */
376static void exit_vm_noop(void *info)
377{
378}
379
380void force_vm_exit(const cpumask_t *mask)
381{
Eric Auger898f9492016-03-07 23:50:36 +0700382 preempt_disable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500383 smp_call_function_many(mask, exit_vm_noop, NULL, true);
Eric Auger898f9492016-03-07 23:50:36 +0700384 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500385}
386
387/**
388 * need_new_vmid_gen - check that the VMID is still valid
Andrea Gelmini6a727b02016-05-21 13:48:35 +0200389 * @kvm: The VM's VMID to check
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500390 *
391 * return true if there is a new generation of VMIDs being used
392 *
393 * The hardware supports only 256 values with the value zero reserved for the
394 * host, so we check if an assigned value belongs to a previous generation,
395 * which which requires us to assign a new value. If we're the first to use a
396 * VMID for the new generation, we must flush necessary caches and TLBs on all
397 * CPUs.
398 */
399static bool need_new_vmid_gen(struct kvm *kvm)
400{
401 return unlikely(kvm->arch.vmid_gen != atomic64_read(&kvm_vmid_gen));
402}
403
404/**
405 * update_vttbr - Update the VTTBR with a valid VMID before the guest runs
406 * @kvm The guest that we are about to run
407 *
408 * Called from kvm_arch_vcpu_ioctl_run before entering the guest to ensure the
409 * VM has a valid VMID, otherwise assigns a new one and flushes corresponding
410 * caches and TLBs.
411 */
412static void update_vttbr(struct kvm *kvm)
413{
414 phys_addr_t pgd_phys;
415 u64 vmid;
416
417 if (!need_new_vmid_gen(kvm))
418 return;
419
420 spin_lock(&kvm_vmid_lock);
421
422 /*
423 * We need to re-check the vmid_gen here to ensure that if another vcpu
424 * already allocated a valid vmid for this vm, then this vcpu should
425 * use the same vmid.
426 */
427 if (!need_new_vmid_gen(kvm)) {
428 spin_unlock(&kvm_vmid_lock);
429 return;
430 }
431
432 /* First user of a new VMID generation? */
433 if (unlikely(kvm_next_vmid == 0)) {
434 atomic64_inc(&kvm_vmid_gen);
435 kvm_next_vmid = 1;
436
437 /*
438 * On SMP we know no other CPUs can use this CPU's or each
439 * other's VMID after force_vm_exit returns since the
440 * kvm_vmid_lock blocks them from reentry to the guest.
441 */
442 force_vm_exit(cpu_all_mask);
443 /*
444 * Now broadcast TLB + ICACHE invalidation over the inner
445 * shareable domain to make sure all data structures are
446 * clean.
447 */
448 kvm_call_hyp(__kvm_flush_vm_context);
449 }
450
451 kvm->arch.vmid_gen = atomic64_read(&kvm_vmid_gen);
452 kvm->arch.vmid = kvm_next_vmid;
453 kvm_next_vmid++;
Vladimir Murzin20475f72015-11-16 11:28:18 +0000454 kvm_next_vmid &= (1 << kvm_vmid_bits) - 1;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500455
456 /* update vttbr to be used with the new vmid */
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000457 pgd_phys = virt_to_phys(kvm->arch.pgd);
Joel Schoppdbff1242014-07-09 11:17:04 -0500458 BUG_ON(pgd_phys & ~VTTBR_BADDR_MASK);
Vladimir Murzin20475f72015-11-16 11:28:18 +0000459 vmid = ((u64)(kvm->arch.vmid) << VTTBR_VMID_SHIFT) & VTTBR_VMID_MASK(kvm_vmid_bits);
Joel Schoppdbff1242014-07-09 11:17:04 -0500460 kvm->arch.vttbr = pgd_phys | vmid;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500461
462 spin_unlock(&kvm_vmid_lock);
463}
464
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500465static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu)
466{
Christoffer Dall05971122014-12-12 21:19:23 +0100467 struct kvm *kvm = vcpu->kvm;
Christoffer Dall41a54482016-05-18 16:26:00 +0100468 int ret = 0;
Christoffer Dalle1ba0202013-09-23 14:55:55 -0700469
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500470 if (likely(vcpu->arch.has_run_once))
471 return 0;
472
473 vcpu->arch.has_run_once = true;
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500474
475 /*
Peter Maydell6d3cfbe2014-12-04 15:02:24 +0000476 * Map the VGIC hardware resources before running a vcpu the first
477 * time on this VM.
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500478 */
Pavel Fedinc2f58512015-08-05 11:53:57 +0100479 if (unlikely(irqchip_in_kernel(kvm) && !vgic_ready(kvm))) {
Christoffer Dall05971122014-12-12 21:19:23 +0100480 ret = kvm_vgic_map_resources(kvm);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500481 if (ret)
482 return ret;
483 }
484
Christoffer Dall05971122014-12-12 21:19:23 +0100485 /*
486 * Enable the arch timers only if we have an in-kernel VGIC
487 * and it has been properly initialized, since we cannot handle
488 * interrupts from the virtual timer with a userspace gic.
489 */
490 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm))
Christoffer Dall41a54482016-05-18 16:26:00 +0100491 ret = kvm_timer_enable(vcpu);
Christoffer Dall05971122014-12-12 21:19:23 +0100492
Christoffer Dall41a54482016-05-18 16:26:00 +0100493 return ret;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500494}
495
Eric Augerc1426e42015-03-04 11:14:34 +0100496bool kvm_arch_intc_initialized(struct kvm *kvm)
497{
498 return vgic_initialized(kvm);
499}
500
Christoffer Dallb13216c2016-04-27 10:28:00 +0100501void kvm_arm_halt_guest(struct kvm *kvm)
Eric Auger3b928302015-09-25 23:41:17 +0200502{
503 int i;
504 struct kvm_vcpu *vcpu;
505
506 kvm_for_each_vcpu(i, vcpu, kvm)
507 vcpu->arch.pause = true;
Christoffer Dallb13216c2016-04-27 10:28:00 +0100508 kvm_make_all_cpus_request(kvm, KVM_REQ_VCPU_EXIT);
Eric Auger3b928302015-09-25 23:41:17 +0200509}
510
Christoffer Dall35a2d582016-05-20 15:25:28 +0200511void kvm_arm_halt_vcpu(struct kvm_vcpu *vcpu)
512{
513 vcpu->arch.pause = true;
514 kvm_vcpu_kick(vcpu);
515}
516
517void kvm_arm_resume_vcpu(struct kvm_vcpu *vcpu)
Christoffer Dallb13216c2016-04-27 10:28:00 +0100518{
519 struct swait_queue_head *wq = kvm_arch_vcpu_wq(vcpu);
520
521 vcpu->arch.pause = false;
522 swake_up(wq);
523}
524
525void kvm_arm_resume_guest(struct kvm *kvm)
Eric Auger3b928302015-09-25 23:41:17 +0200526{
527 int i;
528 struct kvm_vcpu *vcpu;
529
Christoffer Dallb13216c2016-04-27 10:28:00 +0100530 kvm_for_each_vcpu(i, vcpu, kvm)
531 kvm_arm_resume_vcpu(vcpu);
Eric Auger3b928302015-09-25 23:41:17 +0200532}
533
Eric Auger37815282015-09-25 23:41:14 +0200534static void vcpu_sleep(struct kvm_vcpu *vcpu)
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500535{
Marcelo Tosatti85773702016-02-19 09:46:39 +0100536 struct swait_queue_head *wq = kvm_arch_vcpu_wq(vcpu);
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500537
Marcelo Tosatti85773702016-02-19 09:46:39 +0100538 swait_event_interruptible(*wq, ((!vcpu->arch.power_off) &&
Eric Auger3b928302015-09-25 23:41:17 +0200539 (!vcpu->arch.pause)));
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500540}
541
Andre Przywarae8180dc2013-05-09 00:28:06 +0200542static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
543{
544 return vcpu->arch.target >= 0;
545}
546
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500547/**
548 * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code
549 * @vcpu: The VCPU pointer
550 * @run: The kvm_run structure pointer used for userspace state exchange
551 *
552 * This function is called through the VCPU_RUN ioctl called from user space. It
553 * will execute VM code in a loop until the time slice for the process is used
554 * or some emulation is needed from user space in which case the function will
555 * return with return value 0 and with the kvm_run structure filled in with the
556 * required data for the requested emulation.
557 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500558int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
559{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500560 int ret;
561 sigset_t sigsaved;
562
Andre Przywarae8180dc2013-05-09 00:28:06 +0200563 if (unlikely(!kvm_vcpu_initialized(vcpu)))
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500564 return -ENOEXEC;
565
566 ret = kvm_vcpu_first_run_init(vcpu);
567 if (ret)
568 return ret;
569
Christoffer Dall45e96ea2013-01-20 18:43:58 -0500570 if (run->exit_reason == KVM_EXIT_MMIO) {
571 ret = kvm_handle_mmio_return(vcpu, vcpu->run);
572 if (ret)
573 return ret;
574 }
575
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500576 if (vcpu->sigset_active)
577 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
578
579 ret = 1;
580 run->exit_reason = KVM_EXIT_UNKNOWN;
581 while (ret > 0) {
582 /*
583 * Check conditions before entering the guest
584 */
585 cond_resched();
586
587 update_vttbr(vcpu->kvm);
588
Eric Auger3b928302015-09-25 23:41:17 +0200589 if (vcpu->arch.power_off || vcpu->arch.pause)
Eric Auger37815282015-09-25 23:41:14 +0200590 vcpu_sleep(vcpu);
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500591
Marc Zyngierabdf5842015-06-08 15:00:28 +0100592 /*
Marc Zyngierabdf5842015-06-08 15:00:28 +0100593 * Preparing the interrupts to be injected also
594 * involves poking the GIC, which must be done in a
595 * non-preemptible context.
596 */
597 preempt_disable();
Shannon Zhaob02386e2016-02-26 19:29:19 +0800598 kvm_pmu_flush_hwstate(vcpu);
Christoffer Dall7e16aa82015-11-24 10:31:07 +0100599 kvm_timer_flush_hwstate(vcpu);
Marc Zyngier9a99d052015-06-05 09:33:28 +0100600 kvm_vgic_flush_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500601
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500602 local_irq_disable();
603
604 /*
605 * Re-check atomic conditions
606 */
607 if (signal_pending(current)) {
608 ret = -EINTR;
609 run->exit_reason = KVM_EXIT_INTR;
610 }
611
Eric Auger101d3da2015-09-25 23:41:16 +0200612 if (ret <= 0 || need_new_vmid_gen(vcpu->kvm) ||
Eric Auger3b928302015-09-25 23:41:17 +0200613 vcpu->arch.power_off || vcpu->arch.pause) {
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500614 local_irq_enable();
Shannon Zhaob02386e2016-02-26 19:29:19 +0800615 kvm_pmu_sync_hwstate(vcpu);
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200616 kvm_timer_sync_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500617 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100618 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500619 continue;
620 }
621
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100622 kvm_arm_setup_debug(vcpu);
623
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500624 /**************************************************************
625 * Enter the guest
626 */
627 trace_kvm_entry(*vcpu_pc(vcpu));
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200628 guest_enter_irqoff();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500629 vcpu->mode = IN_GUEST_MODE;
630
631 ret = kvm_call_hyp(__kvm_vcpu_run, vcpu);
632
633 vcpu->mode = OUTSIDE_GUEST_MODE;
Amit Tomarb19e6892015-11-26 10:09:43 +0000634 vcpu->stat.exits++;
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100635 /*
636 * Back from guest
637 *************************************************************/
638
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100639 kvm_arm_clear_debug(vcpu);
640
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500641 /*
642 * We may have taken a host interrupt in HYP mode (ie
643 * while executing the guest). This interrupt is still
644 * pending, as we haven't serviced it yet!
645 *
646 * We're now back in SVC mode, with interrupts
647 * disabled. Enabling the interrupts now will have
648 * the effect of taking the interrupt again, in SVC
649 * mode this time.
650 */
651 local_irq_enable();
652
653 /*
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200654 * We do local_irq_enable() before calling guest_exit() so
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100655 * that if a timer interrupt hits while running the guest we
656 * account that tick as being spent in the guest. We enable
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200657 * preemption after calling guest_exit() so that if we get
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100658 * preempted we make sure ticks after that is not counted as
659 * guest time.
660 */
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200661 guest_exit();
Christoffer Dallb5905dc2015-08-30 15:55:22 +0200662 trace_kvm_exit(ret, kvm_vcpu_trap_get_class(vcpu), *vcpu_pc(vcpu));
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100663
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200664 /*
Shannon Zhaob02386e2016-02-26 19:29:19 +0800665 * We must sync the PMU and timer state before the vgic state so
666 * that the vgic can properly sample the updated state of the
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200667 * interrupt line.
668 */
Shannon Zhaob02386e2016-02-26 19:29:19 +0800669 kvm_pmu_sync_hwstate(vcpu);
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200670 kvm_timer_sync_hwstate(vcpu);
671
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500672 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100673
674 preempt_enable();
675
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500676 ret = handle_exit(vcpu, run, ret);
677 }
678
679 if (vcpu->sigset_active)
680 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
681 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500682}
683
Christoffer Dall86ce85352013-01-20 18:28:08 -0500684static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level)
685{
686 int bit_index;
687 bool set;
688 unsigned long *ptr;
689
690 if (number == KVM_ARM_IRQ_CPU_IRQ)
691 bit_index = __ffs(HCR_VI);
692 else /* KVM_ARM_IRQ_CPU_FIQ */
693 bit_index = __ffs(HCR_VF);
694
695 ptr = (unsigned long *)&vcpu->arch.irq_lines;
696 if (level)
697 set = test_and_set_bit(bit_index, ptr);
698 else
699 set = test_and_clear_bit(bit_index, ptr);
700
701 /*
702 * If we didn't change anything, no need to wake up or kick other CPUs
703 */
704 if (set == level)
705 return 0;
706
707 /*
708 * The vcpu irq_lines field was updated, wake up sleeping VCPUs and
709 * trigger a world-switch round on the running physical CPU to set the
710 * virtual IRQ/FIQ fields in the HCR appropriately.
711 */
712 kvm_vcpu_kick(vcpu);
713
714 return 0;
715}
716
Alexander Graf79558f12013-04-16 19:21:41 +0200717int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
718 bool line_status)
Christoffer Dall86ce85352013-01-20 18:28:08 -0500719{
720 u32 irq = irq_level->irq;
721 unsigned int irq_type, vcpu_idx, irq_num;
722 int nrcpus = atomic_read(&kvm->online_vcpus);
723 struct kvm_vcpu *vcpu = NULL;
724 bool level = irq_level->level;
725
726 irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK;
727 vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK;
728 irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK;
729
730 trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level);
731
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500732 switch (irq_type) {
733 case KVM_ARM_IRQ_TYPE_CPU:
734 if (irqchip_in_kernel(kvm))
735 return -ENXIO;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500736
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500737 if (vcpu_idx >= nrcpus)
738 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500739
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500740 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
741 if (!vcpu)
742 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500743
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500744 if (irq_num > KVM_ARM_IRQ_CPU_FIQ)
745 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500746
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500747 return vcpu_interrupt_line(vcpu, irq_num, level);
748 case KVM_ARM_IRQ_TYPE_PPI:
749 if (!irqchip_in_kernel(kvm))
750 return -ENXIO;
751
752 if (vcpu_idx >= nrcpus)
753 return -EINVAL;
754
755 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
756 if (!vcpu)
757 return -EINVAL;
758
759 if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS)
760 return -EINVAL;
761
762 return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level);
763 case KVM_ARM_IRQ_TYPE_SPI:
764 if (!irqchip_in_kernel(kvm))
765 return -ENXIO;
766
Andre Przywarafd1d0dd2015-04-10 16:17:59 +0100767 if (irq_num < VGIC_NR_PRIVATE_IRQS)
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500768 return -EINVAL;
769
770 return kvm_vgic_inject_irq(kvm, 0, irq_num, level);
771 }
772
773 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500774}
775
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200776static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu,
777 const struct kvm_vcpu_init *init)
778{
779 unsigned int i;
780 int phys_target = kvm_target_cpu();
781
782 if (init->target != phys_target)
783 return -EINVAL;
784
785 /*
786 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
787 * use the same target.
788 */
789 if (vcpu->arch.target != -1 && vcpu->arch.target != init->target)
790 return -EINVAL;
791
792 /* -ENOENT for unknown features, -EINVAL for invalid combinations. */
793 for (i = 0; i < sizeof(init->features) * 8; i++) {
794 bool set = (init->features[i / 32] & (1 << (i % 32)));
795
796 if (set && i >= KVM_VCPU_MAX_FEATURES)
797 return -ENOENT;
798
799 /*
800 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
801 * use the same feature set.
802 */
803 if (vcpu->arch.target != -1 && i < KVM_VCPU_MAX_FEATURES &&
804 test_bit(i, vcpu->arch.features) != set)
805 return -EINVAL;
806
807 if (set)
808 set_bit(i, vcpu->arch.features);
809 }
810
811 vcpu->arch.target = phys_target;
812
813 /* Now we know what it is, we can reset it. */
814 return kvm_reset_vcpu(vcpu);
815}
816
817
Christoffer Dall478a8232013-11-19 17:43:19 -0800818static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu,
819 struct kvm_vcpu_init *init)
820{
821 int ret;
822
823 ret = kvm_vcpu_set_target(vcpu, init);
824 if (ret)
825 return ret;
826
Christoffer Dall957db102014-11-27 10:35:03 +0100827 /*
828 * Ensure a rebooted VM will fault in RAM pages and detect if the
829 * guest MMU is turned off and flush the caches as needed.
830 */
831 if (vcpu->arch.has_run_once)
832 stage2_unmap_vm(vcpu->kvm);
833
Christoffer Dallb856a592014-10-16 17:21:16 +0200834 vcpu_reset_hcr(vcpu);
835
Christoffer Dall478a8232013-11-19 17:43:19 -0800836 /*
Eric Auger37815282015-09-25 23:41:14 +0200837 * Handle the "start in power-off" case.
Christoffer Dall478a8232013-11-19 17:43:19 -0800838 */
Christoffer Dall03f1d4c2014-12-02 15:27:51 +0100839 if (test_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features))
Eric Auger37815282015-09-25 23:41:14 +0200840 vcpu->arch.power_off = true;
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +0200841 else
Eric Auger37815282015-09-25 23:41:14 +0200842 vcpu->arch.power_off = false;
Christoffer Dall478a8232013-11-19 17:43:19 -0800843
844 return 0;
845}
846
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800847static int kvm_arm_vcpu_set_attr(struct kvm_vcpu *vcpu,
848 struct kvm_device_attr *attr)
849{
850 int ret = -ENXIO;
851
852 switch (attr->group) {
853 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800854 ret = kvm_arm_vcpu_arch_set_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800855 break;
856 }
857
858 return ret;
859}
860
861static int kvm_arm_vcpu_get_attr(struct kvm_vcpu *vcpu,
862 struct kvm_device_attr *attr)
863{
864 int ret = -ENXIO;
865
866 switch (attr->group) {
867 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800868 ret = kvm_arm_vcpu_arch_get_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800869 break;
870 }
871
872 return ret;
873}
874
875static int kvm_arm_vcpu_has_attr(struct kvm_vcpu *vcpu,
876 struct kvm_device_attr *attr)
877{
878 int ret = -ENXIO;
879
880 switch (attr->group) {
881 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800882 ret = kvm_arm_vcpu_arch_has_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800883 break;
884 }
885
886 return ret;
887}
888
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500889long kvm_arch_vcpu_ioctl(struct file *filp,
890 unsigned int ioctl, unsigned long arg)
891{
892 struct kvm_vcpu *vcpu = filp->private_data;
893 void __user *argp = (void __user *)arg;
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800894 struct kvm_device_attr attr;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500895
896 switch (ioctl) {
897 case KVM_ARM_VCPU_INIT: {
898 struct kvm_vcpu_init init;
899
900 if (copy_from_user(&init, argp, sizeof(init)))
901 return -EFAULT;
902
Christoffer Dall478a8232013-11-19 17:43:19 -0800903 return kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500904 }
905 case KVM_SET_ONE_REG:
906 case KVM_GET_ONE_REG: {
907 struct kvm_one_reg reg;
Andre Przywarae8180dc2013-05-09 00:28:06 +0200908
909 if (unlikely(!kvm_vcpu_initialized(vcpu)))
910 return -ENOEXEC;
911
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500912 if (copy_from_user(&reg, argp, sizeof(reg)))
913 return -EFAULT;
914 if (ioctl == KVM_SET_ONE_REG)
915 return kvm_arm_set_reg(vcpu, &reg);
916 else
917 return kvm_arm_get_reg(vcpu, &reg);
918 }
919 case KVM_GET_REG_LIST: {
920 struct kvm_reg_list __user *user_list = argp;
921 struct kvm_reg_list reg_list;
922 unsigned n;
923
Andre Przywarae8180dc2013-05-09 00:28:06 +0200924 if (unlikely(!kvm_vcpu_initialized(vcpu)))
925 return -ENOEXEC;
926
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500927 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
928 return -EFAULT;
929 n = reg_list.n;
930 reg_list.n = kvm_arm_num_regs(vcpu);
931 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
932 return -EFAULT;
933 if (n < reg_list.n)
934 return -E2BIG;
935 return kvm_arm_copy_reg_indices(vcpu, user_list->reg);
936 }
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800937 case KVM_SET_DEVICE_ATTR: {
938 if (copy_from_user(&attr, argp, sizeof(attr)))
939 return -EFAULT;
940 return kvm_arm_vcpu_set_attr(vcpu, &attr);
941 }
942 case KVM_GET_DEVICE_ATTR: {
943 if (copy_from_user(&attr, argp, sizeof(attr)))
944 return -EFAULT;
945 return kvm_arm_vcpu_get_attr(vcpu, &attr);
946 }
947 case KVM_HAS_DEVICE_ATTR: {
948 if (copy_from_user(&attr, argp, sizeof(attr)))
949 return -EFAULT;
950 return kvm_arm_vcpu_has_attr(vcpu, &attr);
951 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500952 default:
953 return -EINVAL;
954 }
955}
956
Mario Smarduch53c810c2015-01-15 15:58:57 -0800957/**
958 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
959 * @kvm: kvm instance
960 * @log: slot id and address to which we copy the log
961 *
962 * Steps 1-4 below provide general overview of dirty page logging. See
963 * kvm_get_dirty_log_protect() function description for additional details.
964 *
965 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
966 * always flush the TLB (step 4) even if previous step failed and the dirty
967 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
968 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
969 * writes will be marked dirty for next log read.
970 *
971 * 1. Take a snapshot of the bit and clear it if needed.
972 * 2. Write protect the corresponding page.
973 * 3. Copy the snapshot to the userspace.
974 * 4. Flush TLB's if needed.
975 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500976int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
977{
Mario Smarduch53c810c2015-01-15 15:58:57 -0800978 bool is_dirty = false;
979 int r;
980
981 mutex_lock(&kvm->slots_lock);
982
983 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
984
985 if (is_dirty)
986 kvm_flush_remote_tlbs(kvm);
987
988 mutex_unlock(&kvm->slots_lock);
989 return r;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500990}
991
Christoffer Dall3401d5462013-01-23 13:18:04 -0500992static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm,
993 struct kvm_arm_device_addr *dev_addr)
994{
Christoffer Dall330690c2013-01-21 19:36:13 -0500995 unsigned long dev_id, type;
996
997 dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >>
998 KVM_ARM_DEVICE_ID_SHIFT;
999 type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >>
1000 KVM_ARM_DEVICE_TYPE_SHIFT;
1001
1002 switch (dev_id) {
1003 case KVM_ARM_DEVICE_VGIC_V2:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +03001004 if (!vgic_present)
1005 return -ENXIO;
Christoffer Dallce01e4e2013-09-23 14:55:56 -07001006 return kvm_vgic_addr(kvm, type, &dev_addr->addr, true);
Christoffer Dall330690c2013-01-21 19:36:13 -05001007 default:
1008 return -ENODEV;
1009 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001010}
1011
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001012long kvm_arch_vm_ioctl(struct file *filp,
1013 unsigned int ioctl, unsigned long arg)
1014{
Christoffer Dall3401d5462013-01-23 13:18:04 -05001015 struct kvm *kvm = filp->private_data;
1016 void __user *argp = (void __user *)arg;
1017
1018 switch (ioctl) {
Marc Zyngier5863c2c2013-01-21 19:36:15 -05001019 case KVM_CREATE_IRQCHIP: {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02001020 int ret;
Pavel Fedinc7da6fa2015-12-18 14:38:43 +03001021 if (!vgic_present)
1022 return -ENXIO;
Christoffer Dalla28ebea2016-08-09 19:13:01 +02001023 mutex_lock(&kvm->lock);
1024 ret = kvm_vgic_create(kvm, KVM_DEV_TYPE_ARM_VGIC_V2);
1025 mutex_unlock(&kvm->lock);
1026 return ret;
Marc Zyngier5863c2c2013-01-21 19:36:15 -05001027 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001028 case KVM_ARM_SET_DEVICE_ADDR: {
1029 struct kvm_arm_device_addr dev_addr;
1030
1031 if (copy_from_user(&dev_addr, argp, sizeof(dev_addr)))
1032 return -EFAULT;
1033 return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr);
1034 }
Anup Patel42c4e0c2013-09-30 14:20:07 +05301035 case KVM_ARM_PREFERRED_TARGET: {
1036 int err;
1037 struct kvm_vcpu_init init;
1038
1039 err = kvm_vcpu_preferred_target(&init);
1040 if (err)
1041 return err;
1042
1043 if (copy_to_user(argp, &init, sizeof(init)))
1044 return -EFAULT;
1045
1046 return 0;
1047 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001048 default:
1049 return -EINVAL;
1050 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001051}
1052
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001053static void cpu_init_hyp_mode(void *dummy)
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001054{
Marc Zyngierdac288f2013-05-14 12:11:37 +01001055 phys_addr_t pgd_ptr;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001056 unsigned long hyp_stack_ptr;
1057 unsigned long stack_page;
1058 unsigned long vector_ptr;
1059
1060 /* Switch from the HYP stub to our own HYP init vector */
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001061 __hyp_set_vectors(kvm_get_idmap_vector());
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001062
Marc Zyngierdac288f2013-05-14 12:11:37 +01001063 pgd_ptr = kvm_mmu_get_httbr();
Christoph Lameter1436c1a2013-10-21 13:17:08 +01001064 stack_page = __this_cpu_read(kvm_arm_hyp_stack_page);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001065 hyp_stack_ptr = stack_page + PAGE_SIZE;
Ard Biesheuvela0bf9772016-02-16 13:52:39 +01001066 vector_ptr = (unsigned long)kvm_ksym_ref(__kvm_hyp_vector);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001067
Marc Zyngier12fda812016-06-30 18:40:45 +01001068 __cpu_init_hyp_mode(pgd_ptr, hyp_stack_ptr, vector_ptr);
Marc Zyngier35a24912016-02-01 17:54:35 +00001069 __cpu_init_stage2();
Alex Bennée56c7f5e2015-07-07 17:29:56 +01001070
1071 kvm_arm_init_debug();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001072}
1073
James Morse5f5560b2016-03-30 18:33:04 +01001074static void cpu_hyp_reinit(void)
1075{
1076 if (is_kernel_in_hyp_mode()) {
1077 /*
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001078 * __cpu_init_stage2() is safe to call even if the PM
James Morse5f5560b2016-03-30 18:33:04 +01001079 * event was cancelled before the CPU was reset.
1080 */
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001081 __cpu_init_stage2();
James Morse5f5560b2016-03-30 18:33:04 +01001082 } else {
1083 if (__hyp_get_vectors() == hyp_default_vectors)
1084 cpu_init_hyp_mode(NULL);
1085 }
1086}
1087
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001088static void cpu_hyp_reset(void)
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001089{
Marc Zyngier12fda812016-06-30 18:40:45 +01001090 if (!is_kernel_in_hyp_mode())
Marc Zyngiere537ecd2016-06-30 18:40:48 +01001091 __cpu_reset_hyp_mode(hyp_default_vectors,
1092 kvm_get_idmap_start());
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001093}
1094
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001095static void _kvm_arch_hardware_enable(void *discard)
1096{
1097 if (!__this_cpu_read(kvm_arm_hardware_enabled)) {
1098 cpu_hyp_reinit();
1099 __this_cpu_write(kvm_arm_hardware_enabled, 1);
1100 }
1101}
1102
1103int kvm_arch_hardware_enable(void)
1104{
1105 _kvm_arch_hardware_enable(NULL);
1106 return 0;
1107}
1108
1109static void _kvm_arch_hardware_disable(void *discard)
1110{
1111 if (__this_cpu_read(kvm_arm_hardware_enabled)) {
1112 cpu_hyp_reset();
1113 __this_cpu_write(kvm_arm_hardware_enabled, 0);
1114 }
1115}
1116
1117void kvm_arch_hardware_disable(void)
1118{
1119 _kvm_arch_hardware_disable(NULL);
1120}
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001121
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001122#ifdef CONFIG_CPU_PM
1123static int hyp_init_cpu_pm_notifier(struct notifier_block *self,
1124 unsigned long cmd,
1125 void *v)
1126{
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001127 /*
1128 * kvm_arm_hardware_enabled is left with its old value over
1129 * PM_ENTER->PM_EXIT. It is used to indicate PM_EXIT should
1130 * re-enable hyp.
1131 */
1132 switch (cmd) {
1133 case CPU_PM_ENTER:
1134 if (__this_cpu_read(kvm_arm_hardware_enabled))
1135 /*
1136 * don't update kvm_arm_hardware_enabled here
1137 * so that the hardware will be re-enabled
1138 * when we resume. See below.
1139 */
1140 cpu_hyp_reset();
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001141
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001142 return NOTIFY_OK;
1143 case CPU_PM_EXIT:
1144 if (__this_cpu_read(kvm_arm_hardware_enabled))
1145 /* The hardware was enabled before suspend. */
1146 cpu_hyp_reinit();
1147
1148 return NOTIFY_OK;
1149
1150 default:
1151 return NOTIFY_DONE;
1152 }
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001153}
1154
1155static struct notifier_block hyp_init_cpu_pm_nb = {
1156 .notifier_call = hyp_init_cpu_pm_notifier,
1157};
1158
1159static void __init hyp_cpu_pm_init(void)
1160{
1161 cpu_pm_register_notifier(&hyp_init_cpu_pm_nb);
1162}
Sudeep Holla06a71a22016-04-04 14:46:51 +01001163static void __init hyp_cpu_pm_exit(void)
1164{
1165 cpu_pm_unregister_notifier(&hyp_init_cpu_pm_nb);
1166}
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001167#else
1168static inline void hyp_cpu_pm_init(void)
1169{
1170}
Sudeep Holla06a71a22016-04-04 14:46:51 +01001171static inline void hyp_cpu_pm_exit(void)
1172{
1173}
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001174#endif
1175
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001176static void teardown_common_resources(void)
1177{
1178 free_percpu(kvm_host_cpu_state);
1179}
1180
1181static int init_common_resources(void)
1182{
1183 kvm_host_cpu_state = alloc_percpu(kvm_cpu_context_t);
1184 if (!kvm_host_cpu_state) {
1185 kvm_err("Cannot allocate host CPU state\n");
1186 return -ENOMEM;
1187 }
1188
Vladimir Murzin61349932016-09-22 09:18:01 +01001189 /* set size of VMID supported by CPU */
1190 kvm_vmid_bits = kvm_get_vmid_bits();
1191 kvm_info("%d-bit VMID\n", kvm_vmid_bits);
1192
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001193 return 0;
1194}
1195
1196static int init_subsystems(void)
1197{
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001198 int err = 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001199
1200 /*
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001201 * Enable hardware so that subsystem initialisation can access EL2.
James Morse5f5560b2016-03-30 18:33:04 +01001202 */
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001203 on_each_cpu(_kvm_arch_hardware_enable, NULL, 1);
James Morse5f5560b2016-03-30 18:33:04 +01001204
1205 /*
1206 * Register CPU lower-power notifier
1207 */
1208 hyp_cpu_pm_init();
1209
1210 /*
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001211 * Init HYP view of VGIC
1212 */
1213 err = kvm_vgic_hyp_init();
1214 switch (err) {
1215 case 0:
1216 vgic_present = true;
1217 break;
1218 case -ENODEV:
1219 case -ENXIO:
1220 vgic_present = false;
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001221 err = 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001222 break;
1223 default:
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001224 goto out;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001225 }
1226
1227 /*
1228 * Init HYP architected timer support
1229 */
1230 err = kvm_timer_hyp_init();
1231 if (err)
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001232 goto out;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001233
1234 kvm_perf_init();
1235 kvm_coproc_table_init();
1236
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001237out:
1238 on_each_cpu(_kvm_arch_hardware_disable, NULL, 1);
1239
1240 return err;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001241}
1242
1243static void teardown_hyp_mode(void)
1244{
1245 int cpu;
1246
1247 if (is_kernel_in_hyp_mode())
1248 return;
1249
1250 free_hyp_pgds();
1251 for_each_possible_cpu(cpu)
1252 free_page(per_cpu(kvm_arm_hyp_stack_page, cpu));
Sudeep Holla06a71a22016-04-04 14:46:51 +01001253 hyp_cpu_pm_exit();
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001254}
1255
1256static int init_vhe_mode(void)
1257{
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001258 kvm_info("VHE mode initialized successfully\n");
1259 return 0;
1260}
1261
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001262/**
1263 * Inits Hyp-mode on all online CPUs
1264 */
1265static int init_hyp_mode(void)
1266{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001267 int cpu;
1268 int err = 0;
1269
1270 /*
1271 * Allocate Hyp PGD and setup Hyp identity mapping
1272 */
1273 err = kvm_mmu_init();
1274 if (err)
1275 goto out_err;
1276
1277 /*
1278 * It is probably enough to obtain the default on one
1279 * CPU. It's unlikely to be different on the others.
1280 */
1281 hyp_default_vectors = __hyp_get_vectors();
1282
1283 /*
1284 * Allocate stack pages for Hypervisor-mode
1285 */
1286 for_each_possible_cpu(cpu) {
1287 unsigned long stack_page;
1288
1289 stack_page = __get_free_page(GFP_KERNEL);
1290 if (!stack_page) {
1291 err = -ENOMEM;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001292 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001293 }
1294
1295 per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page;
1296 }
1297
1298 /*
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001299 * Map the Hyp-code called directly from the host
1300 */
Linus Torvalds588ab3f2016-03-17 20:03:47 -07001301 err = create_hyp_mappings(kvm_ksym_ref(__hyp_text_start),
Marc Zyngier59002702016-06-13 15:00:48 +01001302 kvm_ksym_ref(__hyp_text_end), PAGE_HYP_EXEC);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001303 if (err) {
1304 kvm_err("Cannot map world-switch code\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001305 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001306 }
1307
Ard Biesheuvela0bf9772016-02-16 13:52:39 +01001308 err = create_hyp_mappings(kvm_ksym_ref(__start_rodata),
Marc Zyngier74a6b882016-06-13 15:00:47 +01001309 kvm_ksym_ref(__end_rodata), PAGE_HYP_RO);
Marc Zyngier910917b2015-10-27 12:18:48 +00001310 if (err) {
1311 kvm_err("Cannot map rodata section\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001312 goto out_err;
Marc Zyngier910917b2015-10-27 12:18:48 +00001313 }
1314
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001315 /*
1316 * Map the Hyp stack pages
1317 */
1318 for_each_possible_cpu(cpu) {
1319 char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu);
Marc Zyngierc8dddec2016-06-13 15:00:45 +01001320 err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE,
1321 PAGE_HYP);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001322
1323 if (err) {
1324 kvm_err("Cannot map hyp stack\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001325 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001326 }
1327 }
1328
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001329 for_each_possible_cpu(cpu) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001330 kvm_cpu_context_t *cpu_ctxt;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001331
Marc Zyngier3de50da2013-04-08 16:47:19 +01001332 cpu_ctxt = per_cpu_ptr(kvm_host_cpu_state, cpu);
Marc Zyngierc8dddec2016-06-13 15:00:45 +01001333 err = create_hyp_mappings(cpu_ctxt, cpu_ctxt + 1, PAGE_HYP);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001334
1335 if (err) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001336 kvm_err("Cannot map host CPU state: %d\n", err);
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001337 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001338 }
1339 }
1340
1341 kvm_info("Hyp mode initialized successfully\n");
Marc Zyngier210552c2013-03-05 03:18:00 +00001342
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001343 return 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001344
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001345out_err:
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001346 teardown_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001347 kvm_err("error initializing Hyp mode: %d\n", err);
1348 return err;
1349}
1350
Andre Przywarad4e071c2013-04-17 12:52:01 +02001351static void check_kvm_target_cpu(void *ret)
1352{
1353 *(int *)ret = kvm_target_cpu();
1354}
1355
Andre Przywara4429fc62014-06-02 15:37:13 +02001356struct kvm_vcpu *kvm_mpidr_to_vcpu(struct kvm *kvm, unsigned long mpidr)
1357{
1358 struct kvm_vcpu *vcpu;
1359 int i;
1360
1361 mpidr &= MPIDR_HWID_BITMASK;
1362 kvm_for_each_vcpu(i, vcpu, kvm) {
1363 if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu))
1364 return vcpu;
1365 }
1366 return NULL;
1367}
1368
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001369/**
1370 * Initialize Hyp-mode and memory mappings on all CPUs.
1371 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001372int kvm_arch_init(void *opaque)
1373{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001374 int err;
Andre Przywarad4e071c2013-04-17 12:52:01 +02001375 int ret, cpu;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001376
1377 if (!is_hyp_mode_available()) {
1378 kvm_err("HYP mode not available\n");
1379 return -ENODEV;
1380 }
1381
Andre Przywarad4e071c2013-04-17 12:52:01 +02001382 for_each_online_cpu(cpu) {
1383 smp_call_function_single(cpu, check_kvm_target_cpu, &ret, 1);
1384 if (ret < 0) {
1385 kvm_err("Error, CPU %d not supported!\n", cpu);
1386 return -ENODEV;
1387 }
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001388 }
1389
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001390 err = init_common_resources();
1391 if (err)
1392 return err;
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301393
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001394 if (is_kernel_in_hyp_mode())
1395 err = init_vhe_mode();
1396 else
1397 err = init_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001398 if (err)
1399 goto out_err;
1400
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001401 err = init_subsystems();
1402 if (err)
1403 goto out_hyp;
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001404
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001405 return 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001406
1407out_hyp:
1408 teardown_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001409out_err:
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001410 teardown_common_resources();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001411 return err;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001412}
1413
1414/* NOP: Compiling as a module not supported */
1415void kvm_arch_exit(void)
1416{
Marc Zyngier210552c2013-03-05 03:18:00 +00001417 kvm_perf_teardown();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001418}
1419
1420static int arm_init(void)
1421{
1422 int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1423 return rc;
1424}
1425
1426module_init(arm_init);