blob: f1bde7c4e736de72253b8e8ae1419688d910b098 [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>
23#include <linux/module.h>
24#include <linux/vmalloc.h>
25#include <linux/fs.h>
26#include <linux/mman.h>
27#include <linux/sched.h>
Christoffer Dall86ce85352013-01-20 18:28:08 -050028#include <linux/kvm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050029#include <trace/events/kvm.h>
Shannon Zhaob02386e2016-02-26 19:29:19 +080030#include <kvm/arm_pmu.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050031
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 Zyngieraa024c2f2013-01-20 18:28:13 -050046#include <asm/kvm_psci.h>
Marc Zyngier910917b2015-10-27 12:18:48 +000047#include <asm/sections.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050048
49#ifdef REQUIRES_VIRT
50__asm__(".arch_extension virt");
51#endif
52
Christoffer Dall342cd0a2013-01-20 18:28:06 -050053static DEFINE_PER_CPU(unsigned long, kvm_arm_hyp_stack_page);
Marc Zyngier3de50da2013-04-08 16:47:19 +010054static kvm_cpu_context_t __percpu *kvm_host_cpu_state;
Christoffer Dall342cd0a2013-01-20 18:28:06 -050055static unsigned long hyp_default_vectors;
56
Marc Zyngier1638a122013-01-21 19:36:11 -050057/* Per-CPU variable containing the currently running vcpu. */
58static DEFINE_PER_CPU(struct kvm_vcpu *, kvm_arm_running_vcpu);
59
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050060/* The VMID used in the VTTBR */
61static atomic64_t kvm_vmid_gen = ATOMIC64_INIT(1);
Vladimir Murzin20475f72015-11-16 11:28:18 +000062static u32 kvm_next_vmid;
63static unsigned int kvm_vmid_bits __read_mostly;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050064static DEFINE_SPINLOCK(kvm_vmid_lock);
Christoffer Dall342cd0a2013-01-20 18:28:06 -050065
Pavel Fedinc7da6fa2015-12-18 14:38:43 +030066static bool vgic_present;
67
AKASHI Takahiro67f69192016-04-27 17:47:05 +010068static DEFINE_PER_CPU(unsigned char, kvm_arm_hardware_enabled);
69
Marc Zyngier1638a122013-01-21 19:36:11 -050070static void kvm_arm_set_running_vcpu(struct kvm_vcpu *vcpu)
71{
72 BUG_ON(preemptible());
Christoph Lameter1436c1a2013-10-21 13:17:08 +010073 __this_cpu_write(kvm_arm_running_vcpu, vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050074}
75
76/**
77 * kvm_arm_get_running_vcpu - get the vcpu running on the current CPU.
78 * Must be called from non-preemptible context
79 */
80struct kvm_vcpu *kvm_arm_get_running_vcpu(void)
81{
82 BUG_ON(preemptible());
Christoph Lameter1436c1a2013-10-21 13:17:08 +010083 return __this_cpu_read(kvm_arm_running_vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050084}
85
86/**
87 * kvm_arm_get_running_vcpus - get the per-CPU array of currently running vcpus.
88 */
Will Deacon4000be42014-08-26 15:13:21 +010089struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void)
Marc Zyngier1638a122013-01-21 19:36:11 -050090{
91 return &kvm_arm_running_vcpu;
92}
93
Christoffer Dall749cf76c2013-01-20 18:28:06 -050094int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
95{
96 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
97}
98
Christoffer Dall749cf76c2013-01-20 18:28:06 -050099int kvm_arch_hardware_setup(void)
100{
101 return 0;
102}
103
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500104void kvm_arch_check_processor_compat(void *rtn)
105{
106 *(int *)rtn = 0;
107}
108
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500109
Christoffer Dalld5d81842013-01-20 18:28:07 -0500110/**
111 * kvm_arch_init_vm - initializes a VM data structure
112 * @kvm: pointer to the KVM struct
113 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500114int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
115{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500116 int ret = 0;
117
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500118 if (type)
119 return -EINVAL;
120
Christoffer Dalld5d81842013-01-20 18:28:07 -0500121 ret = kvm_alloc_stage2_pgd(kvm);
122 if (ret)
123 goto out_fail_alloc;
124
125 ret = create_hyp_mappings(kvm, kvm + 1);
126 if (ret)
127 goto out_free_stage2_pgd;
128
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100129 kvm_vgic_early_init(kvm);
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 */
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300136 kvm->arch.max_vcpus = vgic_present ?
137 kvm_vgic_get_max_vcpus() : KVM_MAX_VCPUS;
Andre Przywara3caa2d82014-06-02 16:26:01 +0200138
Christoffer Dalld5d81842013-01-20 18:28:07 -0500139 return ret;
140out_free_stage2_pgd:
141 kvm_free_stage2_pgd(kvm);
142out_fail_alloc:
143 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500144}
145
146int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
147{
148 return VM_FAULT_SIGBUS;
149}
150
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500151
Christoffer Dalld5d81842013-01-20 18:28:07 -0500152/**
153 * kvm_arch_destroy_vm - destroy the VM data structure
154 * @kvm: pointer to the KVM struct
155 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500156void kvm_arch_destroy_vm(struct kvm *kvm)
157{
158 int i;
159
Christoffer Dalld5d81842013-01-20 18:28:07 -0500160 kvm_free_stage2_pgd(kvm);
161
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500162 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
163 if (kvm->vcpus[i]) {
164 kvm_arch_vcpu_free(kvm->vcpus[i]);
165 kvm->vcpus[i] = NULL;
166 }
167 }
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100168
169 kvm_vgic_destroy(kvm);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500170}
171
Alexander Graf784aa3d2014-07-14 18:27:35 +0200172int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500173{
174 int r;
175 switch (ext) {
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500176 case KVM_CAP_IRQCHIP:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300177 r = vgic_present;
178 break;
Nikolay Nikolaevd44758c2015-01-24 12:00:02 +0000179 case KVM_CAP_IOEVENTFD:
Christoffer Dall73306722013-10-25 17:29:18 +0100180 case KVM_CAP_DEVICE_CTRL:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500181 case KVM_CAP_USER_MEMORY:
182 case KVM_CAP_SYNC_MMU:
183 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
184 case KVM_CAP_ONE_REG:
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500185 case KVM_CAP_ARM_PSCI:
Anup Patel4447a202014-04-29 11:24:25 +0530186 case KVM_CAP_ARM_PSCI_0_2:
Christoffer Dall98047882014-08-19 12:18:04 +0200187 case KVM_CAP_READONLY_MEM:
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000188 case KVM_CAP_MP_STATE:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500189 r = 1;
190 break;
191 case KVM_CAP_COALESCED_MMIO:
192 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
193 break;
Christoffer Dall3401d5462013-01-23 13:18:04 -0500194 case KVM_CAP_ARM_SET_DEVICE_ADDR:
195 r = 1;
Marc Zyngierca46e102013-04-03 10:43:13 +0100196 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500197 case KVM_CAP_NR_VCPUS:
198 r = num_online_cpus();
199 break;
200 case KVM_CAP_MAX_VCPUS:
201 r = KVM_MAX_VCPUS;
202 break;
203 default:
Marc Zyngier17b1e312013-04-08 16:47:18 +0100204 r = kvm_arch_dev_ioctl_check_extension(ext);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500205 break;
206 }
207 return r;
208}
209
210long kvm_arch_dev_ioctl(struct file *filp,
211 unsigned int ioctl, unsigned long arg)
212{
213 return -EINVAL;
214}
215
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500216
217struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
218{
219 int err;
220 struct kvm_vcpu *vcpu;
221
Christoffer Dall716139d2014-12-09 14:33:45 +0100222 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm)) {
223 err = -EBUSY;
224 goto out;
225 }
226
Andre Przywara3caa2d82014-06-02 16:26:01 +0200227 if (id >= kvm->arch.max_vcpus) {
228 err = -EINVAL;
229 goto out;
230 }
231
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500232 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
233 if (!vcpu) {
234 err = -ENOMEM;
235 goto out;
236 }
237
238 err = kvm_vcpu_init(vcpu, kvm, id);
239 if (err)
240 goto free_vcpu;
241
Christoffer Dalld5d81842013-01-20 18:28:07 -0500242 err = create_hyp_mappings(vcpu, vcpu + 1);
243 if (err)
244 goto vcpu_uninit;
245
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500246 return vcpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500247vcpu_uninit:
248 kvm_vcpu_uninit(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500249free_vcpu:
250 kmem_cache_free(kvm_vcpu_cache, vcpu);
251out:
252 return ERR_PTR(err);
253}
254
Dominik Dingel31928aa2014-12-04 15:47:07 +0100255void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500256{
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100257 kvm_vgic_vcpu_early_init(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500258}
259
260void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
261{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500262 kvm_mmu_free_memory_caches(vcpu);
Marc Zyngier967f8422013-01-23 13:21:59 -0500263 kvm_timer_vcpu_terminate(vcpu);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100264 kvm_vgic_vcpu_destroy(vcpu);
Shannon Zhao5f0a7142015-09-11 15:18:05 +0800265 kvm_pmu_vcpu_destroy(vcpu);
James Morse591d2152016-06-08 17:24:45 +0100266 kvm_vcpu_uninit(vcpu);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500267 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500268}
269
270void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
271{
272 kvm_arch_vcpu_free(vcpu);
273}
274
275int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
276{
Christoffer Dall1a748472015-03-13 17:02:55 +0000277 return kvm_timer_should_fire(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500278}
279
Christoffer Dalld35268d2015-08-25 19:48:21 +0200280void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu)
281{
282 kvm_timer_schedule(vcpu);
283}
284
285void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
286{
287 kvm_timer_unschedule(vcpu);
288}
289
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500290int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
291{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500292 /* Force users to call KVM_ARM_VCPU_INIT */
293 vcpu->arch.target = -1;
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200294 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500295
Marc Zyngier967f8422013-01-23 13:21:59 -0500296 /* Set up the timer */
297 kvm_timer_vcpu_init(vcpu);
298
Alex Bennée84e690b2015-07-07 17:30:00 +0100299 kvm_arm_reset_debug_ptr(vcpu);
300
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500301 return 0;
302}
303
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500304void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
305{
Christoffer Dall86ce85352013-01-20 18:28:08 -0500306 vcpu->cpu = cpu;
Marc Zyngier3de50da2013-04-08 16:47:19 +0100307 vcpu->arch.host_cpu_context = this_cpu_ptr(kvm_host_cpu_state);
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500308
Marc Zyngier1638a122013-01-21 19:36:11 -0500309 kvm_arm_set_running_vcpu(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500310}
311
312void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
313{
Christoffer Dalle9b152c2013-12-11 20:29:11 -0800314 /*
315 * The arch-generic KVM code expects the cpu field of a vcpu to be -1
316 * if the vcpu is no longer assigned to a cpu. This is used for the
317 * optimized make_all_cpus_request path.
318 */
319 vcpu->cpu = -1;
320
Marc Zyngier1638a122013-01-21 19:36:11 -0500321 kvm_arm_set_running_vcpu(NULL);
Marc Zyngier9b4a3002016-01-29 19:04:48 +0000322 kvm_timer_vcpu_put(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500323}
324
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500325int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
326 struct kvm_mp_state *mp_state)
327{
Eric Auger37815282015-09-25 23:41:14 +0200328 if (vcpu->arch.power_off)
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000329 mp_state->mp_state = KVM_MP_STATE_STOPPED;
330 else
331 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
332
333 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500334}
335
336int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
337 struct kvm_mp_state *mp_state)
338{
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000339 switch (mp_state->mp_state) {
340 case KVM_MP_STATE_RUNNABLE:
Eric Auger37815282015-09-25 23:41:14 +0200341 vcpu->arch.power_off = false;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000342 break;
343 case KVM_MP_STATE_STOPPED:
Eric Auger37815282015-09-25 23:41:14 +0200344 vcpu->arch.power_off = true;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000345 break;
346 default:
347 return -EINVAL;
348 }
349
350 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500351}
352
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500353/**
354 * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled
355 * @v: The VCPU pointer
356 *
357 * If the guest CPU is not waiting for interrupts or an interrupt line is
358 * asserted, the CPU is by definition runnable.
359 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500360int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
361{
Eric Auger4f5f1dc2015-09-25 23:41:15 +0200362 return ((!!v->arch.irq_lines || kvm_vgic_vcpu_pending_irq(v))
Eric Auger3b928302015-09-25 23:41:17 +0200363 && !v->arch.power_off && !v->arch.pause);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500364}
365
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500366/* Just ensure a guest exit from a particular CPU */
367static void exit_vm_noop(void *info)
368{
369}
370
371void force_vm_exit(const cpumask_t *mask)
372{
Eric Auger898f9492016-03-07 23:50:36 +0700373 preempt_disable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500374 smp_call_function_many(mask, exit_vm_noop, NULL, true);
Eric Auger898f9492016-03-07 23:50:36 +0700375 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500376}
377
378/**
379 * need_new_vmid_gen - check that the VMID is still valid
380 * @kvm: The VM's VMID to checkt
381 *
382 * return true if there is a new generation of VMIDs being used
383 *
384 * The hardware supports only 256 values with the value zero reserved for the
385 * host, so we check if an assigned value belongs to a previous generation,
386 * which which requires us to assign a new value. If we're the first to use a
387 * VMID for the new generation, we must flush necessary caches and TLBs on all
388 * CPUs.
389 */
390static bool need_new_vmid_gen(struct kvm *kvm)
391{
392 return unlikely(kvm->arch.vmid_gen != atomic64_read(&kvm_vmid_gen));
393}
394
395/**
396 * update_vttbr - Update the VTTBR with a valid VMID before the guest runs
397 * @kvm The guest that we are about to run
398 *
399 * Called from kvm_arch_vcpu_ioctl_run before entering the guest to ensure the
400 * VM has a valid VMID, otherwise assigns a new one and flushes corresponding
401 * caches and TLBs.
402 */
403static void update_vttbr(struct kvm *kvm)
404{
405 phys_addr_t pgd_phys;
406 u64 vmid;
407
408 if (!need_new_vmid_gen(kvm))
409 return;
410
411 spin_lock(&kvm_vmid_lock);
412
413 /*
414 * We need to re-check the vmid_gen here to ensure that if another vcpu
415 * already allocated a valid vmid for this vm, then this vcpu should
416 * use the same vmid.
417 */
418 if (!need_new_vmid_gen(kvm)) {
419 spin_unlock(&kvm_vmid_lock);
420 return;
421 }
422
423 /* First user of a new VMID generation? */
424 if (unlikely(kvm_next_vmid == 0)) {
425 atomic64_inc(&kvm_vmid_gen);
426 kvm_next_vmid = 1;
427
428 /*
429 * On SMP we know no other CPUs can use this CPU's or each
430 * other's VMID after force_vm_exit returns since the
431 * kvm_vmid_lock blocks them from reentry to the guest.
432 */
433 force_vm_exit(cpu_all_mask);
434 /*
435 * Now broadcast TLB + ICACHE invalidation over the inner
436 * shareable domain to make sure all data structures are
437 * clean.
438 */
439 kvm_call_hyp(__kvm_flush_vm_context);
440 }
441
442 kvm->arch.vmid_gen = atomic64_read(&kvm_vmid_gen);
443 kvm->arch.vmid = kvm_next_vmid;
444 kvm_next_vmid++;
Vladimir Murzin20475f72015-11-16 11:28:18 +0000445 kvm_next_vmid &= (1 << kvm_vmid_bits) - 1;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500446
447 /* update vttbr to be used with the new vmid */
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000448 pgd_phys = virt_to_phys(kvm->arch.pgd);
Joel Schoppdbff1242014-07-09 11:17:04 -0500449 BUG_ON(pgd_phys & ~VTTBR_BADDR_MASK);
Vladimir Murzin20475f72015-11-16 11:28:18 +0000450 vmid = ((u64)(kvm->arch.vmid) << VTTBR_VMID_SHIFT) & VTTBR_VMID_MASK(kvm_vmid_bits);
Joel Schoppdbff1242014-07-09 11:17:04 -0500451 kvm->arch.vttbr = pgd_phys | vmid;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500452
453 spin_unlock(&kvm_vmid_lock);
454}
455
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500456static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu)
457{
Christoffer Dall05971122014-12-12 21:19:23 +0100458 struct kvm *kvm = vcpu->kvm;
Christoffer Dall41a54482016-05-18 16:26:00 +0100459 int ret = 0;
Christoffer Dalle1ba0202013-09-23 14:55:55 -0700460
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500461 if (likely(vcpu->arch.has_run_once))
462 return 0;
463
464 vcpu->arch.has_run_once = true;
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500465
466 /*
Peter Maydell6d3cfbe2014-12-04 15:02:24 +0000467 * Map the VGIC hardware resources before running a vcpu the first
468 * time on this VM.
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500469 */
Pavel Fedinc2f58512015-08-05 11:53:57 +0100470 if (unlikely(irqchip_in_kernel(kvm) && !vgic_ready(kvm))) {
Christoffer Dall05971122014-12-12 21:19:23 +0100471 ret = kvm_vgic_map_resources(kvm);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500472 if (ret)
473 return ret;
474 }
475
Christoffer Dall05971122014-12-12 21:19:23 +0100476 /*
477 * Enable the arch timers only if we have an in-kernel VGIC
478 * and it has been properly initialized, since we cannot handle
479 * interrupts from the virtual timer with a userspace gic.
480 */
481 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm))
Christoffer Dall41a54482016-05-18 16:26:00 +0100482 ret = kvm_timer_enable(vcpu);
Christoffer Dall05971122014-12-12 21:19:23 +0100483
Christoffer Dall41a54482016-05-18 16:26:00 +0100484 return ret;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500485}
486
Eric Augerc1426e42015-03-04 11:14:34 +0100487bool kvm_arch_intc_initialized(struct kvm *kvm)
488{
489 return vgic_initialized(kvm);
490}
491
Christoffer Dallb13216c2016-04-27 10:28:00 +0100492void kvm_arm_halt_guest(struct kvm *kvm)
Eric Auger3b928302015-09-25 23:41:17 +0200493{
494 int i;
495 struct kvm_vcpu *vcpu;
496
497 kvm_for_each_vcpu(i, vcpu, kvm)
498 vcpu->arch.pause = true;
Christoffer Dallb13216c2016-04-27 10:28:00 +0100499 kvm_make_all_cpus_request(kvm, KVM_REQ_VCPU_EXIT);
Eric Auger3b928302015-09-25 23:41:17 +0200500}
501
Christoffer Dall35a2d582016-05-20 15:25:28 +0200502void kvm_arm_halt_vcpu(struct kvm_vcpu *vcpu)
503{
504 vcpu->arch.pause = true;
505 kvm_vcpu_kick(vcpu);
506}
507
508void kvm_arm_resume_vcpu(struct kvm_vcpu *vcpu)
Christoffer Dallb13216c2016-04-27 10:28:00 +0100509{
510 struct swait_queue_head *wq = kvm_arch_vcpu_wq(vcpu);
511
512 vcpu->arch.pause = false;
513 swake_up(wq);
514}
515
516void kvm_arm_resume_guest(struct kvm *kvm)
Eric Auger3b928302015-09-25 23:41:17 +0200517{
518 int i;
519 struct kvm_vcpu *vcpu;
520
Christoffer Dallb13216c2016-04-27 10:28:00 +0100521 kvm_for_each_vcpu(i, vcpu, kvm)
522 kvm_arm_resume_vcpu(vcpu);
Eric Auger3b928302015-09-25 23:41:17 +0200523}
524
Eric Auger37815282015-09-25 23:41:14 +0200525static void vcpu_sleep(struct kvm_vcpu *vcpu)
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500526{
Marcelo Tosatti85773702016-02-19 09:46:39 +0100527 struct swait_queue_head *wq = kvm_arch_vcpu_wq(vcpu);
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500528
Marcelo Tosatti85773702016-02-19 09:46:39 +0100529 swait_event_interruptible(*wq, ((!vcpu->arch.power_off) &&
Eric Auger3b928302015-09-25 23:41:17 +0200530 (!vcpu->arch.pause)));
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500531}
532
Andre Przywarae8180dc2013-05-09 00:28:06 +0200533static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
534{
535 return vcpu->arch.target >= 0;
536}
537
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500538/**
539 * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code
540 * @vcpu: The VCPU pointer
541 * @run: The kvm_run structure pointer used for userspace state exchange
542 *
543 * This function is called through the VCPU_RUN ioctl called from user space. It
544 * will execute VM code in a loop until the time slice for the process is used
545 * or some emulation is needed from user space in which case the function will
546 * return with return value 0 and with the kvm_run structure filled in with the
547 * required data for the requested emulation.
548 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500549int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
550{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500551 int ret;
552 sigset_t sigsaved;
553
Andre Przywarae8180dc2013-05-09 00:28:06 +0200554 if (unlikely(!kvm_vcpu_initialized(vcpu)))
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500555 return -ENOEXEC;
556
557 ret = kvm_vcpu_first_run_init(vcpu);
558 if (ret)
559 return ret;
560
Christoffer Dall45e96ea2013-01-20 18:43:58 -0500561 if (run->exit_reason == KVM_EXIT_MMIO) {
562 ret = kvm_handle_mmio_return(vcpu, vcpu->run);
563 if (ret)
564 return ret;
565 }
566
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500567 if (vcpu->sigset_active)
568 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
569
570 ret = 1;
571 run->exit_reason = KVM_EXIT_UNKNOWN;
572 while (ret > 0) {
573 /*
574 * Check conditions before entering the guest
575 */
576 cond_resched();
577
578 update_vttbr(vcpu->kvm);
579
Eric Auger3b928302015-09-25 23:41:17 +0200580 if (vcpu->arch.power_off || vcpu->arch.pause)
Eric Auger37815282015-09-25 23:41:14 +0200581 vcpu_sleep(vcpu);
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500582
Marc Zyngierabdf5842015-06-08 15:00:28 +0100583 /*
Marc Zyngierabdf5842015-06-08 15:00:28 +0100584 * Preparing the interrupts to be injected also
585 * involves poking the GIC, which must be done in a
586 * non-preemptible context.
587 */
588 preempt_disable();
Shannon Zhaob02386e2016-02-26 19:29:19 +0800589 kvm_pmu_flush_hwstate(vcpu);
Christoffer Dall7e16aa82015-11-24 10:31:07 +0100590 kvm_timer_flush_hwstate(vcpu);
Marc Zyngier9a99d052015-06-05 09:33:28 +0100591 kvm_vgic_flush_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500592
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500593 local_irq_disable();
594
595 /*
596 * Re-check atomic conditions
597 */
598 if (signal_pending(current)) {
599 ret = -EINTR;
600 run->exit_reason = KVM_EXIT_INTR;
601 }
602
Eric Auger101d3da2015-09-25 23:41:16 +0200603 if (ret <= 0 || need_new_vmid_gen(vcpu->kvm) ||
Eric Auger3b928302015-09-25 23:41:17 +0200604 vcpu->arch.power_off || vcpu->arch.pause) {
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500605 local_irq_enable();
Shannon Zhaob02386e2016-02-26 19:29:19 +0800606 kvm_pmu_sync_hwstate(vcpu);
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200607 kvm_timer_sync_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500608 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100609 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500610 continue;
611 }
612
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100613 kvm_arm_setup_debug(vcpu);
614
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500615 /**************************************************************
616 * Enter the guest
617 */
618 trace_kvm_entry(*vcpu_pc(vcpu));
Christian Borntraegerccf73aaf2015-04-30 13:43:31 +0200619 __kvm_guest_enter();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500620 vcpu->mode = IN_GUEST_MODE;
621
622 ret = kvm_call_hyp(__kvm_vcpu_run, vcpu);
623
624 vcpu->mode = OUTSIDE_GUEST_MODE;
Amit Tomarb19e6892015-11-26 10:09:43 +0000625 vcpu->stat.exits++;
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100626 /*
627 * Back from guest
628 *************************************************************/
629
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100630 kvm_arm_clear_debug(vcpu);
631
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500632 /*
633 * We may have taken a host interrupt in HYP mode (ie
634 * while executing the guest). This interrupt is still
635 * pending, as we haven't serviced it yet!
636 *
637 * We're now back in SVC mode, with interrupts
638 * disabled. Enabling the interrupts now will have
639 * the effect of taking the interrupt again, in SVC
640 * mode this time.
641 */
642 local_irq_enable();
643
644 /*
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100645 * We do local_irq_enable() before calling kvm_guest_exit() so
646 * that if a timer interrupt hits while running the guest we
647 * account that tick as being spent in the guest. We enable
648 * preemption after calling kvm_guest_exit() so that if we get
649 * preempted we make sure ticks after that is not counted as
650 * guest time.
651 */
652 kvm_guest_exit();
Christoffer Dallb5905dc2015-08-30 15:55:22 +0200653 trace_kvm_exit(ret, kvm_vcpu_trap_get_class(vcpu), *vcpu_pc(vcpu));
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100654
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200655 /*
Shannon Zhaob02386e2016-02-26 19:29:19 +0800656 * We must sync the PMU and timer state before the vgic state so
657 * that the vgic can properly sample the updated state of the
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200658 * interrupt line.
659 */
Shannon Zhaob02386e2016-02-26 19:29:19 +0800660 kvm_pmu_sync_hwstate(vcpu);
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200661 kvm_timer_sync_hwstate(vcpu);
662
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500663 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100664
665 preempt_enable();
666
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500667 ret = handle_exit(vcpu, run, ret);
668 }
669
670 if (vcpu->sigset_active)
671 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
672 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500673}
674
Christoffer Dall86ce85352013-01-20 18:28:08 -0500675static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level)
676{
677 int bit_index;
678 bool set;
679 unsigned long *ptr;
680
681 if (number == KVM_ARM_IRQ_CPU_IRQ)
682 bit_index = __ffs(HCR_VI);
683 else /* KVM_ARM_IRQ_CPU_FIQ */
684 bit_index = __ffs(HCR_VF);
685
686 ptr = (unsigned long *)&vcpu->arch.irq_lines;
687 if (level)
688 set = test_and_set_bit(bit_index, ptr);
689 else
690 set = test_and_clear_bit(bit_index, ptr);
691
692 /*
693 * If we didn't change anything, no need to wake up or kick other CPUs
694 */
695 if (set == level)
696 return 0;
697
698 /*
699 * The vcpu irq_lines field was updated, wake up sleeping VCPUs and
700 * trigger a world-switch round on the running physical CPU to set the
701 * virtual IRQ/FIQ fields in the HCR appropriately.
702 */
703 kvm_vcpu_kick(vcpu);
704
705 return 0;
706}
707
Alexander Graf79558f12013-04-16 19:21:41 +0200708int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
709 bool line_status)
Christoffer Dall86ce85352013-01-20 18:28:08 -0500710{
711 u32 irq = irq_level->irq;
712 unsigned int irq_type, vcpu_idx, irq_num;
713 int nrcpus = atomic_read(&kvm->online_vcpus);
714 struct kvm_vcpu *vcpu = NULL;
715 bool level = irq_level->level;
716
717 irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK;
718 vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK;
719 irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK;
720
721 trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level);
722
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500723 switch (irq_type) {
724 case KVM_ARM_IRQ_TYPE_CPU:
725 if (irqchip_in_kernel(kvm))
726 return -ENXIO;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500727
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500728 if (vcpu_idx >= nrcpus)
729 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500730
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500731 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
732 if (!vcpu)
733 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500734
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500735 if (irq_num > KVM_ARM_IRQ_CPU_FIQ)
736 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500737
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500738 return vcpu_interrupt_line(vcpu, irq_num, level);
739 case KVM_ARM_IRQ_TYPE_PPI:
740 if (!irqchip_in_kernel(kvm))
741 return -ENXIO;
742
743 if (vcpu_idx >= nrcpus)
744 return -EINVAL;
745
746 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
747 if (!vcpu)
748 return -EINVAL;
749
750 if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS)
751 return -EINVAL;
752
753 return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level);
754 case KVM_ARM_IRQ_TYPE_SPI:
755 if (!irqchip_in_kernel(kvm))
756 return -ENXIO;
757
Andre Przywarafd1d0dd2015-04-10 16:17:59 +0100758 if (irq_num < VGIC_NR_PRIVATE_IRQS)
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500759 return -EINVAL;
760
761 return kvm_vgic_inject_irq(kvm, 0, irq_num, level);
762 }
763
764 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500765}
766
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200767static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu,
768 const struct kvm_vcpu_init *init)
769{
770 unsigned int i;
771 int phys_target = kvm_target_cpu();
772
773 if (init->target != phys_target)
774 return -EINVAL;
775
776 /*
777 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
778 * use the same target.
779 */
780 if (vcpu->arch.target != -1 && vcpu->arch.target != init->target)
781 return -EINVAL;
782
783 /* -ENOENT for unknown features, -EINVAL for invalid combinations. */
784 for (i = 0; i < sizeof(init->features) * 8; i++) {
785 bool set = (init->features[i / 32] & (1 << (i % 32)));
786
787 if (set && i >= KVM_VCPU_MAX_FEATURES)
788 return -ENOENT;
789
790 /*
791 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
792 * use the same feature set.
793 */
794 if (vcpu->arch.target != -1 && i < KVM_VCPU_MAX_FEATURES &&
795 test_bit(i, vcpu->arch.features) != set)
796 return -EINVAL;
797
798 if (set)
799 set_bit(i, vcpu->arch.features);
800 }
801
802 vcpu->arch.target = phys_target;
803
804 /* Now we know what it is, we can reset it. */
805 return kvm_reset_vcpu(vcpu);
806}
807
808
Christoffer Dall478a8232013-11-19 17:43:19 -0800809static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu,
810 struct kvm_vcpu_init *init)
811{
812 int ret;
813
814 ret = kvm_vcpu_set_target(vcpu, init);
815 if (ret)
816 return ret;
817
Christoffer Dall957db102014-11-27 10:35:03 +0100818 /*
819 * Ensure a rebooted VM will fault in RAM pages and detect if the
820 * guest MMU is turned off and flush the caches as needed.
821 */
822 if (vcpu->arch.has_run_once)
823 stage2_unmap_vm(vcpu->kvm);
824
Christoffer Dallb856a592014-10-16 17:21:16 +0200825 vcpu_reset_hcr(vcpu);
826
Christoffer Dall478a8232013-11-19 17:43:19 -0800827 /*
Eric Auger37815282015-09-25 23:41:14 +0200828 * Handle the "start in power-off" case.
Christoffer Dall478a8232013-11-19 17:43:19 -0800829 */
Christoffer Dall03f1d4c2014-12-02 15:27:51 +0100830 if (test_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features))
Eric Auger37815282015-09-25 23:41:14 +0200831 vcpu->arch.power_off = true;
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +0200832 else
Eric Auger37815282015-09-25 23:41:14 +0200833 vcpu->arch.power_off = false;
Christoffer Dall478a8232013-11-19 17:43:19 -0800834
835 return 0;
836}
837
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800838static int kvm_arm_vcpu_set_attr(struct kvm_vcpu *vcpu,
839 struct kvm_device_attr *attr)
840{
841 int ret = -ENXIO;
842
843 switch (attr->group) {
844 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800845 ret = kvm_arm_vcpu_arch_set_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800846 break;
847 }
848
849 return ret;
850}
851
852static int kvm_arm_vcpu_get_attr(struct kvm_vcpu *vcpu,
853 struct kvm_device_attr *attr)
854{
855 int ret = -ENXIO;
856
857 switch (attr->group) {
858 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800859 ret = kvm_arm_vcpu_arch_get_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800860 break;
861 }
862
863 return ret;
864}
865
866static int kvm_arm_vcpu_has_attr(struct kvm_vcpu *vcpu,
867 struct kvm_device_attr *attr)
868{
869 int ret = -ENXIO;
870
871 switch (attr->group) {
872 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800873 ret = kvm_arm_vcpu_arch_has_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800874 break;
875 }
876
877 return ret;
878}
879
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500880long kvm_arch_vcpu_ioctl(struct file *filp,
881 unsigned int ioctl, unsigned long arg)
882{
883 struct kvm_vcpu *vcpu = filp->private_data;
884 void __user *argp = (void __user *)arg;
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800885 struct kvm_device_attr attr;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500886
887 switch (ioctl) {
888 case KVM_ARM_VCPU_INIT: {
889 struct kvm_vcpu_init init;
890
891 if (copy_from_user(&init, argp, sizeof(init)))
892 return -EFAULT;
893
Christoffer Dall478a8232013-11-19 17:43:19 -0800894 return kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500895 }
896 case KVM_SET_ONE_REG:
897 case KVM_GET_ONE_REG: {
898 struct kvm_one_reg reg;
Andre Przywarae8180dc2013-05-09 00:28:06 +0200899
900 if (unlikely(!kvm_vcpu_initialized(vcpu)))
901 return -ENOEXEC;
902
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500903 if (copy_from_user(&reg, argp, sizeof(reg)))
904 return -EFAULT;
905 if (ioctl == KVM_SET_ONE_REG)
906 return kvm_arm_set_reg(vcpu, &reg);
907 else
908 return kvm_arm_get_reg(vcpu, &reg);
909 }
910 case KVM_GET_REG_LIST: {
911 struct kvm_reg_list __user *user_list = argp;
912 struct kvm_reg_list reg_list;
913 unsigned n;
914
Andre Przywarae8180dc2013-05-09 00:28:06 +0200915 if (unlikely(!kvm_vcpu_initialized(vcpu)))
916 return -ENOEXEC;
917
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500918 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
919 return -EFAULT;
920 n = reg_list.n;
921 reg_list.n = kvm_arm_num_regs(vcpu);
922 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
923 return -EFAULT;
924 if (n < reg_list.n)
925 return -E2BIG;
926 return kvm_arm_copy_reg_indices(vcpu, user_list->reg);
927 }
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800928 case KVM_SET_DEVICE_ATTR: {
929 if (copy_from_user(&attr, argp, sizeof(attr)))
930 return -EFAULT;
931 return kvm_arm_vcpu_set_attr(vcpu, &attr);
932 }
933 case KVM_GET_DEVICE_ATTR: {
934 if (copy_from_user(&attr, argp, sizeof(attr)))
935 return -EFAULT;
936 return kvm_arm_vcpu_get_attr(vcpu, &attr);
937 }
938 case KVM_HAS_DEVICE_ATTR: {
939 if (copy_from_user(&attr, argp, sizeof(attr)))
940 return -EFAULT;
941 return kvm_arm_vcpu_has_attr(vcpu, &attr);
942 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500943 default:
944 return -EINVAL;
945 }
946}
947
Mario Smarduch53c810c2015-01-15 15:58:57 -0800948/**
949 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
950 * @kvm: kvm instance
951 * @log: slot id and address to which we copy the log
952 *
953 * Steps 1-4 below provide general overview of dirty page logging. See
954 * kvm_get_dirty_log_protect() function description for additional details.
955 *
956 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
957 * always flush the TLB (step 4) even if previous step failed and the dirty
958 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
959 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
960 * writes will be marked dirty for next log read.
961 *
962 * 1. Take a snapshot of the bit and clear it if needed.
963 * 2. Write protect the corresponding page.
964 * 3. Copy the snapshot to the userspace.
965 * 4. Flush TLB's if needed.
966 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500967int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
968{
Mario Smarduch53c810c2015-01-15 15:58:57 -0800969 bool is_dirty = false;
970 int r;
971
972 mutex_lock(&kvm->slots_lock);
973
974 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
975
976 if (is_dirty)
977 kvm_flush_remote_tlbs(kvm);
978
979 mutex_unlock(&kvm->slots_lock);
980 return r;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500981}
982
Christoffer Dall3401d5462013-01-23 13:18:04 -0500983static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm,
984 struct kvm_arm_device_addr *dev_addr)
985{
Christoffer Dall330690c2013-01-21 19:36:13 -0500986 unsigned long dev_id, type;
987
988 dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >>
989 KVM_ARM_DEVICE_ID_SHIFT;
990 type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >>
991 KVM_ARM_DEVICE_TYPE_SHIFT;
992
993 switch (dev_id) {
994 case KVM_ARM_DEVICE_VGIC_V2:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300995 if (!vgic_present)
996 return -ENXIO;
Christoffer Dallce01e4e2013-09-23 14:55:56 -0700997 return kvm_vgic_addr(kvm, type, &dev_addr->addr, true);
Christoffer Dall330690c2013-01-21 19:36:13 -0500998 default:
999 return -ENODEV;
1000 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001001}
1002
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001003long kvm_arch_vm_ioctl(struct file *filp,
1004 unsigned int ioctl, unsigned long arg)
1005{
Christoffer Dall3401d5462013-01-23 13:18:04 -05001006 struct kvm *kvm = filp->private_data;
1007 void __user *argp = (void __user *)arg;
1008
1009 switch (ioctl) {
Marc Zyngier5863c2c2013-01-21 19:36:15 -05001010 case KVM_CREATE_IRQCHIP: {
Pavel Fedinc7da6fa2015-12-18 14:38:43 +03001011 if (!vgic_present)
1012 return -ENXIO;
Paolo Bonzini69ff5c62015-03-05 12:26:06 +01001013 return kvm_vgic_create(kvm, KVM_DEV_TYPE_ARM_VGIC_V2);
Marc Zyngier5863c2c2013-01-21 19:36:15 -05001014 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001015 case KVM_ARM_SET_DEVICE_ADDR: {
1016 struct kvm_arm_device_addr dev_addr;
1017
1018 if (copy_from_user(&dev_addr, argp, sizeof(dev_addr)))
1019 return -EFAULT;
1020 return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr);
1021 }
Anup Patel42c4e0c2013-09-30 14:20:07 +05301022 case KVM_ARM_PREFERRED_TARGET: {
1023 int err;
1024 struct kvm_vcpu_init init;
1025
1026 err = kvm_vcpu_preferred_target(&init);
1027 if (err)
1028 return err;
1029
1030 if (copy_to_user(argp, &init, sizeof(init)))
1031 return -EFAULT;
1032
1033 return 0;
1034 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001035 default:
1036 return -EINVAL;
1037 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001038}
1039
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001040static void cpu_init_hyp_mode(void *dummy)
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001041{
Marc Zyngierdac288f2013-05-14 12:11:37 +01001042 phys_addr_t boot_pgd_ptr;
1043 phys_addr_t pgd_ptr;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001044 unsigned long hyp_stack_ptr;
1045 unsigned long stack_page;
1046 unsigned long vector_ptr;
1047
1048 /* Switch from the HYP stub to our own HYP init vector */
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001049 __hyp_set_vectors(kvm_get_idmap_vector());
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001050
Marc Zyngierdac288f2013-05-14 12:11:37 +01001051 boot_pgd_ptr = kvm_mmu_get_boot_httbr();
1052 pgd_ptr = kvm_mmu_get_httbr();
Christoph Lameter1436c1a2013-10-21 13:17:08 +01001053 stack_page = __this_cpu_read(kvm_arm_hyp_stack_page);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001054 hyp_stack_ptr = stack_page + PAGE_SIZE;
Ard Biesheuvela0bf9772016-02-16 13:52:39 +01001055 vector_ptr = (unsigned long)kvm_ksym_ref(__kvm_hyp_vector);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001056
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001057 __cpu_init_hyp_mode(boot_pgd_ptr, pgd_ptr, hyp_stack_ptr, vector_ptr);
Marc Zyngier35a24912016-02-01 17:54:35 +00001058 __cpu_init_stage2();
Alex Bennée56c7f5e2015-07-07 17:29:56 +01001059
1060 kvm_arm_init_debug();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001061}
1062
James Morse5f5560b2016-03-30 18:33:04 +01001063static void cpu_hyp_reinit(void)
1064{
1065 if (is_kernel_in_hyp_mode()) {
1066 /*
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001067 * __cpu_init_stage2() is safe to call even if the PM
James Morse5f5560b2016-03-30 18:33:04 +01001068 * event was cancelled before the CPU was reset.
1069 */
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001070 __cpu_init_stage2();
James Morse5f5560b2016-03-30 18:33:04 +01001071 } else {
1072 if (__hyp_get_vectors() == hyp_default_vectors)
1073 cpu_init_hyp_mode(NULL);
1074 }
1075}
1076
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001077static void cpu_hyp_reset(void)
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001078{
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001079 phys_addr_t boot_pgd_ptr;
1080 phys_addr_t phys_idmap_start;
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001081
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001082 if (!is_kernel_in_hyp_mode()) {
1083 boot_pgd_ptr = kvm_mmu_get_boot_httbr();
1084 phys_idmap_start = kvm_get_idmap_start();
1085
1086 __cpu_reset_hyp_mode(boot_pgd_ptr, phys_idmap_start);
1087 }
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001088}
1089
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001090static void _kvm_arch_hardware_enable(void *discard)
1091{
1092 if (!__this_cpu_read(kvm_arm_hardware_enabled)) {
1093 cpu_hyp_reinit();
1094 __this_cpu_write(kvm_arm_hardware_enabled, 1);
1095 }
1096}
1097
1098int kvm_arch_hardware_enable(void)
1099{
1100 _kvm_arch_hardware_enable(NULL);
1101 return 0;
1102}
1103
1104static void _kvm_arch_hardware_disable(void *discard)
1105{
1106 if (__this_cpu_read(kvm_arm_hardware_enabled)) {
1107 cpu_hyp_reset();
1108 __this_cpu_write(kvm_arm_hardware_enabled, 0);
1109 }
1110}
1111
1112void kvm_arch_hardware_disable(void)
1113{
1114 _kvm_arch_hardware_disable(NULL);
1115}
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001116
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001117#ifdef CONFIG_CPU_PM
1118static int hyp_init_cpu_pm_notifier(struct notifier_block *self,
1119 unsigned long cmd,
1120 void *v)
1121{
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001122 /*
1123 * kvm_arm_hardware_enabled is left with its old value over
1124 * PM_ENTER->PM_EXIT. It is used to indicate PM_EXIT should
1125 * re-enable hyp.
1126 */
1127 switch (cmd) {
1128 case CPU_PM_ENTER:
1129 if (__this_cpu_read(kvm_arm_hardware_enabled))
1130 /*
1131 * don't update kvm_arm_hardware_enabled here
1132 * so that the hardware will be re-enabled
1133 * when we resume. See below.
1134 */
1135 cpu_hyp_reset();
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001136
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001137 return NOTIFY_OK;
1138 case CPU_PM_EXIT:
1139 if (__this_cpu_read(kvm_arm_hardware_enabled))
1140 /* The hardware was enabled before suspend. */
1141 cpu_hyp_reinit();
1142
1143 return NOTIFY_OK;
1144
1145 default:
1146 return NOTIFY_DONE;
1147 }
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001148}
1149
1150static struct notifier_block hyp_init_cpu_pm_nb = {
1151 .notifier_call = hyp_init_cpu_pm_notifier,
1152};
1153
1154static void __init hyp_cpu_pm_init(void)
1155{
1156 cpu_pm_register_notifier(&hyp_init_cpu_pm_nb);
1157}
Sudeep Holla06a71a22016-04-04 14:46:51 +01001158static void __init hyp_cpu_pm_exit(void)
1159{
1160 cpu_pm_unregister_notifier(&hyp_init_cpu_pm_nb);
1161}
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001162#else
1163static inline void hyp_cpu_pm_init(void)
1164{
1165}
Sudeep Holla06a71a22016-04-04 14:46:51 +01001166static inline void hyp_cpu_pm_exit(void)
1167{
1168}
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001169#endif
1170
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001171static void teardown_common_resources(void)
1172{
1173 free_percpu(kvm_host_cpu_state);
1174}
1175
1176static int init_common_resources(void)
1177{
1178 kvm_host_cpu_state = alloc_percpu(kvm_cpu_context_t);
1179 if (!kvm_host_cpu_state) {
1180 kvm_err("Cannot allocate host CPU state\n");
1181 return -ENOMEM;
1182 }
1183
1184 return 0;
1185}
1186
1187static int init_subsystems(void)
1188{
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001189 int err = 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001190
1191 /*
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001192 * Enable hardware so that subsystem initialisation can access EL2.
James Morse5f5560b2016-03-30 18:33:04 +01001193 */
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001194 on_each_cpu(_kvm_arch_hardware_enable, NULL, 1);
James Morse5f5560b2016-03-30 18:33:04 +01001195
1196 /*
1197 * Register CPU lower-power notifier
1198 */
1199 hyp_cpu_pm_init();
1200
1201 /*
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001202 * Init HYP view of VGIC
1203 */
1204 err = kvm_vgic_hyp_init();
1205 switch (err) {
1206 case 0:
1207 vgic_present = true;
1208 break;
1209 case -ENODEV:
1210 case -ENXIO:
1211 vgic_present = false;
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001212 err = 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001213 break;
1214 default:
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001215 goto out;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001216 }
1217
1218 /*
1219 * Init HYP architected timer support
1220 */
1221 err = kvm_timer_hyp_init();
1222 if (err)
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001223 goto out;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001224
1225 kvm_perf_init();
1226 kvm_coproc_table_init();
1227
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001228out:
1229 on_each_cpu(_kvm_arch_hardware_disable, NULL, 1);
1230
1231 return err;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001232}
1233
1234static void teardown_hyp_mode(void)
1235{
1236 int cpu;
1237
1238 if (is_kernel_in_hyp_mode())
1239 return;
1240
1241 free_hyp_pgds();
1242 for_each_possible_cpu(cpu)
1243 free_page(per_cpu(kvm_arm_hyp_stack_page, cpu));
Sudeep Holla06a71a22016-04-04 14:46:51 +01001244 hyp_cpu_pm_exit();
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001245}
1246
1247static int init_vhe_mode(void)
1248{
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001249 /* set size of VMID supported by CPU */
1250 kvm_vmid_bits = kvm_get_vmid_bits();
1251 kvm_info("%d-bit VMID\n", kvm_vmid_bits);
1252
1253 kvm_info("VHE mode initialized successfully\n");
1254 return 0;
1255}
1256
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001257/**
1258 * Inits Hyp-mode on all online CPUs
1259 */
1260static int init_hyp_mode(void)
1261{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001262 int cpu;
1263 int err = 0;
1264
1265 /*
1266 * Allocate Hyp PGD and setup Hyp identity mapping
1267 */
1268 err = kvm_mmu_init();
1269 if (err)
1270 goto out_err;
1271
1272 /*
1273 * It is probably enough to obtain the default on one
1274 * CPU. It's unlikely to be different on the others.
1275 */
1276 hyp_default_vectors = __hyp_get_vectors();
1277
1278 /*
1279 * Allocate stack pages for Hypervisor-mode
1280 */
1281 for_each_possible_cpu(cpu) {
1282 unsigned long stack_page;
1283
1284 stack_page = __get_free_page(GFP_KERNEL);
1285 if (!stack_page) {
1286 err = -ENOMEM;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001287 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001288 }
1289
1290 per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page;
1291 }
1292
1293 /*
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001294 * Map the Hyp-code called directly from the host
1295 */
Linus Torvalds588ab3f2016-03-17 20:03:47 -07001296 err = create_hyp_mappings(kvm_ksym_ref(__hyp_text_start),
1297 kvm_ksym_ref(__hyp_text_end));
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001298 if (err) {
1299 kvm_err("Cannot map world-switch code\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001300 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001301 }
1302
Ard Biesheuvela0bf9772016-02-16 13:52:39 +01001303 err = create_hyp_mappings(kvm_ksym_ref(__start_rodata),
1304 kvm_ksym_ref(__end_rodata));
Marc Zyngier910917b2015-10-27 12:18:48 +00001305 if (err) {
1306 kvm_err("Cannot map rodata section\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001307 goto out_err;
Marc Zyngier910917b2015-10-27 12:18:48 +00001308 }
1309
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001310 /*
1311 * Map the Hyp stack pages
1312 */
1313 for_each_possible_cpu(cpu) {
1314 char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu);
1315 err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE);
1316
1317 if (err) {
1318 kvm_err("Cannot map hyp stack\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001319 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001320 }
1321 }
1322
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001323 for_each_possible_cpu(cpu) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001324 kvm_cpu_context_t *cpu_ctxt;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001325
Marc Zyngier3de50da2013-04-08 16:47:19 +01001326 cpu_ctxt = per_cpu_ptr(kvm_host_cpu_state, cpu);
1327 err = create_hyp_mappings(cpu_ctxt, cpu_ctxt + 1);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001328
1329 if (err) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001330 kvm_err("Cannot map host CPU state: %d\n", err);
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001331 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001332 }
1333 }
1334
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001335#ifndef CONFIG_HOTPLUG_CPU
1336 free_boot_hyp_pgd();
1337#endif
1338
Vladimir Murzin20475f72015-11-16 11:28:18 +00001339 /* set size of VMID supported by CPU */
1340 kvm_vmid_bits = kvm_get_vmid_bits();
1341 kvm_info("%d-bit VMID\n", kvm_vmid_bits);
1342
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001343 kvm_info("Hyp mode initialized successfully\n");
Marc Zyngier210552c2013-03-05 03:18:00 +00001344
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001345 return 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001346
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001347out_err:
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001348 teardown_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001349 kvm_err("error initializing Hyp mode: %d\n", err);
1350 return err;
1351}
1352
Andre Przywarad4e071c2013-04-17 12:52:01 +02001353static void check_kvm_target_cpu(void *ret)
1354{
1355 *(int *)ret = kvm_target_cpu();
1356}
1357
Andre Przywara4429fc62014-06-02 15:37:13 +02001358struct kvm_vcpu *kvm_mpidr_to_vcpu(struct kvm *kvm, unsigned long mpidr)
1359{
1360 struct kvm_vcpu *vcpu;
1361 int i;
1362
1363 mpidr &= MPIDR_HWID_BITMASK;
1364 kvm_for_each_vcpu(i, vcpu, kvm) {
1365 if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu))
1366 return vcpu;
1367 }
1368 return NULL;
1369}
1370
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001371/**
1372 * Initialize Hyp-mode and memory mappings on all CPUs.
1373 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001374int kvm_arch_init(void *opaque)
1375{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001376 int err;
Andre Przywarad4e071c2013-04-17 12:52:01 +02001377 int ret, cpu;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001378
1379 if (!is_hyp_mode_available()) {
1380 kvm_err("HYP mode not available\n");
1381 return -ENODEV;
1382 }
1383
Andre Przywarad4e071c2013-04-17 12:52:01 +02001384 for_each_online_cpu(cpu) {
1385 smp_call_function_single(cpu, check_kvm_target_cpu, &ret, 1);
1386 if (ret < 0) {
1387 kvm_err("Error, CPU %d not supported!\n", cpu);
1388 return -ENODEV;
1389 }
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001390 }
1391
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001392 err = init_common_resources();
1393 if (err)
1394 return err;
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301395
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001396 if (is_kernel_in_hyp_mode())
1397 err = init_vhe_mode();
1398 else
1399 err = init_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001400 if (err)
1401 goto out_err;
1402
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001403 err = init_subsystems();
1404 if (err)
1405 goto out_hyp;
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001406
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001407 return 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001408
1409out_hyp:
1410 teardown_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001411out_err:
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001412 teardown_common_resources();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001413 return err;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001414}
1415
1416/* NOP: Compiling as a module not supported */
1417void kvm_arch_exit(void)
1418{
Marc Zyngier210552c2013-03-05 03:18:00 +00001419 kvm_perf_teardown();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001420}
1421
1422static int arm_init(void)
1423{
1424 int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1425 return rc;
1426}
1427
1428module_init(arm_init);