blob: dfc00a5bdc10d369f6b06356a4372dcdb44cc76e [file] [log] [blame]
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001/*
2 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
3 * Author: Christoffer Dall <c.dall@virtualopensystems.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2, as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
18
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +010019#include <linux/cpu_pm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050020#include <linux/errno.h>
21#include <linux/err.h>
22#include <linux/kvm_host.h>
Andre Przywara1085fdc2016-07-15 12:43:31 +010023#include <linux/list.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050024#include <linux/module.h>
25#include <linux/vmalloc.h>
26#include <linux/fs.h>
27#include <linux/mman.h>
28#include <linux/sched.h>
Christoffer Dall86ce85352013-01-20 18:28:08 -050029#include <linux/kvm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050030#include <trace/events/kvm.h>
Shannon Zhaob02386e2016-02-26 19:29:19 +080031#include <kvm/arm_pmu.h>
Mark Rutland8b106af2018-04-12 12:11:24 +010032#include <kvm/arm_psci.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050033
34#define CREATE_TRACE_POINTS
35#include "trace.h"
36
Christoffer Dall749cf76c2013-01-20 18:28:06 -050037#include <asm/uaccess.h>
38#include <asm/ptrace.h>
39#include <asm/mman.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050040#include <asm/tlbflush.h>
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050041#include <asm/cacheflush.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050042#include <asm/virt.h>
43#include <asm/kvm_arm.h>
44#include <asm/kvm_asm.h>
45#include <asm/kvm_mmu.h>
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050046#include <asm/kvm_emulate.h>
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050047#include <asm/kvm_coproc.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
James Morse6a654e62018-07-20 10:56:14 +010054DEFINE_PER_CPU(kvm_cpu_context_t, kvm_host_cpu_state);
Christoffer Dall342cd0a2013-01-20 18:28:06 -050055static DEFINE_PER_CPU(unsigned long, kvm_arm_hyp_stack_page);
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 kvm_timer_init(kvm);
139
Christoffer Dalld5d81842013-01-20 18:28:07 -0500140 /* Mark the initial VMID generation invalid */
141 kvm->arch.vmid_gen = 0;
142
Andre Przywara3caa2d82014-06-02 16:26:01 +0200143 /* The maximum number of VCPUs is limited by the host's GIC model */
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300144 kvm->arch.max_vcpus = vgic_present ?
145 kvm_vgic_get_max_vcpus() : KVM_MAX_VCPUS;
Andre Przywara3caa2d82014-06-02 16:26:01 +0200146
Christoffer Dalld5d81842013-01-20 18:28:07 -0500147 return ret;
148out_free_stage2_pgd:
149 kvm_free_stage2_pgd(kvm);
150out_fail_alloc:
Marc Zyngier94d0e592016-10-18 18:37:49 +0100151 free_percpu(kvm->arch.last_vcpu_ran);
152 kvm->arch.last_vcpu_ran = NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500153 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500154}
155
Luiz Capitulino235539b2016-09-07 14:47:23 -0400156bool kvm_arch_has_vcpu_debugfs(void)
157{
158 return false;
159}
160
161int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
162{
163 return 0;
164}
165
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500166int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
167{
168 return VM_FAULT_SIGBUS;
169}
170
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500171
Christoffer Dalld5d81842013-01-20 18:28:07 -0500172/**
173 * kvm_arch_destroy_vm - destroy the VM data structure
174 * @kvm: pointer to the KVM struct
175 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500176void kvm_arch_destroy_vm(struct kvm *kvm)
177{
178 int i;
179
Marc Zyngier94d0e592016-10-18 18:37:49 +0100180 free_percpu(kvm->arch.last_vcpu_ran);
181 kvm->arch.last_vcpu_ran = NULL;
182
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500183 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
184 if (kvm->vcpus[i]) {
185 kvm_arch_vcpu_free(kvm->vcpus[i]);
186 kvm->vcpus[i] = NULL;
187 }
188 }
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100189
190 kvm_vgic_destroy(kvm);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500191}
192
Alexander Graf784aa3d2014-07-14 18:27:35 +0200193int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500194{
195 int r;
196 switch (ext) {
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500197 case KVM_CAP_IRQCHIP:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300198 r = vgic_present;
199 break;
Nikolay Nikolaevd44758c2015-01-24 12:00:02 +0000200 case KVM_CAP_IOEVENTFD:
Christoffer Dall73306722013-10-25 17:29:18 +0100201 case KVM_CAP_DEVICE_CTRL:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500202 case KVM_CAP_USER_MEMORY:
203 case KVM_CAP_SYNC_MMU:
204 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
205 case KVM_CAP_ONE_REG:
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500206 case KVM_CAP_ARM_PSCI:
Anup Patel4447a202014-04-29 11:24:25 +0530207 case KVM_CAP_ARM_PSCI_0_2:
Christoffer Dall98047882014-08-19 12:18:04 +0200208 case KVM_CAP_READONLY_MEM:
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000209 case KVM_CAP_MP_STATE:
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;
224 default:
Andre Przywarab46f01c2016-07-15 12:43:25 +0100225 r = kvm_arch_dev_ioctl_check_extension(kvm, ext);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500226 break;
227 }
228 return r;
229}
230
231long kvm_arch_dev_ioctl(struct file *filp,
232 unsigned int ioctl, unsigned long arg)
233{
234 return -EINVAL;
235}
236
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500237
238struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
239{
240 int err;
241 struct kvm_vcpu *vcpu;
242
Christoffer Dall716139d2014-12-09 14:33:45 +0100243 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm)) {
244 err = -EBUSY;
245 goto out;
246 }
247
Andre Przywara3caa2d82014-06-02 16:26:01 +0200248 if (id >= kvm->arch.max_vcpus) {
249 err = -EINVAL;
250 goto out;
251 }
252
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500253 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
254 if (!vcpu) {
255 err = -ENOMEM;
256 goto out;
257 }
258
259 err = kvm_vcpu_init(vcpu, kvm, id);
260 if (err)
261 goto free_vcpu;
262
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100263 err = create_hyp_mappings(vcpu, vcpu + 1, PAGE_HYP);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500264 if (err)
265 goto vcpu_uninit;
266
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500267 return vcpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500268vcpu_uninit:
269 kvm_vcpu_uninit(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500270free_vcpu:
271 kmem_cache_free(kvm_vcpu_cache, vcpu);
272out:
273 return ERR_PTR(err);
274}
275
Dominik Dingel31928aa2014-12-04 15:47:07 +0100276void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500277{
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100278 kvm_vgic_vcpu_early_init(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500279}
280
281void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
282{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500283 kvm_mmu_free_memory_caches(vcpu);
Marc Zyngier967f8422013-01-23 13:21:59 -0500284 kvm_timer_vcpu_terminate(vcpu);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100285 kvm_vgic_vcpu_destroy(vcpu);
Shannon Zhao5f0a7142015-09-11 15:18:05 +0800286 kvm_pmu_vcpu_destroy(vcpu);
James Morse591d2152016-06-08 17:24:45 +0100287 kvm_vcpu_uninit(vcpu);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500288 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500289}
290
291void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
292{
293 kvm_arch_vcpu_free(vcpu);
294}
295
296int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
297{
Christoffer Dall1a748472015-03-13 17:02:55 +0000298 return kvm_timer_should_fire(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500299}
300
Christoffer Dalld35268d2015-08-25 19:48:21 +0200301void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu)
302{
303 kvm_timer_schedule(vcpu);
304}
305
306void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
307{
308 kvm_timer_unschedule(vcpu);
309}
310
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500311int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
312{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500313 /* Force users to call KVM_ARM_VCPU_INIT */
314 vcpu->arch.target = -1;
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200315 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500316
Marc Zyngier967f8422013-01-23 13:21:59 -0500317 /* Set up the timer */
318 kvm_timer_vcpu_init(vcpu);
319
Alex Bennée84e690b2015-07-07 17:30:00 +0100320 kvm_arm_reset_debug_ptr(vcpu);
321
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500322 return 0;
323}
324
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500325void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
326{
Marc Zyngier94d0e592016-10-18 18:37:49 +0100327 int *last_ran;
328
329 last_ran = this_cpu_ptr(vcpu->kvm->arch.last_vcpu_ran);
330
331 /*
332 * We might get preempted before the vCPU actually runs, but
333 * over-invalidation doesn't affect correctness.
334 */
335 if (*last_ran != vcpu->vcpu_id) {
336 kvm_call_hyp(__kvm_tlb_flush_local_vmid, vcpu);
337 *last_ran = vcpu->vcpu_id;
338 }
339
Christoffer Dall86ce85352013-01-20 18:28:08 -0500340 vcpu->cpu = cpu;
James Morse6a654e62018-07-20 10:56:14 +0100341 vcpu->arch.host_cpu_context = this_cpu_ptr(&kvm_host_cpu_state);
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500342
Marc Zyngier1638a122013-01-21 19:36:11 -0500343 kvm_arm_set_running_vcpu(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500344}
345
346void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
347{
Christoffer Dalle9b152c2013-12-11 20:29:11 -0800348 /*
349 * The arch-generic KVM code expects the cpu field of a vcpu to be -1
350 * if the vcpu is no longer assigned to a cpu. This is used for the
351 * optimized make_all_cpus_request path.
352 */
353 vcpu->cpu = -1;
354
Marc Zyngier1638a122013-01-21 19:36:11 -0500355 kvm_arm_set_running_vcpu(NULL);
Marc Zyngier9b4a3002016-01-29 19:04:48 +0000356 kvm_timer_vcpu_put(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500357}
358
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500359int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
360 struct kvm_mp_state *mp_state)
361{
Eric Auger37815282015-09-25 23:41:14 +0200362 if (vcpu->arch.power_off)
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000363 mp_state->mp_state = KVM_MP_STATE_STOPPED;
364 else
365 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
366
367 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500368}
369
370int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
371 struct kvm_mp_state *mp_state)
372{
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000373 switch (mp_state->mp_state) {
374 case KVM_MP_STATE_RUNNABLE:
Eric Auger37815282015-09-25 23:41:14 +0200375 vcpu->arch.power_off = false;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000376 break;
377 case KVM_MP_STATE_STOPPED:
Eric Auger37815282015-09-25 23:41:14 +0200378 vcpu->arch.power_off = true;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000379 break;
380 default:
381 return -EINVAL;
382 }
383
384 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500385}
386
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500387/**
388 * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled
389 * @v: The VCPU pointer
390 *
391 * If the guest CPU is not waiting for interrupts or an interrupt line is
392 * asserted, the CPU is by definition runnable.
393 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500394int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
395{
Eric Auger4f5f1dc2015-09-25 23:41:15 +0200396 return ((!!v->arch.irq_lines || kvm_vgic_vcpu_pending_irq(v))
Eric Auger3b928302015-09-25 23:41:17 +0200397 && !v->arch.power_off && !v->arch.pause);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500398}
399
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500400/* Just ensure a guest exit from a particular CPU */
401static void exit_vm_noop(void *info)
402{
403}
404
405void force_vm_exit(const cpumask_t *mask)
406{
Eric Auger898f9492016-03-07 23:50:36 +0700407 preempt_disable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500408 smp_call_function_many(mask, exit_vm_noop, NULL, true);
Eric Auger898f9492016-03-07 23:50:36 +0700409 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500410}
411
412/**
413 * need_new_vmid_gen - check that the VMID is still valid
Andrea Gelmini6a727b02016-05-21 13:48:35 +0200414 * @kvm: The VM's VMID to check
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500415 *
416 * return true if there is a new generation of VMIDs being used
417 *
418 * The hardware supports only 256 values with the value zero reserved for the
419 * host, so we check if an assigned value belongs to a previous generation,
420 * which which requires us to assign a new value. If we're the first to use a
421 * VMID for the new generation, we must flush necessary caches and TLBs on all
422 * CPUs.
423 */
424static bool need_new_vmid_gen(struct kvm *kvm)
425{
426 return unlikely(kvm->arch.vmid_gen != atomic64_read(&kvm_vmid_gen));
427}
428
429/**
430 * update_vttbr - Update the VTTBR with a valid VMID before the guest runs
431 * @kvm The guest that we are about to run
432 *
433 * Called from kvm_arch_vcpu_ioctl_run before entering the guest to ensure the
434 * VM has a valid VMID, otherwise assigns a new one and flushes corresponding
435 * caches and TLBs.
436 */
437static void update_vttbr(struct kvm *kvm)
438{
439 phys_addr_t pgd_phys;
440 u64 vmid;
441
442 if (!need_new_vmid_gen(kvm))
443 return;
444
445 spin_lock(&kvm_vmid_lock);
446
447 /*
448 * We need to re-check the vmid_gen here to ensure that if another vcpu
449 * already allocated a valid vmid for this vm, then this vcpu should
450 * use the same vmid.
451 */
452 if (!need_new_vmid_gen(kvm)) {
453 spin_unlock(&kvm_vmid_lock);
454 return;
455 }
456
457 /* First user of a new VMID generation? */
458 if (unlikely(kvm_next_vmid == 0)) {
459 atomic64_inc(&kvm_vmid_gen);
460 kvm_next_vmid = 1;
461
462 /*
463 * On SMP we know no other CPUs can use this CPU's or each
464 * other's VMID after force_vm_exit returns since the
465 * kvm_vmid_lock blocks them from reentry to the guest.
466 */
467 force_vm_exit(cpu_all_mask);
468 /*
469 * Now broadcast TLB + ICACHE invalidation over the inner
470 * shareable domain to make sure all data structures are
471 * clean.
472 */
473 kvm_call_hyp(__kvm_flush_vm_context);
474 }
475
476 kvm->arch.vmid_gen = atomic64_read(&kvm_vmid_gen);
477 kvm->arch.vmid = kvm_next_vmid;
478 kvm_next_vmid++;
Vladimir Murzin20475f72015-11-16 11:28:18 +0000479 kvm_next_vmid &= (1 << kvm_vmid_bits) - 1;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500480
481 /* update vttbr to be used with the new vmid */
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000482 pgd_phys = virt_to_phys(kvm->arch.pgd);
Joel Schoppdbff1242014-07-09 11:17:04 -0500483 BUG_ON(pgd_phys & ~VTTBR_BADDR_MASK);
Vladimir Murzin20475f72015-11-16 11:28:18 +0000484 vmid = ((u64)(kvm->arch.vmid) << VTTBR_VMID_SHIFT) & VTTBR_VMID_MASK(kvm_vmid_bits);
Joel Schoppdbff1242014-07-09 11:17:04 -0500485 kvm->arch.vttbr = pgd_phys | vmid;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500486
487 spin_unlock(&kvm_vmid_lock);
488}
489
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500490static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu)
491{
Christoffer Dall05971122014-12-12 21:19:23 +0100492 struct kvm *kvm = vcpu->kvm;
Christoffer Dall41a54482016-05-18 16:26:00 +0100493 int ret = 0;
Christoffer Dalle1ba0202013-09-23 14:55:55 -0700494
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500495 if (likely(vcpu->arch.has_run_once))
496 return 0;
497
498 vcpu->arch.has_run_once = true;
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500499
500 /*
Peter Maydell6d3cfbe2014-12-04 15:02:24 +0000501 * Map the VGIC hardware resources before running a vcpu the first
502 * time on this VM.
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500503 */
Pavel Fedinc2f58512015-08-05 11:53:57 +0100504 if (unlikely(irqchip_in_kernel(kvm) && !vgic_ready(kvm))) {
Christoffer Dall05971122014-12-12 21:19:23 +0100505 ret = kvm_vgic_map_resources(kvm);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500506 if (ret)
507 return ret;
508 }
509
Christoffer Dall05971122014-12-12 21:19:23 +0100510 /*
511 * Enable the arch timers only if we have an in-kernel VGIC
512 * and it has been properly initialized, since we cannot handle
513 * interrupts from the virtual timer with a userspace gic.
514 */
515 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm))
Christoffer Dall41a54482016-05-18 16:26:00 +0100516 ret = kvm_timer_enable(vcpu);
Christoffer Dall05971122014-12-12 21:19:23 +0100517
Christoffer Dall41a54482016-05-18 16:26:00 +0100518 return ret;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500519}
520
Eric Augerc1426e42015-03-04 11:14:34 +0100521bool kvm_arch_intc_initialized(struct kvm *kvm)
522{
523 return vgic_initialized(kvm);
524}
525
Christoffer Dallb13216c2016-04-27 10:28:00 +0100526void kvm_arm_halt_guest(struct kvm *kvm)
Eric Auger3b928302015-09-25 23:41:17 +0200527{
528 int i;
529 struct kvm_vcpu *vcpu;
530
531 kvm_for_each_vcpu(i, vcpu, kvm)
532 vcpu->arch.pause = true;
Christoffer Dallb13216c2016-04-27 10:28:00 +0100533 kvm_make_all_cpus_request(kvm, KVM_REQ_VCPU_EXIT);
Eric Auger3b928302015-09-25 23:41:17 +0200534}
535
Christoffer Dall35a2d582016-05-20 15:25:28 +0200536void kvm_arm_halt_vcpu(struct kvm_vcpu *vcpu)
537{
538 vcpu->arch.pause = true;
539 kvm_vcpu_kick(vcpu);
540}
541
542void kvm_arm_resume_vcpu(struct kvm_vcpu *vcpu)
Christoffer Dallb13216c2016-04-27 10:28:00 +0100543{
544 struct swait_queue_head *wq = kvm_arch_vcpu_wq(vcpu);
545
546 vcpu->arch.pause = false;
547 swake_up(wq);
548}
549
550void kvm_arm_resume_guest(struct kvm *kvm)
Eric Auger3b928302015-09-25 23:41:17 +0200551{
552 int i;
553 struct kvm_vcpu *vcpu;
554
Christoffer Dallb13216c2016-04-27 10:28:00 +0100555 kvm_for_each_vcpu(i, vcpu, kvm)
556 kvm_arm_resume_vcpu(vcpu);
Eric Auger3b928302015-09-25 23:41:17 +0200557}
558
Eric Auger37815282015-09-25 23:41:14 +0200559static void vcpu_sleep(struct kvm_vcpu *vcpu)
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500560{
Marcelo Tosatti85773702016-02-19 09:46:39 +0100561 struct swait_queue_head *wq = kvm_arch_vcpu_wq(vcpu);
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500562
Marcelo Tosatti85773702016-02-19 09:46:39 +0100563 swait_event_interruptible(*wq, ((!vcpu->arch.power_off) &&
Eric Auger3b928302015-09-25 23:41:17 +0200564 (!vcpu->arch.pause)));
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500565}
566
Andre Przywarae8180dc2013-05-09 00:28:06 +0200567static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
568{
569 return vcpu->arch.target >= 0;
570}
571
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500572/**
573 * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code
574 * @vcpu: The VCPU pointer
575 * @run: The kvm_run structure pointer used for userspace state exchange
576 *
577 * This function is called through the VCPU_RUN ioctl called from user space. It
578 * will execute VM code in a loop until the time slice for the process is used
579 * or some emulation is needed from user space in which case the function will
580 * return with return value 0 and with the kvm_run structure filled in with the
581 * required data for the requested emulation.
582 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500583int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
584{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500585 int ret;
586 sigset_t sigsaved;
587
Andre Przywarae8180dc2013-05-09 00:28:06 +0200588 if (unlikely(!kvm_vcpu_initialized(vcpu)))
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500589 return -ENOEXEC;
590
591 ret = kvm_vcpu_first_run_init(vcpu);
592 if (ret)
593 return ret;
594
Christoffer Dall45e96ea2013-01-20 18:43:58 -0500595 if (run->exit_reason == KVM_EXIT_MMIO) {
596 ret = kvm_handle_mmio_return(vcpu, vcpu->run);
597 if (ret)
598 return ret;
599 }
600
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500601 if (vcpu->sigset_active)
602 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
603
604 ret = 1;
605 run->exit_reason = KVM_EXIT_UNKNOWN;
606 while (ret > 0) {
607 /*
608 * Check conditions before entering the guest
609 */
610 cond_resched();
611
612 update_vttbr(vcpu->kvm);
613
Eric Auger3b928302015-09-25 23:41:17 +0200614 if (vcpu->arch.power_off || vcpu->arch.pause)
Eric Auger37815282015-09-25 23:41:14 +0200615 vcpu_sleep(vcpu);
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500616
Marc Zyngierabdf5842015-06-08 15:00:28 +0100617 /*
Marc Zyngierabdf5842015-06-08 15:00:28 +0100618 * Preparing the interrupts to be injected also
619 * involves poking the GIC, which must be done in a
620 * non-preemptible context.
621 */
622 preempt_disable();
Shannon Zhaob02386e2016-02-26 19:29:19 +0800623 kvm_pmu_flush_hwstate(vcpu);
Christoffer Dall7e16aa82015-11-24 10:31:07 +0100624 kvm_timer_flush_hwstate(vcpu);
Marc Zyngier9a99d052015-06-05 09:33:28 +0100625 kvm_vgic_flush_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500626
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500627 local_irq_disable();
628
629 /*
630 * Re-check atomic conditions
631 */
632 if (signal_pending(current)) {
633 ret = -EINTR;
634 run->exit_reason = KVM_EXIT_INTR;
635 }
636
Eric Auger101d3da2015-09-25 23:41:16 +0200637 if (ret <= 0 || need_new_vmid_gen(vcpu->kvm) ||
Eric Auger3b928302015-09-25 23:41:17 +0200638 vcpu->arch.power_off || vcpu->arch.pause) {
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500639 local_irq_enable();
Shannon Zhaob02386e2016-02-26 19:29:19 +0800640 kvm_pmu_sync_hwstate(vcpu);
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200641 kvm_timer_sync_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500642 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100643 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500644 continue;
645 }
646
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100647 kvm_arm_setup_debug(vcpu);
648
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500649 /**************************************************************
650 * Enter the guest
651 */
652 trace_kvm_entry(*vcpu_pc(vcpu));
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200653 guest_enter_irqoff();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500654 vcpu->mode = IN_GUEST_MODE;
655
656 ret = kvm_call_hyp(__kvm_vcpu_run, vcpu);
657
658 vcpu->mode = OUTSIDE_GUEST_MODE;
Amit Tomarb19e6892015-11-26 10:09:43 +0000659 vcpu->stat.exits++;
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100660 /*
661 * Back from guest
662 *************************************************************/
663
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100664 kvm_arm_clear_debug(vcpu);
665
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500666 /*
667 * We may have taken a host interrupt in HYP mode (ie
668 * while executing the guest). This interrupt is still
669 * pending, as we haven't serviced it yet!
670 *
671 * We're now back in SVC mode, with interrupts
672 * disabled. Enabling the interrupts now will have
673 * the effect of taking the interrupt again, in SVC
674 * mode this time.
675 */
676 local_irq_enable();
677
678 /*
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200679 * We do local_irq_enable() before calling guest_exit() so
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100680 * that if a timer interrupt hits while running the guest we
681 * account that tick as being spent in the guest. We enable
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200682 * preemption after calling guest_exit() so that if we get
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100683 * preempted we make sure ticks after that is not counted as
684 * guest time.
685 */
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200686 guest_exit();
Christoffer Dallb5905dc2015-08-30 15:55:22 +0200687 trace_kvm_exit(ret, kvm_vcpu_trap_get_class(vcpu), *vcpu_pc(vcpu));
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100688
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200689 /*
Shannon Zhaob02386e2016-02-26 19:29:19 +0800690 * We must sync the PMU and timer state before the vgic state so
691 * that the vgic can properly sample the updated state of the
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200692 * interrupt line.
693 */
Shannon Zhaob02386e2016-02-26 19:29:19 +0800694 kvm_pmu_sync_hwstate(vcpu);
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200695 kvm_timer_sync_hwstate(vcpu);
696
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500697 kvm_vgic_sync_hwstate(vcpu);
Marc Zyngierabdf5842015-06-08 15:00:28 +0100698
699 preempt_enable();
700
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500701 ret = handle_exit(vcpu, run, ret);
702 }
703
704 if (vcpu->sigset_active)
705 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
706 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500707}
708
Christoffer Dall86ce85352013-01-20 18:28:08 -0500709static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level)
710{
711 int bit_index;
712 bool set;
713 unsigned long *ptr;
714
715 if (number == KVM_ARM_IRQ_CPU_IRQ)
716 bit_index = __ffs(HCR_VI);
717 else /* KVM_ARM_IRQ_CPU_FIQ */
718 bit_index = __ffs(HCR_VF);
719
720 ptr = (unsigned long *)&vcpu->arch.irq_lines;
721 if (level)
722 set = test_and_set_bit(bit_index, ptr);
723 else
724 set = test_and_clear_bit(bit_index, ptr);
725
726 /*
727 * If we didn't change anything, no need to wake up or kick other CPUs
728 */
729 if (set == level)
730 return 0;
731
732 /*
733 * The vcpu irq_lines field was updated, wake up sleeping VCPUs and
734 * trigger a world-switch round on the running physical CPU to set the
735 * virtual IRQ/FIQ fields in the HCR appropriately.
736 */
737 kvm_vcpu_kick(vcpu);
738
739 return 0;
740}
741
Alexander Graf79558f12013-04-16 19:21:41 +0200742int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
743 bool line_status)
Christoffer Dall86ce85352013-01-20 18:28:08 -0500744{
745 u32 irq = irq_level->irq;
746 unsigned int irq_type, vcpu_idx, irq_num;
747 int nrcpus = atomic_read(&kvm->online_vcpus);
748 struct kvm_vcpu *vcpu = NULL;
749 bool level = irq_level->level;
750
751 irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK;
752 vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK;
753 irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK;
754
755 trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level);
756
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500757 switch (irq_type) {
758 case KVM_ARM_IRQ_TYPE_CPU:
759 if (irqchip_in_kernel(kvm))
760 return -ENXIO;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500761
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500762 if (vcpu_idx >= nrcpus)
763 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500764
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500765 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
766 if (!vcpu)
767 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500768
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500769 if (irq_num > KVM_ARM_IRQ_CPU_FIQ)
770 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500771
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500772 return vcpu_interrupt_line(vcpu, irq_num, level);
773 case KVM_ARM_IRQ_TYPE_PPI:
774 if (!irqchip_in_kernel(kvm))
775 return -ENXIO;
776
777 if (vcpu_idx >= nrcpus)
778 return -EINVAL;
779
780 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
781 if (!vcpu)
782 return -EINVAL;
783
784 if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS)
785 return -EINVAL;
786
787 return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level);
788 case KVM_ARM_IRQ_TYPE_SPI:
789 if (!irqchip_in_kernel(kvm))
790 return -ENXIO;
791
Andre Przywarafd1d0dd2015-04-10 16:17:59 +0100792 if (irq_num < VGIC_NR_PRIVATE_IRQS)
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500793 return -EINVAL;
794
795 return kvm_vgic_inject_irq(kvm, 0, irq_num, level);
796 }
797
798 return -EINVAL;
Christoffer Dall86ce85352013-01-20 18:28:08 -0500799}
800
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200801static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu,
802 const struct kvm_vcpu_init *init)
803{
Andrew Jones9c905e12019-04-04 19:42:30 +0200804 unsigned int i, ret;
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200805 int phys_target = kvm_target_cpu();
806
807 if (init->target != phys_target)
808 return -EINVAL;
809
810 /*
811 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
812 * use the same target.
813 */
814 if (vcpu->arch.target != -1 && vcpu->arch.target != init->target)
815 return -EINVAL;
816
817 /* -ENOENT for unknown features, -EINVAL for invalid combinations. */
818 for (i = 0; i < sizeof(init->features) * 8; i++) {
819 bool set = (init->features[i / 32] & (1 << (i % 32)));
820
821 if (set && i >= KVM_VCPU_MAX_FEATURES)
822 return -ENOENT;
823
824 /*
825 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
826 * use the same feature set.
827 */
828 if (vcpu->arch.target != -1 && i < KVM_VCPU_MAX_FEATURES &&
829 test_bit(i, vcpu->arch.features) != set)
830 return -EINVAL;
831
832 if (set)
833 set_bit(i, vcpu->arch.features);
834 }
835
836 vcpu->arch.target = phys_target;
837
838 /* Now we know what it is, we can reset it. */
Andrew Jones9c905e12019-04-04 19:42:30 +0200839 ret = kvm_reset_vcpu(vcpu);
840 if (ret) {
841 vcpu->arch.target = -1;
842 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
843 }
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200844
Andrew Jones9c905e12019-04-04 19:42:30 +0200845 return ret;
846}
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200847
Christoffer Dall478a8232013-11-19 17:43:19 -0800848static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu,
849 struct kvm_vcpu_init *init)
850{
851 int ret;
852
853 ret = kvm_vcpu_set_target(vcpu, init);
854 if (ret)
855 return ret;
856
Christoffer Dall957db102014-11-27 10:35:03 +0100857 /*
858 * Ensure a rebooted VM will fault in RAM pages and detect if the
859 * guest MMU is turned off and flush the caches as needed.
860 */
861 if (vcpu->arch.has_run_once)
862 stage2_unmap_vm(vcpu->kvm);
863
Christoffer Dallb856a592014-10-16 17:21:16 +0200864 vcpu_reset_hcr(vcpu);
865
Christoffer Dall478a8232013-11-19 17:43:19 -0800866 /*
Eric Auger37815282015-09-25 23:41:14 +0200867 * Handle the "start in power-off" case.
Christoffer Dall478a8232013-11-19 17:43:19 -0800868 */
Christoffer Dall03f1d4c2014-12-02 15:27:51 +0100869 if (test_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features))
Eric Auger37815282015-09-25 23:41:14 +0200870 vcpu->arch.power_off = true;
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +0200871 else
Eric Auger37815282015-09-25 23:41:14 +0200872 vcpu->arch.power_off = false;
Christoffer Dall478a8232013-11-19 17:43:19 -0800873
874 return 0;
875}
876
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800877static int kvm_arm_vcpu_set_attr(struct kvm_vcpu *vcpu,
878 struct kvm_device_attr *attr)
879{
880 int ret = -ENXIO;
881
882 switch (attr->group) {
883 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800884 ret = kvm_arm_vcpu_arch_set_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800885 break;
886 }
887
888 return ret;
889}
890
891static int kvm_arm_vcpu_get_attr(struct kvm_vcpu *vcpu,
892 struct kvm_device_attr *attr)
893{
894 int ret = -ENXIO;
895
896 switch (attr->group) {
897 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800898 ret = kvm_arm_vcpu_arch_get_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800899 break;
900 }
901
902 return ret;
903}
904
905static int kvm_arm_vcpu_has_attr(struct kvm_vcpu *vcpu,
906 struct kvm_device_attr *attr)
907{
908 int ret = -ENXIO;
909
910 switch (attr->group) {
911 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +0800912 ret = kvm_arm_vcpu_arch_has_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800913 break;
914 }
915
916 return ret;
917}
918
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500919long kvm_arch_vcpu_ioctl(struct file *filp,
920 unsigned int ioctl, unsigned long arg)
921{
922 struct kvm_vcpu *vcpu = filp->private_data;
923 void __user *argp = (void __user *)arg;
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800924 struct kvm_device_attr attr;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500925
926 switch (ioctl) {
927 case KVM_ARM_VCPU_INIT: {
928 struct kvm_vcpu_init init;
929
930 if (copy_from_user(&init, argp, sizeof(init)))
931 return -EFAULT;
932
Christoffer Dall478a8232013-11-19 17:43:19 -0800933 return kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500934 }
935 case KVM_SET_ONE_REG:
936 case KVM_GET_ONE_REG: {
937 struct kvm_one_reg reg;
Andre Przywarae8180dc2013-05-09 00:28:06 +0200938
939 if (unlikely(!kvm_vcpu_initialized(vcpu)))
940 return -ENOEXEC;
941
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500942 if (copy_from_user(&reg, argp, sizeof(reg)))
943 return -EFAULT;
944 if (ioctl == KVM_SET_ONE_REG)
945 return kvm_arm_set_reg(vcpu, &reg);
946 else
947 return kvm_arm_get_reg(vcpu, &reg);
948 }
949 case KVM_GET_REG_LIST: {
950 struct kvm_reg_list __user *user_list = argp;
951 struct kvm_reg_list reg_list;
952 unsigned n;
953
Andre Przywarae8180dc2013-05-09 00:28:06 +0200954 if (unlikely(!kvm_vcpu_initialized(vcpu)))
955 return -ENOEXEC;
956
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500957 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
958 return -EFAULT;
959 n = reg_list.n;
960 reg_list.n = kvm_arm_num_regs(vcpu);
961 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
962 return -EFAULT;
963 if (n < reg_list.n)
964 return -E2BIG;
965 return kvm_arm_copy_reg_indices(vcpu, user_list->reg);
966 }
Shannon Zhaof577f6c2016-01-11 20:56:17 +0800967 case KVM_SET_DEVICE_ATTR: {
968 if (copy_from_user(&attr, argp, sizeof(attr)))
969 return -EFAULT;
970 return kvm_arm_vcpu_set_attr(vcpu, &attr);
971 }
972 case KVM_GET_DEVICE_ATTR: {
973 if (copy_from_user(&attr, argp, sizeof(attr)))
974 return -EFAULT;
975 return kvm_arm_vcpu_get_attr(vcpu, &attr);
976 }
977 case KVM_HAS_DEVICE_ATTR: {
978 if (copy_from_user(&attr, argp, sizeof(attr)))
979 return -EFAULT;
980 return kvm_arm_vcpu_has_attr(vcpu, &attr);
981 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500982 default:
983 return -EINVAL;
984 }
985}
986
Mario Smarduch53c810c2015-01-15 15:58:57 -0800987/**
988 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
989 * @kvm: kvm instance
990 * @log: slot id and address to which we copy the log
991 *
992 * Steps 1-4 below provide general overview of dirty page logging. See
993 * kvm_get_dirty_log_protect() function description for additional details.
994 *
995 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
996 * always flush the TLB (step 4) even if previous step failed and the dirty
997 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
998 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
999 * writes will be marked dirty for next log read.
1000 *
1001 * 1. Take a snapshot of the bit and clear it if needed.
1002 * 2. Write protect the corresponding page.
1003 * 3. Copy the snapshot to the userspace.
1004 * 4. Flush TLB's if needed.
1005 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001006int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
1007{
Mario Smarduch53c810c2015-01-15 15:58:57 -08001008 bool is_dirty = false;
1009 int r;
1010
1011 mutex_lock(&kvm->slots_lock);
1012
1013 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
1014
1015 if (is_dirty)
1016 kvm_flush_remote_tlbs(kvm);
1017
1018 mutex_unlock(&kvm->slots_lock);
1019 return r;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001020}
1021
Christoffer Dall3401d5462013-01-23 13:18:04 -05001022static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm,
1023 struct kvm_arm_device_addr *dev_addr)
1024{
Christoffer Dall330690c2013-01-21 19:36:13 -05001025 unsigned long dev_id, type;
1026
1027 dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >>
1028 KVM_ARM_DEVICE_ID_SHIFT;
1029 type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >>
1030 KVM_ARM_DEVICE_TYPE_SHIFT;
1031
1032 switch (dev_id) {
1033 case KVM_ARM_DEVICE_VGIC_V2:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +03001034 if (!vgic_present)
1035 return -ENXIO;
Christoffer Dallce01e4e2013-09-23 14:55:56 -07001036 return kvm_vgic_addr(kvm, type, &dev_addr->addr, true);
Christoffer Dall330690c2013-01-21 19:36:13 -05001037 default:
1038 return -ENODEV;
1039 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001040}
1041
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001042long kvm_arch_vm_ioctl(struct file *filp,
1043 unsigned int ioctl, unsigned long arg)
1044{
Christoffer Dall3401d5462013-01-23 13:18:04 -05001045 struct kvm *kvm = filp->private_data;
1046 void __user *argp = (void __user *)arg;
1047
1048 switch (ioctl) {
Marc Zyngier5863c2c2013-01-21 19:36:15 -05001049 case KVM_CREATE_IRQCHIP: {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02001050 int ret;
Pavel Fedinc7da6fa2015-12-18 14:38:43 +03001051 if (!vgic_present)
1052 return -ENXIO;
Christoffer Dalla28ebea2016-08-09 19:13:01 +02001053 mutex_lock(&kvm->lock);
1054 ret = kvm_vgic_create(kvm, KVM_DEV_TYPE_ARM_VGIC_V2);
1055 mutex_unlock(&kvm->lock);
1056 return ret;
Marc Zyngier5863c2c2013-01-21 19:36:15 -05001057 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001058 case KVM_ARM_SET_DEVICE_ADDR: {
1059 struct kvm_arm_device_addr dev_addr;
1060
1061 if (copy_from_user(&dev_addr, argp, sizeof(dev_addr)))
1062 return -EFAULT;
1063 return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr);
1064 }
Anup Patel42c4e0c2013-09-30 14:20:07 +05301065 case KVM_ARM_PREFERRED_TARGET: {
1066 int err;
1067 struct kvm_vcpu_init init;
1068
1069 err = kvm_vcpu_preferred_target(&init);
1070 if (err)
1071 return err;
1072
1073 if (copy_to_user(argp, &init, sizeof(init)))
1074 return -EFAULT;
1075
1076 return 0;
1077 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001078 default:
1079 return -EINVAL;
1080 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001081}
1082
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001083static void cpu_init_hyp_mode(void *dummy)
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001084{
Marc Zyngierdac288f2013-05-14 12:11:37 +01001085 phys_addr_t pgd_ptr;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001086 unsigned long hyp_stack_ptr;
1087 unsigned long stack_page;
1088 unsigned long vector_ptr;
1089
1090 /* Switch from the HYP stub to our own HYP init vector */
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001091 __hyp_set_vectors(kvm_get_idmap_vector());
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001092
Marc Zyngierdac288f2013-05-14 12:11:37 +01001093 pgd_ptr = kvm_mmu_get_httbr();
Christoph Lameter1436c1a2013-10-21 13:17:08 +01001094 stack_page = __this_cpu_read(kvm_arm_hyp_stack_page);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001095 hyp_stack_ptr = stack_page + PAGE_SIZE;
Mark Rutland9327f062018-04-12 12:11:16 +01001096 vector_ptr = (unsigned long)kvm_get_hyp_vector();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001097
Marc Zyngier12fda812016-06-30 18:40:45 +01001098 __cpu_init_hyp_mode(pgd_ptr, hyp_stack_ptr, vector_ptr);
Marc Zyngier35a24912016-02-01 17:54:35 +00001099 __cpu_init_stage2();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001100}
1101
James Morse5f5560b2016-03-30 18:33:04 +01001102static void cpu_hyp_reinit(void)
1103{
1104 if (is_kernel_in_hyp_mode()) {
1105 /*
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001106 * __cpu_init_stage2() is safe to call even if the PM
James Morse5f5560b2016-03-30 18:33:04 +01001107 * event was cancelled before the CPU was reset.
1108 */
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001109 __cpu_init_stage2();
James Morse5f5560b2016-03-30 18:33:04 +01001110 } else {
1111 if (__hyp_get_vectors() == hyp_default_vectors)
1112 cpu_init_hyp_mode(NULL);
1113 }
Mark Rutland7088c662018-10-17 17:42:10 +01001114
1115 kvm_arm_init_debug();
James Morse5f5560b2016-03-30 18:33:04 +01001116}
1117
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001118static void cpu_hyp_reset(void)
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001119{
Marc Zyngier12fda812016-06-30 18:40:45 +01001120 if (!is_kernel_in_hyp_mode())
Marc Zyngiere537ecd2016-06-30 18:40:48 +01001121 __cpu_reset_hyp_mode(hyp_default_vectors,
1122 kvm_get_idmap_start());
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001123}
1124
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001125static void _kvm_arch_hardware_enable(void *discard)
1126{
1127 if (!__this_cpu_read(kvm_arm_hardware_enabled)) {
1128 cpu_hyp_reinit();
1129 __this_cpu_write(kvm_arm_hardware_enabled, 1);
1130 }
1131}
1132
1133int kvm_arch_hardware_enable(void)
1134{
1135 _kvm_arch_hardware_enable(NULL);
1136 return 0;
1137}
1138
1139static void _kvm_arch_hardware_disable(void *discard)
1140{
1141 if (__this_cpu_read(kvm_arm_hardware_enabled)) {
1142 cpu_hyp_reset();
1143 __this_cpu_write(kvm_arm_hardware_enabled, 0);
1144 }
1145}
1146
1147void kvm_arch_hardware_disable(void)
1148{
1149 _kvm_arch_hardware_disable(NULL);
1150}
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001151
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001152#ifdef CONFIG_CPU_PM
1153static int hyp_init_cpu_pm_notifier(struct notifier_block *self,
1154 unsigned long cmd,
1155 void *v)
1156{
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001157 /*
1158 * kvm_arm_hardware_enabled is left with its old value over
1159 * PM_ENTER->PM_EXIT. It is used to indicate PM_EXIT should
1160 * re-enable hyp.
1161 */
1162 switch (cmd) {
1163 case CPU_PM_ENTER:
1164 if (__this_cpu_read(kvm_arm_hardware_enabled))
1165 /*
1166 * don't update kvm_arm_hardware_enabled here
1167 * so that the hardware will be re-enabled
1168 * when we resume. See below.
1169 */
1170 cpu_hyp_reset();
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001171
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001172 return NOTIFY_OK;
James Morsef6741792018-01-22 18:19:06 +00001173 case CPU_PM_ENTER_FAILED:
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001174 case CPU_PM_EXIT:
1175 if (__this_cpu_read(kvm_arm_hardware_enabled))
1176 /* The hardware was enabled before suspend. */
1177 cpu_hyp_reinit();
1178
1179 return NOTIFY_OK;
1180
1181 default:
1182 return NOTIFY_DONE;
1183 }
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001184}
1185
1186static struct notifier_block hyp_init_cpu_pm_nb = {
1187 .notifier_call = hyp_init_cpu_pm_notifier,
1188};
1189
1190static void __init hyp_cpu_pm_init(void)
1191{
1192 cpu_pm_register_notifier(&hyp_init_cpu_pm_nb);
1193}
Sudeep Holla06a71a22016-04-04 14:46:51 +01001194static void __init hyp_cpu_pm_exit(void)
1195{
1196 cpu_pm_unregister_notifier(&hyp_init_cpu_pm_nb);
1197}
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001198#else
1199static inline void hyp_cpu_pm_init(void)
1200{
1201}
Sudeep Holla06a71a22016-04-04 14:46:51 +01001202static inline void hyp_cpu_pm_exit(void)
1203{
1204}
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001205#endif
1206
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001207static int init_common_resources(void)
1208{
Vladimir Murzin61349932016-09-22 09:18:01 +01001209 /* set size of VMID supported by CPU */
1210 kvm_vmid_bits = kvm_get_vmid_bits();
1211 kvm_info("%d-bit VMID\n", kvm_vmid_bits);
1212
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001213 return 0;
1214}
1215
1216static int init_subsystems(void)
1217{
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001218 int err = 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001219
1220 /*
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001221 * Enable hardware so that subsystem initialisation can access EL2.
James Morse5f5560b2016-03-30 18:33:04 +01001222 */
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001223 on_each_cpu(_kvm_arch_hardware_enable, NULL, 1);
James Morse5f5560b2016-03-30 18:33:04 +01001224
1225 /*
1226 * Register CPU lower-power notifier
1227 */
1228 hyp_cpu_pm_init();
1229
1230 /*
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001231 * Init HYP view of VGIC
1232 */
1233 err = kvm_vgic_hyp_init();
1234 switch (err) {
1235 case 0:
1236 vgic_present = true;
1237 break;
1238 case -ENODEV:
1239 case -ENXIO:
1240 vgic_present = false;
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001241 err = 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001242 break;
1243 default:
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001244 goto out;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001245 }
1246
1247 /*
1248 * Init HYP architected timer support
1249 */
1250 err = kvm_timer_hyp_init();
1251 if (err)
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001252 goto out;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001253
1254 kvm_perf_init();
1255 kvm_coproc_table_init();
1256
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001257out:
1258 on_each_cpu(_kvm_arch_hardware_disable, NULL, 1);
1259
1260 return err;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001261}
1262
1263static void teardown_hyp_mode(void)
1264{
1265 int cpu;
1266
1267 if (is_kernel_in_hyp_mode())
1268 return;
1269
1270 free_hyp_pgds();
1271 for_each_possible_cpu(cpu)
1272 free_page(per_cpu(kvm_arm_hyp_stack_page, cpu));
Sudeep Holla06a71a22016-04-04 14:46:51 +01001273 hyp_cpu_pm_exit();
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001274}
1275
1276static int init_vhe_mode(void)
1277{
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001278 kvm_info("VHE mode initialized successfully\n");
1279 return 0;
1280}
1281
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001282/**
1283 * Inits Hyp-mode on all online CPUs
1284 */
1285static int init_hyp_mode(void)
1286{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001287 int cpu;
1288 int err = 0;
1289
1290 /*
1291 * Allocate Hyp PGD and setup Hyp identity mapping
1292 */
1293 err = kvm_mmu_init();
1294 if (err)
1295 goto out_err;
1296
1297 /*
1298 * It is probably enough to obtain the default on one
1299 * CPU. It's unlikely to be different on the others.
1300 */
1301 hyp_default_vectors = __hyp_get_vectors();
1302
1303 /*
1304 * Allocate stack pages for Hypervisor-mode
1305 */
1306 for_each_possible_cpu(cpu) {
1307 unsigned long stack_page;
1308
1309 stack_page = __get_free_page(GFP_KERNEL);
1310 if (!stack_page) {
1311 err = -ENOMEM;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001312 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001313 }
1314
1315 per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page;
1316 }
1317
1318 /*
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001319 * Map the Hyp-code called directly from the host
1320 */
Linus Torvalds588ab3f2016-03-17 20:03:47 -07001321 err = create_hyp_mappings(kvm_ksym_ref(__hyp_text_start),
Marc Zyngier59002702016-06-13 15:00:48 +01001322 kvm_ksym_ref(__hyp_text_end), PAGE_HYP_EXEC);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001323 if (err) {
1324 kvm_err("Cannot map world-switch code\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001325 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001326 }
1327
Ard Biesheuvela0bf9772016-02-16 13:52:39 +01001328 err = create_hyp_mappings(kvm_ksym_ref(__start_rodata),
Marc Zyngier74a6b882016-06-13 15:00:47 +01001329 kvm_ksym_ref(__end_rodata), PAGE_HYP_RO);
Marc Zyngier910917b2015-10-27 12:18:48 +00001330 if (err) {
1331 kvm_err("Cannot map rodata section\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001332 goto out_err;
Marc Zyngier910917b2015-10-27 12:18:48 +00001333 }
1334
Marc Zyngierc8ea0392016-10-20 10:17:21 +01001335 err = create_hyp_mappings(kvm_ksym_ref(__bss_start),
1336 kvm_ksym_ref(__bss_stop), PAGE_HYP_RO);
1337 if (err) {
1338 kvm_err("Cannot map bss section\n");
1339 goto out_err;
1340 }
1341
Mark Rutland9327f062018-04-12 12:11:16 +01001342
1343 err = kvm_map_vectors();
1344 if (err) {
1345 kvm_err("Cannot map vectors\n");
1346 goto out_err;
1347 }
1348
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001349 /*
1350 * Map the Hyp stack pages
1351 */
1352 for_each_possible_cpu(cpu) {
1353 char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu);
Marc Zyngierc8dddec2016-06-13 15:00:45 +01001354 err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE,
1355 PAGE_HYP);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001356
1357 if (err) {
1358 kvm_err("Cannot map hyp stack\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001359 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001360 }
1361 }
1362
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001363 for_each_possible_cpu(cpu) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001364 kvm_cpu_context_t *cpu_ctxt;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001365
James Morse6a654e62018-07-20 10:56:14 +01001366 cpu_ctxt = per_cpu_ptr(&kvm_host_cpu_state, cpu);
Marc Zyngierc8dddec2016-06-13 15:00:45 +01001367 err = create_hyp_mappings(cpu_ctxt, cpu_ctxt + 1, PAGE_HYP);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001368
1369 if (err) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001370 kvm_err("Cannot map host CPU state: %d\n", err);
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001371 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001372 }
1373 }
1374
Marc Zyngier68240e92018-07-20 10:56:32 +01001375 err = hyp_map_aux_data();
1376 if (err) {
1377 kvm_err("Cannot map host auxilary data: %d\n", err);
1378 goto out_err;
1379 }
1380
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001381 kvm_info("Hyp mode initialized successfully\n");
Marc Zyngier210552c2013-03-05 03:18:00 +00001382
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001383 return 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001384
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001385out_err:
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001386 teardown_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001387 kvm_err("error initializing Hyp mode: %d\n", err);
1388 return err;
1389}
1390
Andre Przywarad4e071c2013-04-17 12:52:01 +02001391static void check_kvm_target_cpu(void *ret)
1392{
1393 *(int *)ret = kvm_target_cpu();
1394}
1395
Andre Przywara4429fc62014-06-02 15:37:13 +02001396struct kvm_vcpu *kvm_mpidr_to_vcpu(struct kvm *kvm, unsigned long mpidr)
1397{
1398 struct kvm_vcpu *vcpu;
1399 int i;
1400
1401 mpidr &= MPIDR_HWID_BITMASK;
1402 kvm_for_each_vcpu(i, vcpu, kvm) {
1403 if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu))
1404 return vcpu;
1405 }
1406 return NULL;
1407}
1408
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001409/**
1410 * Initialize Hyp-mode and memory mappings on all CPUs.
1411 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001412int kvm_arch_init(void *opaque)
1413{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001414 int err;
Andre Przywarad4e071c2013-04-17 12:52:01 +02001415 int ret, cpu;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001416
1417 if (!is_hyp_mode_available()) {
1418 kvm_err("HYP mode not available\n");
1419 return -ENODEV;
1420 }
1421
Andre Przywarad4e071c2013-04-17 12:52:01 +02001422 for_each_online_cpu(cpu) {
1423 smp_call_function_single(cpu, check_kvm_target_cpu, &ret, 1);
1424 if (ret < 0) {
1425 kvm_err("Error, CPU %d not supported!\n", cpu);
1426 return -ENODEV;
1427 }
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001428 }
1429
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001430 err = init_common_resources();
1431 if (err)
1432 return err;
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301433
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001434 if (is_kernel_in_hyp_mode())
1435 err = init_vhe_mode();
1436 else
1437 err = init_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001438 if (err)
1439 goto out_err;
1440
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001441 err = init_subsystems();
1442 if (err)
1443 goto out_hyp;
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001444
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001445 return 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001446
1447out_hyp:
1448 teardown_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001449out_err:
1450 return err;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001451}
1452
1453/* NOP: Compiling as a module not supported */
1454void kvm_arch_exit(void)
1455{
Marc Zyngier210552c2013-03-05 03:18:00 +00001456 kvm_perf_teardown();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001457}
1458
1459static int arm_init(void)
1460{
1461 int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1462 return rc;
1463}
1464
1465module_init(arm_init);