blob: 46fd37578693634c6180f0f3e6726daf8ac693fe [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 Dall86ce8532013-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
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080036#include <linux/uaccess.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050037#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 Zyngieraa024c22013-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{
Marc Zyngier94d0e592016-10-18 18:37:49 +0100117 int ret, cpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500118
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500119 if (type)
120 return -EINVAL;
121
Marc Zyngier94d0e592016-10-18 18:37:49 +0100122 kvm->arch.last_vcpu_ran = alloc_percpu(typeof(*kvm->arch.last_vcpu_ran));
123 if (!kvm->arch.last_vcpu_ran)
124 return -ENOMEM;
125
126 for_each_possible_cpu(cpu)
127 *per_cpu_ptr(kvm->arch.last_vcpu_ran, cpu) = -1;
128
Christoffer Dalld5d81842013-01-20 18:28:07 -0500129 ret = kvm_alloc_stage2_pgd(kvm);
130 if (ret)
131 goto out_fail_alloc;
132
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100133 ret = create_hyp_mappings(kvm, kvm + 1, PAGE_HYP);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500134 if (ret)
135 goto out_free_stage2_pgd;
136
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100137 kvm_vgic_early_init(kvm);
Christoffer Dalla1a64382013-11-16 10:51:25 -0800138
Christoffer Dalld5d81842013-01-20 18:28:07 -0500139 /* Mark the initial VMID generation invalid */
140 kvm->arch.vmid_gen = 0;
141
Andre Przywara3caa2d82014-06-02 16:26:01 +0200142 /* The maximum number of VCPUs is limited by the host's GIC model */
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300143 kvm->arch.max_vcpus = vgic_present ?
144 kvm_vgic_get_max_vcpus() : KVM_MAX_VCPUS;
Andre Przywara3caa2d82014-06-02 16:26:01 +0200145
Christoffer Dalld5d81842013-01-20 18:28:07 -0500146 return ret;
147out_free_stage2_pgd:
148 kvm_free_stage2_pgd(kvm);
149out_fail_alloc:
Marc Zyngier94d0e592016-10-18 18:37:49 +0100150 free_percpu(kvm->arch.last_vcpu_ran);
151 kvm->arch.last_vcpu_ran = NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500152 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500153}
154
Luiz Capitulino235539b2016-09-07 14:47:23 -0400155bool kvm_arch_has_vcpu_debugfs(void)
156{
157 return false;
158}
159
160int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
161{
162 return 0;
163}
164
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500165int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
166{
167 return VM_FAULT_SIGBUS;
168}
169
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500170
Christoffer Dalld5d81842013-01-20 18:28:07 -0500171/**
172 * kvm_arch_destroy_vm - destroy the VM data structure
173 * @kvm: pointer to the KVM struct
174 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500175void kvm_arch_destroy_vm(struct kvm *kvm)
176{
177 int i;
178
Marc Zyngier94d0e592016-10-18 18:37:49 +0100179 free_percpu(kvm->arch.last_vcpu_ran);
180 kvm->arch.last_vcpu_ran = NULL;
181
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500182 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
183 if (kvm->vcpus[i]) {
184 kvm_arch_vcpu_free(kvm->vcpus[i]);
185 kvm->vcpus[i] = NULL;
186 }
187 }
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100188
189 kvm_vgic_destroy(kvm);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500190}
191
Alexander Graf784aa3d2014-07-14 18:27:35 +0200192int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500193{
194 int r;
195 switch (ext) {
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500196 case KVM_CAP_IRQCHIP:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300197 r = vgic_present;
198 break;
Nikolay Nikolaevd44758c2015-01-24 12:00:02 +0000199 case KVM_CAP_IOEVENTFD:
Christoffer Dall73306722013-10-25 17:29:18 +0100200 case KVM_CAP_DEVICE_CTRL:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500201 case KVM_CAP_USER_MEMORY:
202 case KVM_CAP_SYNC_MMU:
203 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
204 case KVM_CAP_ONE_REG:
Marc Zyngieraa024c22013-01-20 18:28:13 -0500205 case KVM_CAP_ARM_PSCI:
Anup Patel4447a202014-04-29 11:24:25 +0530206 case KVM_CAP_ARM_PSCI_0_2:
Christoffer Dall98047882014-08-19 12:18:04 +0200207 case KVM_CAP_READONLY_MEM:
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000208 case KVM_CAP_MP_STATE:
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100209 case KVM_CAP_IMMEDIATE_EXIT:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500210 r = 1;
211 break;
212 case KVM_CAP_COALESCED_MMIO:
213 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
214 break;
Christoffer Dall3401d5462013-01-23 13:18:04 -0500215 case KVM_CAP_ARM_SET_DEVICE_ADDR:
216 r = 1;
Marc Zyngierca46e102013-04-03 10:43:13 +0100217 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500218 case KVM_CAP_NR_VCPUS:
219 r = num_online_cpus();
220 break;
221 case KVM_CAP_MAX_VCPUS:
222 r = KVM_MAX_VCPUS;
223 break;
Linu Cherian7af4df82017-03-08 11:38:33 +0530224 case KVM_CAP_NR_MEMSLOTS:
225 r = KVM_USER_MEM_SLOTS;
226 break;
Vladimir Murzin29885092016-11-02 11:55:34 +0000227 case KVM_CAP_MSI_DEVID:
228 if (!kvm)
229 r = -EINVAL;
230 else
231 r = kvm->arch.vgic.msis_require_devid;
232 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500233 default:
Andre Przywarab46f01c2016-07-15 12:43:25 +0100234 r = kvm_arch_dev_ioctl_check_extension(kvm, ext);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500235 break;
236 }
237 return r;
238}
239
240long kvm_arch_dev_ioctl(struct file *filp,
241 unsigned int ioctl, unsigned long arg)
242{
243 return -EINVAL;
244}
245
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500246
247struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
248{
249 int err;
250 struct kvm_vcpu *vcpu;
251
Christoffer Dall716139d2014-12-09 14:33:45 +0100252 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm)) {
253 err = -EBUSY;
254 goto out;
255 }
256
Andre Przywara3caa2d82014-06-02 16:26:01 +0200257 if (id >= kvm->arch.max_vcpus) {
258 err = -EINVAL;
259 goto out;
260 }
261
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500262 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
263 if (!vcpu) {
264 err = -ENOMEM;
265 goto out;
266 }
267
268 err = kvm_vcpu_init(vcpu, kvm, id);
269 if (err)
270 goto free_vcpu;
271
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100272 err = create_hyp_mappings(vcpu, vcpu + 1, PAGE_HYP);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500273 if (err)
274 goto vcpu_uninit;
275
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500276 return vcpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500277vcpu_uninit:
278 kvm_vcpu_uninit(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500279free_vcpu:
280 kmem_cache_free(kvm_vcpu_cache, vcpu);
281out:
282 return ERR_PTR(err);
283}
284
Dominik Dingel31928aa2014-12-04 15:47:07 +0100285void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500286{
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100287 kvm_vgic_vcpu_early_init(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500288}
289
290void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
291{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500292 kvm_mmu_free_memory_caches(vcpu);
Marc Zyngier967f8422013-01-23 13:21:59 -0500293 kvm_timer_vcpu_terminate(vcpu);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100294 kvm_vgic_vcpu_destroy(vcpu);
Shannon Zhao5f0a7142015-09-11 15:18:05 +0800295 kvm_pmu_vcpu_destroy(vcpu);
James Morse591d2152016-06-08 17:24:45 +0100296 kvm_vcpu_uninit(vcpu);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500297 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500298}
299
300void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
301{
302 kvm_arch_vcpu_free(vcpu);
303}
304
305int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
306{
Jintack Limfb280e92017-02-03 10:20:05 -0500307 return kvm_timer_should_fire(vcpu_vtimer(vcpu)) ||
308 kvm_timer_should_fire(vcpu_ptimer(vcpu));
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500309}
310
Christoffer Dalld35268d2015-08-25 19:48:21 +0200311void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu)
312{
313 kvm_timer_schedule(vcpu);
314}
315
316void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
317{
318 kvm_timer_unschedule(vcpu);
319}
320
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500321int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
322{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500323 /* Force users to call KVM_ARM_VCPU_INIT */
324 vcpu->arch.target = -1;
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200325 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500326
Marc Zyngier967f8422013-01-23 13:21:59 -0500327 /* Set up the timer */
328 kvm_timer_vcpu_init(vcpu);
329
Alex Bennée84e690b2015-07-07 17:30:00 +0100330 kvm_arm_reset_debug_ptr(vcpu);
331
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500332 return 0;
333}
334
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500335void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
336{
Marc Zyngier94d0e592016-10-18 18:37:49 +0100337 int *last_ran;
338
339 last_ran = this_cpu_ptr(vcpu->kvm->arch.last_vcpu_ran);
340
341 /*
342 * We might get preempted before the vCPU actually runs, but
343 * over-invalidation doesn't affect correctness.
344 */
345 if (*last_ran != vcpu->vcpu_id) {
346 kvm_call_hyp(__kvm_tlb_flush_local_vmid, vcpu);
347 *last_ran = vcpu->vcpu_id;
348 }
349
Christoffer Dall86ce8532013-01-20 18:28:08 -0500350 vcpu->cpu = cpu;
Marc Zyngier3de50da2013-04-08 16:47:19 +0100351 vcpu->arch.host_cpu_context = this_cpu_ptr(kvm_host_cpu_state);
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500352
Marc Zyngier1638a122013-01-21 19:36:11 -0500353 kvm_arm_set_running_vcpu(vcpu);
Christoffer Dall328e5662016-03-24 11:21:04 +0100354
355 kvm_vgic_load(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500356}
357
358void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
359{
Christoffer Dall328e5662016-03-24 11:21:04 +0100360 kvm_vgic_put(vcpu);
361
Christoffer Dalle9b152c2013-12-11 20:29:11 -0800362 vcpu->cpu = -1;
363
Marc Zyngier1638a122013-01-21 19:36:11 -0500364 kvm_arm_set_running_vcpu(NULL);
Marc Zyngier9b4a3002016-01-29 19:04:48 +0000365 kvm_timer_vcpu_put(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500366}
367
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500368int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
369 struct kvm_mp_state *mp_state)
370{
Eric Auger37815282015-09-25 23:41:14 +0200371 if (vcpu->arch.power_off)
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000372 mp_state->mp_state = KVM_MP_STATE_STOPPED;
373 else
374 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
375
376 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500377}
378
379int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
380 struct kvm_mp_state *mp_state)
381{
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000382 switch (mp_state->mp_state) {
383 case KVM_MP_STATE_RUNNABLE:
Eric Auger37815282015-09-25 23:41:14 +0200384 vcpu->arch.power_off = false;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000385 break;
386 case KVM_MP_STATE_STOPPED:
Eric Auger37815282015-09-25 23:41:14 +0200387 vcpu->arch.power_off = true;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000388 break;
389 default:
390 return -EINVAL;
391 }
392
393 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500394}
395
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500396/**
397 * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled
398 * @v: The VCPU pointer
399 *
400 * If the guest CPU is not waiting for interrupts or an interrupt line is
401 * asserted, the CPU is by definition runnable.
402 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500403int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
404{
Eric Auger4f5f1dc2015-09-25 23:41:15 +0200405 return ((!!v->arch.irq_lines || kvm_vgic_vcpu_pending_irq(v))
Eric Auger3b928302015-09-25 23:41:17 +0200406 && !v->arch.power_off && !v->arch.pause);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500407}
408
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500409/* Just ensure a guest exit from a particular CPU */
410static void exit_vm_noop(void *info)
411{
412}
413
414void force_vm_exit(const cpumask_t *mask)
415{
Eric Auger898f9492016-03-07 23:50:36 +0700416 preempt_disable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500417 smp_call_function_many(mask, exit_vm_noop, NULL, true);
Eric Auger898f9492016-03-07 23:50:36 +0700418 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500419}
420
421/**
422 * need_new_vmid_gen - check that the VMID is still valid
Andrea Gelmini6a727b02016-05-21 13:48:35 +0200423 * @kvm: The VM's VMID to check
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500424 *
425 * return true if there is a new generation of VMIDs being used
426 *
427 * The hardware supports only 256 values with the value zero reserved for the
428 * host, so we check if an assigned value belongs to a previous generation,
429 * which which requires us to assign a new value. If we're the first to use a
430 * VMID for the new generation, we must flush necessary caches and TLBs on all
431 * CPUs.
432 */
433static bool need_new_vmid_gen(struct kvm *kvm)
434{
435 return unlikely(kvm->arch.vmid_gen != atomic64_read(&kvm_vmid_gen));
436}
437
438/**
439 * update_vttbr - Update the VTTBR with a valid VMID before the guest runs
440 * @kvm The guest that we are about to run
441 *
442 * Called from kvm_arch_vcpu_ioctl_run before entering the guest to ensure the
443 * VM has a valid VMID, otherwise assigns a new one and flushes corresponding
444 * caches and TLBs.
445 */
446static void update_vttbr(struct kvm *kvm)
447{
448 phys_addr_t pgd_phys;
449 u64 vmid;
450
451 if (!need_new_vmid_gen(kvm))
452 return;
453
454 spin_lock(&kvm_vmid_lock);
455
456 /*
457 * We need to re-check the vmid_gen here to ensure that if another vcpu
458 * already allocated a valid vmid for this vm, then this vcpu should
459 * use the same vmid.
460 */
461 if (!need_new_vmid_gen(kvm)) {
462 spin_unlock(&kvm_vmid_lock);
463 return;
464 }
465
466 /* First user of a new VMID generation? */
467 if (unlikely(kvm_next_vmid == 0)) {
468 atomic64_inc(&kvm_vmid_gen);
469 kvm_next_vmid = 1;
470
471 /*
472 * On SMP we know no other CPUs can use this CPU's or each
473 * other's VMID after force_vm_exit returns since the
474 * kvm_vmid_lock blocks them from reentry to the guest.
475 */
476 force_vm_exit(cpu_all_mask);
477 /*
478 * Now broadcast TLB + ICACHE invalidation over the inner
479 * shareable domain to make sure all data structures are
480 * clean.
481 */
482 kvm_call_hyp(__kvm_flush_vm_context);
483 }
484
485 kvm->arch.vmid_gen = atomic64_read(&kvm_vmid_gen);
486 kvm->arch.vmid = kvm_next_vmid;
487 kvm_next_vmid++;
Vladimir Murzin20475f72015-11-16 11:28:18 +0000488 kvm_next_vmid &= (1 << kvm_vmid_bits) - 1;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500489
490 /* update vttbr to be used with the new vmid */
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000491 pgd_phys = virt_to_phys(kvm->arch.pgd);
Joel Schoppdbff1242014-07-09 11:17:04 -0500492 BUG_ON(pgd_phys & ~VTTBR_BADDR_MASK);
Vladimir Murzin20475f72015-11-16 11:28:18 +0000493 vmid = ((u64)(kvm->arch.vmid) << VTTBR_VMID_SHIFT) & VTTBR_VMID_MASK(kvm_vmid_bits);
Joel Schoppdbff1242014-07-09 11:17:04 -0500494 kvm->arch.vttbr = pgd_phys | vmid;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500495
496 spin_unlock(&kvm_vmid_lock);
497}
498
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500499static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu)
500{
Christoffer Dall05971122014-12-12 21:19:23 +0100501 struct kvm *kvm = vcpu->kvm;
Christoffer Dall41a54482016-05-18 16:26:00 +0100502 int ret = 0;
Christoffer Dalle1ba0202013-09-23 14:55:55 -0700503
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500504 if (likely(vcpu->arch.has_run_once))
505 return 0;
506
507 vcpu->arch.has_run_once = true;
Marc Zyngieraa024c22013-01-20 18:28:13 -0500508
509 /*
Peter Maydell6d3cfbe2014-12-04 15:02:24 +0000510 * Map the VGIC hardware resources before running a vcpu the first
511 * time on this VM.
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500512 */
Pavel Fedinc2f58512015-08-05 11:53:57 +0100513 if (unlikely(irqchip_in_kernel(kvm) && !vgic_ready(kvm))) {
Christoffer Dall05971122014-12-12 21:19:23 +0100514 ret = kvm_vgic_map_resources(kvm);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500515 if (ret)
516 return ret;
517 }
518
Christoffer Dall05971122014-12-12 21:19:23 +0100519 /*
520 * Enable the arch timers only if we have an in-kernel VGIC
521 * and it has been properly initialized, since we cannot handle
522 * interrupts from the virtual timer with a userspace gic.
523 */
524 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm))
Christoffer Dall41a54482016-05-18 16:26:00 +0100525 ret = kvm_timer_enable(vcpu);
Christoffer Dall05971122014-12-12 21:19:23 +0100526
Christoffer Dall41a54482016-05-18 16:26:00 +0100527 return ret;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500528}
529
Eric Augerc1426e42015-03-04 11:14:34 +0100530bool kvm_arch_intc_initialized(struct kvm *kvm)
531{
532 return vgic_initialized(kvm);
533}
534
Christoffer Dallb13216c2016-04-27 10:28:00 +0100535void kvm_arm_halt_guest(struct kvm *kvm)
Eric Auger3b928302015-09-25 23:41:17 +0200536{
537 int i;
538 struct kvm_vcpu *vcpu;
539
540 kvm_for_each_vcpu(i, vcpu, kvm)
541 vcpu->arch.pause = true;
Christoffer Dallb13216c2016-04-27 10:28:00 +0100542 kvm_make_all_cpus_request(kvm, KVM_REQ_VCPU_EXIT);
Eric Auger3b928302015-09-25 23:41:17 +0200543}
544
Christoffer Dall35a2d582016-05-20 15:25:28 +0200545void kvm_arm_halt_vcpu(struct kvm_vcpu *vcpu)
546{
547 vcpu->arch.pause = true;
548 kvm_vcpu_kick(vcpu);
549}
550
551void kvm_arm_resume_vcpu(struct kvm_vcpu *vcpu)
Christoffer Dallb13216c2016-04-27 10:28:00 +0100552{
553 struct swait_queue_head *wq = kvm_arch_vcpu_wq(vcpu);
554
555 vcpu->arch.pause = false;
556 swake_up(wq);
557}
558
559void kvm_arm_resume_guest(struct kvm *kvm)
Eric Auger3b928302015-09-25 23:41:17 +0200560{
561 int i;
562 struct kvm_vcpu *vcpu;
563
Christoffer Dallb13216c2016-04-27 10:28:00 +0100564 kvm_for_each_vcpu(i, vcpu, kvm)
565 kvm_arm_resume_vcpu(vcpu);
Eric Auger3b928302015-09-25 23:41:17 +0200566}
567
Eric Auger37815282015-09-25 23:41:14 +0200568static void vcpu_sleep(struct kvm_vcpu *vcpu)
Marc Zyngieraa024c22013-01-20 18:28:13 -0500569{
Marcelo Tosatti85773702016-02-19 09:46:39 +0100570 struct swait_queue_head *wq = kvm_arch_vcpu_wq(vcpu);
Marc Zyngieraa024c22013-01-20 18:28:13 -0500571
Marcelo Tosatti85773702016-02-19 09:46:39 +0100572 swait_event_interruptible(*wq, ((!vcpu->arch.power_off) &&
Eric Auger3b928302015-09-25 23:41:17 +0200573 (!vcpu->arch.pause)));
Marc Zyngieraa024c22013-01-20 18:28:13 -0500574}
575
Andre Przywarae8180dc2013-05-09 00:28:06 +0200576static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
577{
578 return vcpu->arch.target >= 0;
579}
580
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500581/**
582 * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code
583 * @vcpu: The VCPU pointer
584 * @run: The kvm_run structure pointer used for userspace state exchange
585 *
586 * This function is called through the VCPU_RUN ioctl called from user space. It
587 * will execute VM code in a loop until the time slice for the process is used
588 * or some emulation is needed from user space in which case the function will
589 * return with return value 0 and with the kvm_run structure filled in with the
590 * required data for the requested emulation.
591 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500592int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
593{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500594 int ret;
595 sigset_t sigsaved;
596
Andre Przywarae8180dc2013-05-09 00:28:06 +0200597 if (unlikely(!kvm_vcpu_initialized(vcpu)))
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500598 return -ENOEXEC;
599
600 ret = kvm_vcpu_first_run_init(vcpu);
601 if (ret)
602 return ret;
603
Christoffer Dall45e96ea2013-01-20 18:43:58 -0500604 if (run->exit_reason == KVM_EXIT_MMIO) {
605 ret = kvm_handle_mmio_return(vcpu, vcpu->run);
606 if (ret)
607 return ret;
608 }
609
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100610 if (run->immediate_exit)
611 return -EINTR;
612
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500613 if (vcpu->sigset_active)
614 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
615
616 ret = 1;
617 run->exit_reason = KVM_EXIT_UNKNOWN;
618 while (ret > 0) {
619 /*
620 * Check conditions before entering the guest
621 */
622 cond_resched();
623
624 update_vttbr(vcpu->kvm);
625
Eric Auger3b928302015-09-25 23:41:17 +0200626 if (vcpu->arch.power_off || vcpu->arch.pause)
Eric Auger37815282015-09-25 23:41:14 +0200627 vcpu_sleep(vcpu);
Marc Zyngieraa024c22013-01-20 18:28:13 -0500628
Marc Zyngierabdf5842015-06-08 15:00:28 +0100629 /*
Marc Zyngierabdf5842015-06-08 15:00:28 +0100630 * Preparing the interrupts to be injected also
631 * involves poking the GIC, which must be done in a
632 * non-preemptible context.
633 */
634 preempt_disable();
Christoffer Dall328e5662016-03-24 11:21:04 +0100635
Shannon Zhaob02386e2016-02-26 19:29:19 +0800636 kvm_pmu_flush_hwstate(vcpu);
Christoffer Dall328e5662016-03-24 11:21:04 +0100637
Christoffer Dall7e16aa82015-11-24 10:31:07 +0100638 kvm_timer_flush_hwstate(vcpu);
Marc Zyngier9a99d052015-06-05 09:33:28 +0100639 kvm_vgic_flush_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500640
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500641 local_irq_disable();
642
643 /*
644 * Re-check atomic conditions
645 */
646 if (signal_pending(current)) {
647 ret = -EINTR;
648 run->exit_reason = KVM_EXIT_INTR;
649 }
650
Eric Auger101d3da2015-09-25 23:41:16 +0200651 if (ret <= 0 || need_new_vmid_gen(vcpu->kvm) ||
Eric Auger3b928302015-09-25 23:41:17 +0200652 vcpu->arch.power_off || vcpu->arch.pause) {
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500653 local_irq_enable();
Shannon Zhaob02386e2016-02-26 19:29:19 +0800654 kvm_pmu_sync_hwstate(vcpu);
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200655 kvm_timer_sync_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500656 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100657 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500658 continue;
659 }
660
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100661 kvm_arm_setup_debug(vcpu);
662
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500663 /**************************************************************
664 * Enter the guest
665 */
666 trace_kvm_entry(*vcpu_pc(vcpu));
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200667 guest_enter_irqoff();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500668 vcpu->mode = IN_GUEST_MODE;
669
670 ret = kvm_call_hyp(__kvm_vcpu_run, vcpu);
671
672 vcpu->mode = OUTSIDE_GUEST_MODE;
Amit Tomarb19e6892015-11-26 10:09:43 +0000673 vcpu->stat.exits++;
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100674 /*
675 * Back from guest
676 *************************************************************/
677
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100678 kvm_arm_clear_debug(vcpu);
679
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500680 /*
681 * We may have taken a host interrupt in HYP mode (ie
682 * while executing the guest). This interrupt is still
683 * pending, as we haven't serviced it yet!
684 *
685 * We're now back in SVC mode, with interrupts
686 * disabled. Enabling the interrupts now will have
687 * the effect of taking the interrupt again, in SVC
688 * mode this time.
689 */
690 local_irq_enable();
691
692 /*
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200693 * We do local_irq_enable() before calling guest_exit() so
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100694 * that if a timer interrupt hits while running the guest we
695 * account that tick as being spent in the guest. We enable
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200696 * preemption after calling guest_exit() so that if we get
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100697 * preempted we make sure ticks after that is not counted as
698 * guest time.
699 */
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200700 guest_exit();
Christoffer Dallb5905dc2015-08-30 15:55:22 +0200701 trace_kvm_exit(ret, kvm_vcpu_trap_get_class(vcpu), *vcpu_pc(vcpu));
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100702
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200703 /*
Shannon Zhaob02386e2016-02-26 19:29:19 +0800704 * We must sync the PMU and timer state before the vgic state so
705 * that the vgic can properly sample the updated state of the
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200706 * interrupt line.
707 */
Shannon Zhaob02386e2016-02-26 19:29:19 +0800708 kvm_pmu_sync_hwstate(vcpu);
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200709 kvm_timer_sync_hwstate(vcpu);
710
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500711 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100712
713 preempt_enable();
714
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500715 ret = handle_exit(vcpu, run, ret);
716 }
717
718 if (vcpu->sigset_active)
719 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
720 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500721}
722
Christoffer Dall86ce8532013-01-20 18:28:08 -0500723static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level)
724{
725 int bit_index;
726 bool set;
727 unsigned long *ptr;
728
729 if (number == KVM_ARM_IRQ_CPU_IRQ)
730 bit_index = __ffs(HCR_VI);
731 else /* KVM_ARM_IRQ_CPU_FIQ */
732 bit_index = __ffs(HCR_VF);
733
734 ptr = (unsigned long *)&vcpu->arch.irq_lines;
735 if (level)
736 set = test_and_set_bit(bit_index, ptr);
737 else
738 set = test_and_clear_bit(bit_index, ptr);
739
740 /*
741 * If we didn't change anything, no need to wake up or kick other CPUs
742 */
743 if (set == level)
744 return 0;
745
746 /*
747 * The vcpu irq_lines field was updated, wake up sleeping VCPUs and
748 * trigger a world-switch round on the running physical CPU to set the
749 * virtual IRQ/FIQ fields in the HCR appropriately.
750 */
751 kvm_vcpu_kick(vcpu);
752
753 return 0;
754}
755
Alexander Graf79558f12013-04-16 19:21:41 +0200756int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
757 bool line_status)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500758{
759 u32 irq = irq_level->irq;
760 unsigned int irq_type, vcpu_idx, irq_num;
761 int nrcpus = atomic_read(&kvm->online_vcpus);
762 struct kvm_vcpu *vcpu = NULL;
763 bool level = irq_level->level;
764
765 irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK;
766 vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK;
767 irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK;
768
769 trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level);
770
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500771 switch (irq_type) {
772 case KVM_ARM_IRQ_TYPE_CPU:
773 if (irqchip_in_kernel(kvm))
774 return -ENXIO;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500775
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500776 if (vcpu_idx >= nrcpus)
777 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500778
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500779 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
780 if (!vcpu)
781 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500782
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500783 if (irq_num > KVM_ARM_IRQ_CPU_FIQ)
784 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500785
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500786 return vcpu_interrupt_line(vcpu, irq_num, level);
787 case KVM_ARM_IRQ_TYPE_PPI:
788 if (!irqchip_in_kernel(kvm))
789 return -ENXIO;
790
791 if (vcpu_idx >= nrcpus)
792 return -EINVAL;
793
794 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
795 if (!vcpu)
796 return -EINVAL;
797
798 if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS)
799 return -EINVAL;
800
801 return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level);
802 case KVM_ARM_IRQ_TYPE_SPI:
803 if (!irqchip_in_kernel(kvm))
804 return -ENXIO;
805
Andre Przywarafd1d0dd2015-04-10 16:17:59 +0100806 if (irq_num < VGIC_NR_PRIVATE_IRQS)
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500807 return -EINVAL;
808
809 return kvm_vgic_inject_irq(kvm, 0, irq_num, level);
810 }
811
812 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500813}
814
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200815static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu,
816 const struct kvm_vcpu_init *init)
817{
818 unsigned int i;
819 int phys_target = kvm_target_cpu();
820
821 if (init->target != phys_target)
822 return -EINVAL;
823
824 /*
825 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
826 * use the same target.
827 */
828 if (vcpu->arch.target != -1 && vcpu->arch.target != init->target)
829 return -EINVAL;
830
831 /* -ENOENT for unknown features, -EINVAL for invalid combinations. */
832 for (i = 0; i < sizeof(init->features) * 8; i++) {
833 bool set = (init->features[i / 32] & (1 << (i % 32)));
834
835 if (set && i >= KVM_VCPU_MAX_FEATURES)
836 return -ENOENT;
837
838 /*
839 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
840 * use the same feature set.
841 */
842 if (vcpu->arch.target != -1 && i < KVM_VCPU_MAX_FEATURES &&
843 test_bit(i, vcpu->arch.features) != set)
844 return -EINVAL;
845
846 if (set)
847 set_bit(i, vcpu->arch.features);
848 }
849
850 vcpu->arch.target = phys_target;
851
852 /* Now we know what it is, we can reset it. */
853 return kvm_reset_vcpu(vcpu);
854}
855
856
Christoffer Dall478a8232013-11-19 17:43:19 -0800857static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu,
858 struct kvm_vcpu_init *init)
859{
860 int ret;
861
862 ret = kvm_vcpu_set_target(vcpu, init);
863 if (ret)
864 return ret;
865
Christoffer Dall957db102014-11-27 10:35:03 +0100866 /*
867 * Ensure a rebooted VM will fault in RAM pages and detect if the
868 * guest MMU is turned off and flush the caches as needed.
869 */
870 if (vcpu->arch.has_run_once)
871 stage2_unmap_vm(vcpu->kvm);
872
Christoffer Dallb856a592014-10-16 17:21:16 +0200873 vcpu_reset_hcr(vcpu);
874
Christoffer Dall478a8232013-11-19 17:43:19 -0800875 /*
Eric Auger37815282015-09-25 23:41:14 +0200876 * Handle the "start in power-off" case.
Christoffer Dall478a8232013-11-19 17:43:19 -0800877 */
Christoffer Dall03f1d4c2014-12-02 15:27:51 +0100878 if (test_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features))
Eric Auger37815282015-09-25 23:41:14 +0200879 vcpu->arch.power_off = true;
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +0200880 else
Eric Auger37815282015-09-25 23:41:14 +0200881 vcpu->arch.power_off = false;
Christoffer Dall478a8232013-11-19 17:43:19 -0800882
883 return 0;
884}
885
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800886static int kvm_arm_vcpu_set_attr(struct kvm_vcpu *vcpu,
887 struct kvm_device_attr *attr)
888{
889 int ret = -ENXIO;
890
891 switch (attr->group) {
892 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800893 ret = kvm_arm_vcpu_arch_set_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800894 break;
895 }
896
897 return ret;
898}
899
900static int kvm_arm_vcpu_get_attr(struct kvm_vcpu *vcpu,
901 struct kvm_device_attr *attr)
902{
903 int ret = -ENXIO;
904
905 switch (attr->group) {
906 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800907 ret = kvm_arm_vcpu_arch_get_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800908 break;
909 }
910
911 return ret;
912}
913
914static int kvm_arm_vcpu_has_attr(struct kvm_vcpu *vcpu,
915 struct kvm_device_attr *attr)
916{
917 int ret = -ENXIO;
918
919 switch (attr->group) {
920 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800921 ret = kvm_arm_vcpu_arch_has_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800922 break;
923 }
924
925 return ret;
926}
927
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500928long kvm_arch_vcpu_ioctl(struct file *filp,
929 unsigned int ioctl, unsigned long arg)
930{
931 struct kvm_vcpu *vcpu = filp->private_data;
932 void __user *argp = (void __user *)arg;
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800933 struct kvm_device_attr attr;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500934
935 switch (ioctl) {
936 case KVM_ARM_VCPU_INIT: {
937 struct kvm_vcpu_init init;
938
939 if (copy_from_user(&init, argp, sizeof(init)))
940 return -EFAULT;
941
Christoffer Dall478a8232013-11-19 17:43:19 -0800942 return kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500943 }
944 case KVM_SET_ONE_REG:
945 case KVM_GET_ONE_REG: {
946 struct kvm_one_reg reg;
Andre Przywarae8180dc2013-05-09 00:28:06 +0200947
948 if (unlikely(!kvm_vcpu_initialized(vcpu)))
949 return -ENOEXEC;
950
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500951 if (copy_from_user(&reg, argp, sizeof(reg)))
952 return -EFAULT;
953 if (ioctl == KVM_SET_ONE_REG)
954 return kvm_arm_set_reg(vcpu, &reg);
955 else
956 return kvm_arm_get_reg(vcpu, &reg);
957 }
958 case KVM_GET_REG_LIST: {
959 struct kvm_reg_list __user *user_list = argp;
960 struct kvm_reg_list reg_list;
961 unsigned n;
962
Andre Przywarae8180dc2013-05-09 00:28:06 +0200963 if (unlikely(!kvm_vcpu_initialized(vcpu)))
964 return -ENOEXEC;
965
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500966 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
967 return -EFAULT;
968 n = reg_list.n;
969 reg_list.n = kvm_arm_num_regs(vcpu);
970 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
971 return -EFAULT;
972 if (n < reg_list.n)
973 return -E2BIG;
974 return kvm_arm_copy_reg_indices(vcpu, user_list->reg);
975 }
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800976 case KVM_SET_DEVICE_ATTR: {
977 if (copy_from_user(&attr, argp, sizeof(attr)))
978 return -EFAULT;
979 return kvm_arm_vcpu_set_attr(vcpu, &attr);
980 }
981 case KVM_GET_DEVICE_ATTR: {
982 if (copy_from_user(&attr, argp, sizeof(attr)))
983 return -EFAULT;
984 return kvm_arm_vcpu_get_attr(vcpu, &attr);
985 }
986 case KVM_HAS_DEVICE_ATTR: {
987 if (copy_from_user(&attr, argp, sizeof(attr)))
988 return -EFAULT;
989 return kvm_arm_vcpu_has_attr(vcpu, &attr);
990 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500991 default:
992 return -EINVAL;
993 }
994}
995
Mario Smarduch53c810c2015-01-15 15:58:57 -0800996/**
997 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
998 * @kvm: kvm instance
999 * @log: slot id and address to which we copy the log
1000 *
1001 * Steps 1-4 below provide general overview of dirty page logging. See
1002 * kvm_get_dirty_log_protect() function description for additional details.
1003 *
1004 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
1005 * always flush the TLB (step 4) even if previous step failed and the dirty
1006 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
1007 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
1008 * writes will be marked dirty for next log read.
1009 *
1010 * 1. Take a snapshot of the bit and clear it if needed.
1011 * 2. Write protect the corresponding page.
1012 * 3. Copy the snapshot to the userspace.
1013 * 4. Flush TLB's if needed.
1014 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001015int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
1016{
Mario Smarduch53c810c2015-01-15 15:58:57 -08001017 bool is_dirty = false;
1018 int r;
1019
1020 mutex_lock(&kvm->slots_lock);
1021
1022 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
1023
1024 if (is_dirty)
1025 kvm_flush_remote_tlbs(kvm);
1026
1027 mutex_unlock(&kvm->slots_lock);
1028 return r;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001029}
1030
Christoffer Dall3401d5462013-01-23 13:18:04 -05001031static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm,
1032 struct kvm_arm_device_addr *dev_addr)
1033{
Christoffer Dall330690c2013-01-21 19:36:13 -05001034 unsigned long dev_id, type;
1035
1036 dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >>
1037 KVM_ARM_DEVICE_ID_SHIFT;
1038 type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >>
1039 KVM_ARM_DEVICE_TYPE_SHIFT;
1040
1041 switch (dev_id) {
1042 case KVM_ARM_DEVICE_VGIC_V2:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +03001043 if (!vgic_present)
1044 return -ENXIO;
Christoffer Dallce01e4e2013-09-23 14:55:56 -07001045 return kvm_vgic_addr(kvm, type, &dev_addr->addr, true);
Christoffer Dall330690c2013-01-21 19:36:13 -05001046 default:
1047 return -ENODEV;
1048 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001049}
1050
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001051long kvm_arch_vm_ioctl(struct file *filp,
1052 unsigned int ioctl, unsigned long arg)
1053{
Christoffer Dall3401d5462013-01-23 13:18:04 -05001054 struct kvm *kvm = filp->private_data;
1055 void __user *argp = (void __user *)arg;
1056
1057 switch (ioctl) {
Marc Zyngier5863c2c2013-01-21 19:36:15 -05001058 case KVM_CREATE_IRQCHIP: {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02001059 int ret;
Pavel Fedinc7da6fa2015-12-18 14:38:43 +03001060 if (!vgic_present)
1061 return -ENXIO;
Christoffer Dalla28ebea2016-08-09 19:13:01 +02001062 mutex_lock(&kvm->lock);
1063 ret = kvm_vgic_create(kvm, KVM_DEV_TYPE_ARM_VGIC_V2);
1064 mutex_unlock(&kvm->lock);
1065 return ret;
Marc Zyngier5863c2c2013-01-21 19:36:15 -05001066 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001067 case KVM_ARM_SET_DEVICE_ADDR: {
1068 struct kvm_arm_device_addr dev_addr;
1069
1070 if (copy_from_user(&dev_addr, argp, sizeof(dev_addr)))
1071 return -EFAULT;
1072 return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr);
1073 }
Anup Patel42c4e0c2013-09-30 14:20:07 +05301074 case KVM_ARM_PREFERRED_TARGET: {
1075 int err;
1076 struct kvm_vcpu_init init;
1077
1078 err = kvm_vcpu_preferred_target(&init);
1079 if (err)
1080 return err;
1081
1082 if (copy_to_user(argp, &init, sizeof(init)))
1083 return -EFAULT;
1084
1085 return 0;
1086 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001087 default:
1088 return -EINVAL;
1089 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001090}
1091
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001092static void cpu_init_hyp_mode(void *dummy)
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001093{
Marc Zyngierdac288f2013-05-14 12:11:37 +01001094 phys_addr_t pgd_ptr;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001095 unsigned long hyp_stack_ptr;
1096 unsigned long stack_page;
1097 unsigned long vector_ptr;
1098
1099 /* Switch from the HYP stub to our own HYP init vector */
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001100 __hyp_set_vectors(kvm_get_idmap_vector());
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001101
Marc Zyngierdac288f2013-05-14 12:11:37 +01001102 pgd_ptr = kvm_mmu_get_httbr();
Christoph Lameter1436c1a2013-10-21 13:17:08 +01001103 stack_page = __this_cpu_read(kvm_arm_hyp_stack_page);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001104 hyp_stack_ptr = stack_page + PAGE_SIZE;
Ard Biesheuvela0bf9772016-02-16 13:52:39 +01001105 vector_ptr = (unsigned long)kvm_ksym_ref(__kvm_hyp_vector);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001106
Marc Zyngier12fda812016-06-30 18:40:45 +01001107 __cpu_init_hyp_mode(pgd_ptr, hyp_stack_ptr, vector_ptr);
Marc Zyngier35a24912016-02-01 17:54:35 +00001108 __cpu_init_stage2();
Alex Bennée56c7f5e2015-07-07 17:29:56 +01001109
Jintack Lim488f94d2016-12-01 14:32:05 -05001110 if (is_kernel_in_hyp_mode())
1111 kvm_timer_init_vhe();
1112
Alex Bennée56c7f5e2015-07-07 17:29:56 +01001113 kvm_arm_init_debug();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001114}
1115
James Morse5f5560b2016-03-30 18:33:04 +01001116static void cpu_hyp_reinit(void)
1117{
1118 if (is_kernel_in_hyp_mode()) {
1119 /*
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001120 * __cpu_init_stage2() is safe to call even if the PM
James Morse5f5560b2016-03-30 18:33:04 +01001121 * event was cancelled before the CPU was reset.
1122 */
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001123 __cpu_init_stage2();
James Morse5f5560b2016-03-30 18:33:04 +01001124 } else {
1125 if (__hyp_get_vectors() == hyp_default_vectors)
1126 cpu_init_hyp_mode(NULL);
1127 }
1128}
1129
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001130static void cpu_hyp_reset(void)
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001131{
Marc Zyngier12fda812016-06-30 18:40:45 +01001132 if (!is_kernel_in_hyp_mode())
Marc Zyngiere537ecd2016-06-30 18:40:48 +01001133 __cpu_reset_hyp_mode(hyp_default_vectors,
1134 kvm_get_idmap_start());
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001135}
1136
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001137static void _kvm_arch_hardware_enable(void *discard)
1138{
1139 if (!__this_cpu_read(kvm_arm_hardware_enabled)) {
1140 cpu_hyp_reinit();
1141 __this_cpu_write(kvm_arm_hardware_enabled, 1);
1142 }
1143}
1144
1145int kvm_arch_hardware_enable(void)
1146{
1147 _kvm_arch_hardware_enable(NULL);
1148 return 0;
1149}
1150
1151static void _kvm_arch_hardware_disable(void *discard)
1152{
1153 if (__this_cpu_read(kvm_arm_hardware_enabled)) {
1154 cpu_hyp_reset();
1155 __this_cpu_write(kvm_arm_hardware_enabled, 0);
1156 }
1157}
1158
1159void kvm_arch_hardware_disable(void)
1160{
1161 _kvm_arch_hardware_disable(NULL);
1162}
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001163
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001164#ifdef CONFIG_CPU_PM
1165static int hyp_init_cpu_pm_notifier(struct notifier_block *self,
1166 unsigned long cmd,
1167 void *v)
1168{
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001169 /*
1170 * kvm_arm_hardware_enabled is left with its old value over
1171 * PM_ENTER->PM_EXIT. It is used to indicate PM_EXIT should
1172 * re-enable hyp.
1173 */
1174 switch (cmd) {
1175 case CPU_PM_ENTER:
1176 if (__this_cpu_read(kvm_arm_hardware_enabled))
1177 /*
1178 * don't update kvm_arm_hardware_enabled here
1179 * so that the hardware will be re-enabled
1180 * when we resume. See below.
1181 */
1182 cpu_hyp_reset();
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001183
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001184 return NOTIFY_OK;
1185 case CPU_PM_EXIT:
1186 if (__this_cpu_read(kvm_arm_hardware_enabled))
1187 /* The hardware was enabled before suspend. */
1188 cpu_hyp_reinit();
1189
1190 return NOTIFY_OK;
1191
1192 default:
1193 return NOTIFY_DONE;
1194 }
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001195}
1196
1197static struct notifier_block hyp_init_cpu_pm_nb = {
1198 .notifier_call = hyp_init_cpu_pm_notifier,
1199};
1200
1201static void __init hyp_cpu_pm_init(void)
1202{
1203 cpu_pm_register_notifier(&hyp_init_cpu_pm_nb);
1204}
Sudeep Holla06a71a22016-04-04 14:46:51 +01001205static void __init hyp_cpu_pm_exit(void)
1206{
1207 cpu_pm_unregister_notifier(&hyp_init_cpu_pm_nb);
1208}
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001209#else
1210static inline void hyp_cpu_pm_init(void)
1211{
1212}
Sudeep Holla06a71a22016-04-04 14:46:51 +01001213static inline void hyp_cpu_pm_exit(void)
1214{
1215}
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001216#endif
1217
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001218static void teardown_common_resources(void)
1219{
1220 free_percpu(kvm_host_cpu_state);
1221}
1222
1223static int init_common_resources(void)
1224{
1225 kvm_host_cpu_state = alloc_percpu(kvm_cpu_context_t);
1226 if (!kvm_host_cpu_state) {
1227 kvm_err("Cannot allocate host CPU state\n");
1228 return -ENOMEM;
1229 }
1230
Vladimir Murzin61349932016-09-22 09:18:01 +01001231 /* set size of VMID supported by CPU */
1232 kvm_vmid_bits = kvm_get_vmid_bits();
1233 kvm_info("%d-bit VMID\n", kvm_vmid_bits);
1234
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001235 return 0;
1236}
1237
1238static int init_subsystems(void)
1239{
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001240 int err = 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001241
1242 /*
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001243 * Enable hardware so that subsystem initialisation can access EL2.
James Morse5f5560b2016-03-30 18:33:04 +01001244 */
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001245 on_each_cpu(_kvm_arch_hardware_enable, NULL, 1);
James Morse5f5560b2016-03-30 18:33:04 +01001246
1247 /*
1248 * Register CPU lower-power notifier
1249 */
1250 hyp_cpu_pm_init();
1251
1252 /*
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001253 * Init HYP view of VGIC
1254 */
1255 err = kvm_vgic_hyp_init();
1256 switch (err) {
1257 case 0:
1258 vgic_present = true;
1259 break;
1260 case -ENODEV:
1261 case -ENXIO:
1262 vgic_present = false;
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001263 err = 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001264 break;
1265 default:
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001266 goto out;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001267 }
1268
1269 /*
1270 * Init HYP architected timer support
1271 */
1272 err = kvm_timer_hyp_init();
1273 if (err)
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001274 goto out;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001275
1276 kvm_perf_init();
1277 kvm_coproc_table_init();
1278
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001279out:
1280 on_each_cpu(_kvm_arch_hardware_disable, NULL, 1);
1281
1282 return err;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001283}
1284
1285static void teardown_hyp_mode(void)
1286{
1287 int cpu;
1288
1289 if (is_kernel_in_hyp_mode())
1290 return;
1291
1292 free_hyp_pgds();
1293 for_each_possible_cpu(cpu)
1294 free_page(per_cpu(kvm_arm_hyp_stack_page, cpu));
Sudeep Holla06a71a22016-04-04 14:46:51 +01001295 hyp_cpu_pm_exit();
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001296}
1297
1298static int init_vhe_mode(void)
1299{
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001300 kvm_info("VHE mode initialized successfully\n");
1301 return 0;
1302}
1303
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001304/**
1305 * Inits Hyp-mode on all online CPUs
1306 */
1307static int init_hyp_mode(void)
1308{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001309 int cpu;
1310 int err = 0;
1311
1312 /*
1313 * Allocate Hyp PGD and setup Hyp identity mapping
1314 */
1315 err = kvm_mmu_init();
1316 if (err)
1317 goto out_err;
1318
1319 /*
1320 * It is probably enough to obtain the default on one
1321 * CPU. It's unlikely to be different on the others.
1322 */
1323 hyp_default_vectors = __hyp_get_vectors();
1324
1325 /*
1326 * Allocate stack pages for Hypervisor-mode
1327 */
1328 for_each_possible_cpu(cpu) {
1329 unsigned long stack_page;
1330
1331 stack_page = __get_free_page(GFP_KERNEL);
1332 if (!stack_page) {
1333 err = -ENOMEM;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001334 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001335 }
1336
1337 per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page;
1338 }
1339
1340 /*
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001341 * Map the Hyp-code called directly from the host
1342 */
Linus Torvalds588ab3f2016-03-17 20:03:47 -07001343 err = create_hyp_mappings(kvm_ksym_ref(__hyp_text_start),
Marc Zyngier59002702016-06-13 15:00:48 +01001344 kvm_ksym_ref(__hyp_text_end), PAGE_HYP_EXEC);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001345 if (err) {
1346 kvm_err("Cannot map world-switch code\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001347 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001348 }
1349
Ard Biesheuvela0bf9772016-02-16 13:52:39 +01001350 err = create_hyp_mappings(kvm_ksym_ref(__start_rodata),
Marc Zyngier74a6b882016-06-13 15:00:47 +01001351 kvm_ksym_ref(__end_rodata), PAGE_HYP_RO);
Marc Zyngier910917b2015-10-27 12:18:48 +00001352 if (err) {
1353 kvm_err("Cannot map rodata section\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001354 goto out_err;
Marc Zyngier910917b2015-10-27 12:18:48 +00001355 }
1356
Marc Zyngierc8ea0392016-10-20 10:17:21 +01001357 err = create_hyp_mappings(kvm_ksym_ref(__bss_start),
1358 kvm_ksym_ref(__bss_stop), PAGE_HYP_RO);
1359 if (err) {
1360 kvm_err("Cannot map bss section\n");
1361 goto out_err;
1362 }
1363
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001364 /*
1365 * Map the Hyp stack pages
1366 */
1367 for_each_possible_cpu(cpu) {
1368 char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu);
Marc Zyngierc8dddec2016-06-13 15:00:45 +01001369 err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE,
1370 PAGE_HYP);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001371
1372 if (err) {
1373 kvm_err("Cannot map hyp stack\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001374 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001375 }
1376 }
1377
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001378 for_each_possible_cpu(cpu) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001379 kvm_cpu_context_t *cpu_ctxt;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001380
Marc Zyngier3de50da2013-04-08 16:47:19 +01001381 cpu_ctxt = per_cpu_ptr(kvm_host_cpu_state, cpu);
Marc Zyngierc8dddec2016-06-13 15:00:45 +01001382 err = create_hyp_mappings(cpu_ctxt, cpu_ctxt + 1, PAGE_HYP);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001383
1384 if (err) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001385 kvm_err("Cannot map host CPU state: %d\n", err);
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001386 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001387 }
1388 }
1389
1390 kvm_info("Hyp mode initialized successfully\n");
Marc Zyngier210552c2013-03-05 03:18:00 +00001391
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001392 return 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001393
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001394out_err:
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001395 teardown_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001396 kvm_err("error initializing Hyp mode: %d\n", err);
1397 return err;
1398}
1399
Andre Przywarad4e071c2013-04-17 12:52:01 +02001400static void check_kvm_target_cpu(void *ret)
1401{
1402 *(int *)ret = kvm_target_cpu();
1403}
1404
Andre Przywara4429fc62014-06-02 15:37:13 +02001405struct kvm_vcpu *kvm_mpidr_to_vcpu(struct kvm *kvm, unsigned long mpidr)
1406{
1407 struct kvm_vcpu *vcpu;
1408 int i;
1409
1410 mpidr &= MPIDR_HWID_BITMASK;
1411 kvm_for_each_vcpu(i, vcpu, kvm) {
1412 if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu))
1413 return vcpu;
1414 }
1415 return NULL;
1416}
1417
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001418/**
1419 * Initialize Hyp-mode and memory mappings on all CPUs.
1420 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001421int kvm_arch_init(void *opaque)
1422{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001423 int err;
Andre Przywarad4e071c2013-04-17 12:52:01 +02001424 int ret, cpu;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001425
1426 if (!is_hyp_mode_available()) {
1427 kvm_err("HYP mode not available\n");
1428 return -ENODEV;
1429 }
1430
Andre Przywarad4e071c2013-04-17 12:52:01 +02001431 for_each_online_cpu(cpu) {
1432 smp_call_function_single(cpu, check_kvm_target_cpu, &ret, 1);
1433 if (ret < 0) {
1434 kvm_err("Error, CPU %d not supported!\n", cpu);
1435 return -ENODEV;
1436 }
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001437 }
1438
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001439 err = init_common_resources();
1440 if (err)
1441 return err;
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301442
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001443 if (is_kernel_in_hyp_mode())
1444 err = init_vhe_mode();
1445 else
1446 err = init_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001447 if (err)
1448 goto out_err;
1449
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001450 err = init_subsystems();
1451 if (err)
1452 goto out_hyp;
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001453
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001454 return 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001455
1456out_hyp:
1457 teardown_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001458out_err:
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001459 teardown_common_resources();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001460 return err;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001461}
1462
1463/* NOP: Compiling as a module not supported */
1464void kvm_arch_exit(void)
1465{
Marc Zyngier210552c2013-03-05 03:18:00 +00001466 kvm_perf_teardown();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001467}
1468
1469static int arm_init(void)
1470{
1471 int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1472 return rc;
1473}
1474
1475module_init(arm_init);