blob: 535e713704f08f9955e0023923efc1562492918b [file] [log] [blame]
Eric Auger90977732015-12-01 15:02:35 +01001/*
2 * Copyright (C) 2015, 2016 ARM Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include <linux/uaccess.h>
18#include <linux/interrupt.h>
19#include <linux/cpu.h>
20#include <linux/kvm_host.h>
21#include <kvm/arm_vgic.h>
22#include <asm/kvm_mmu.h>
23#include "vgic.h"
24
Eric Augerad275b8b2015-12-21 18:09:38 +010025/*
26 * Initialization rules: there are multiple stages to the vgic
27 * initialization, both for the distributor and the CPU interfaces.
28 *
29 * Distributor:
30 *
31 * - kvm_vgic_early_init(): initialization of static data that doesn't
32 * depend on any sizing information or emulation type. No allocation
33 * is allowed there.
34 *
35 * - vgic_init(): allocation and initialization of the generic data
36 * structures that depend on sizing information (number of CPUs,
37 * number of interrupts). Also initializes the vcpu specific data
38 * structures. Can be executed lazily for GICv2.
39 *
40 * CPU Interface:
41 *
42 * - kvm_vgic_cpu_early_init(): initialization of static data that
43 * doesn't depend on any sizing information or emulation type. No
44 * allocation is allowed there.
45 */
46
47/* EARLY INIT */
48
49/*
50 * Those 2 functions should not be needed anymore but they
51 * still are called from arm.c
52 */
53void kvm_vgic_early_init(struct kvm *kvm)
54{
55}
56
57void kvm_vgic_vcpu_early_init(struct kvm_vcpu *vcpu)
58{
59}
60
Eric Auger5e6431d2015-12-21 14:50:50 +010061/* CREATION */
62
63/**
64 * kvm_vgic_create: triggered by the instantiation of the VGIC device by
65 * user space, either through the legacy KVM_CREATE_IRQCHIP ioctl (v2 only)
66 * or through the generic KVM_CREATE_DEVICE API ioctl.
67 * irqchip_in_kernel() tells you if this function succeeded or not.
Eric Augerad275b8b2015-12-21 18:09:38 +010068 * @kvm: kvm struct pointer
69 * @type: KVM_DEV_TYPE_ARM_VGIC_V[23]
Eric Auger5e6431d2015-12-21 14:50:50 +010070 */
71int kvm_vgic_create(struct kvm *kvm, u32 type)
72{
73 int i, vcpu_lock_idx = -1, ret;
74 struct kvm_vcpu *vcpu;
75
76 mutex_lock(&kvm->lock);
77
78 if (irqchip_in_kernel(kvm)) {
79 ret = -EEXIST;
80 goto out;
81 }
82
83 /*
84 * This function is also called by the KVM_CREATE_IRQCHIP handler,
85 * which had no chance yet to check the availability of the GICv2
86 * emulation. So check this here again. KVM_CREATE_DEVICE does
87 * the proper checks already.
88 */
89 if (type == KVM_DEV_TYPE_ARM_VGIC_V2 &&
90 !kvm_vgic_global_state.can_emulate_gicv2) {
91 ret = -ENODEV;
92 goto out;
93 }
94
95 /*
96 * Any time a vcpu is run, vcpu_load is called which tries to grab the
97 * vcpu->mutex. By grabbing the vcpu->mutex of all VCPUs we ensure
98 * that no other VCPUs are run while we create the vgic.
99 */
100 ret = -EBUSY;
101 kvm_for_each_vcpu(i, vcpu, kvm) {
102 if (!mutex_trylock(&vcpu->mutex))
103 goto out_unlock;
104 vcpu_lock_idx = i;
105 }
106
107 kvm_for_each_vcpu(i, vcpu, kvm) {
108 if (vcpu->arch.has_run_once)
109 goto out_unlock;
110 }
111 ret = 0;
112
113 if (type == KVM_DEV_TYPE_ARM_VGIC_V2)
114 kvm->arch.max_vcpus = VGIC_V2_MAX_CPUS;
115 else
116 kvm->arch.max_vcpus = VGIC_V3_MAX_CPUS;
117
118 if (atomic_read(&kvm->online_vcpus) > kvm->arch.max_vcpus) {
119 ret = -E2BIG;
120 goto out_unlock;
121 }
122
123 kvm->arch.vgic.in_kernel = true;
124 kvm->arch.vgic.vgic_model = type;
125
126 /*
127 * kvm_vgic_global_state.vctrl_base is set on vgic probe (kvm_arch_init)
128 * it is stored in distributor struct for asm save/restore purpose
129 */
130 kvm->arch.vgic.vctrl_base = kvm_vgic_global_state.vctrl_base;
131
132 kvm->arch.vgic.vgic_dist_base = VGIC_ADDR_UNDEF;
133 kvm->arch.vgic.vgic_cpu_base = VGIC_ADDR_UNDEF;
134 kvm->arch.vgic.vgic_redist_base = VGIC_ADDR_UNDEF;
135
136out_unlock:
137 for (; vcpu_lock_idx >= 0; vcpu_lock_idx--) {
138 vcpu = kvm_get_vcpu(kvm, vcpu_lock_idx);
139 mutex_unlock(&vcpu->mutex);
140 }
141
142out:
143 mutex_unlock(&kvm->lock);
144 return ret;
145}
146
Eric Augerad275b8b2015-12-21 18:09:38 +0100147/* INIT/DESTROY */
148
149/**
150 * kvm_vgic_dist_init: initialize the dist data structures
151 * @kvm: kvm struct pointer
152 * @nr_spis: number of spis, frozen by caller
153 */
154static int kvm_vgic_dist_init(struct kvm *kvm, unsigned int nr_spis)
155{
156 struct vgic_dist *dist = &kvm->arch.vgic;
157 struct kvm_vcpu *vcpu0 = kvm_get_vcpu(kvm, 0);
158 int i;
159
Andre Przywara38024112016-07-15 12:43:33 +0100160 INIT_LIST_HEAD(&dist->lpi_list_head);
161 spin_lock_init(&dist->lpi_list_lock);
162
Eric Augerad275b8b2015-12-21 18:09:38 +0100163 dist->spis = kcalloc(nr_spis, sizeof(struct vgic_irq), GFP_KERNEL);
164 if (!dist->spis)
165 return -ENOMEM;
166
167 /*
168 * In the following code we do not take the irq struct lock since
169 * no other action on irq structs can happen while the VGIC is
170 * not initialized yet:
171 * If someone wants to inject an interrupt or does a MMIO access, we
172 * require prior initialization in case of a virtual GICv3 or trigger
173 * initialization when using a virtual GICv2.
174 */
175 for (i = 0; i < nr_spis; i++) {
176 struct vgic_irq *irq = &dist->spis[i];
177
178 irq->intid = i + VGIC_NR_PRIVATE_IRQS;
179 INIT_LIST_HEAD(&irq->ap_list);
180 spin_lock_init(&irq->irq_lock);
181 irq->vcpu = NULL;
182 irq->target_vcpu = vcpu0;
Andre Przywara5dd4b922016-07-15 12:43:27 +0100183 kref_init(&irq->refcount);
Eric Augerad275b8b2015-12-21 18:09:38 +0100184 if (dist->vgic_model == KVM_DEV_TYPE_ARM_VGIC_V2)
185 irq->targets = 0;
186 else
187 irq->mpidr = 0;
188 }
189 return 0;
190}
191
192/**
193 * kvm_vgic_vcpu_init: initialize the vcpu data structures and
194 * enable the VCPU interface
195 * @vcpu: the VCPU which's VGIC should be initialized
196 */
197static void kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu)
198{
199 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
200 int i;
201
202 INIT_LIST_HEAD(&vgic_cpu->ap_list_head);
203 spin_lock_init(&vgic_cpu->ap_list_lock);
204
205 /*
206 * Enable and configure all SGIs to be edge-triggered and
207 * configure all PPIs as level-triggered.
208 */
209 for (i = 0; i < VGIC_NR_PRIVATE_IRQS; i++) {
210 struct vgic_irq *irq = &vgic_cpu->private_irqs[i];
211
212 INIT_LIST_HEAD(&irq->ap_list);
213 spin_lock_init(&irq->irq_lock);
214 irq->intid = i;
215 irq->vcpu = NULL;
216 irq->target_vcpu = vcpu;
217 irq->targets = 1U << vcpu->vcpu_id;
Andre Przywara5dd4b922016-07-15 12:43:27 +0100218 kref_init(&irq->refcount);
Eric Augerad275b8b2015-12-21 18:09:38 +0100219 if (vgic_irq_is_sgi(i)) {
220 /* SGIs */
221 irq->enabled = 1;
222 irq->config = VGIC_CONFIG_EDGE;
223 } else {
224 /* PPIs */
225 irq->config = VGIC_CONFIG_LEVEL;
226 }
227 }
228 if (kvm_vgic_global_state.type == VGIC_V2)
229 vgic_v2_enable(vcpu);
230 else
231 vgic_v3_enable(vcpu);
232}
233
234/*
235 * vgic_init: allocates and initializes dist and vcpu data structures
236 * depending on two dimensioning parameters:
237 * - the number of spis
238 * - the number of vcpus
239 * The function is generally called when nr_spis has been explicitly set
240 * by the guest through the KVM DEVICE API. If not nr_spis is set to 256.
241 * vgic_initialized() returns true when this function has succeeded.
242 * Must be called with kvm->lock held!
243 */
244int vgic_init(struct kvm *kvm)
245{
246 struct vgic_dist *dist = &kvm->arch.vgic;
247 struct kvm_vcpu *vcpu;
248 int ret = 0, i;
249
250 if (vgic_initialized(kvm))
251 return 0;
252
253 /* freeze the number of spis */
254 if (!dist->nr_spis)
255 dist->nr_spis = VGIC_NR_IRQS_LEGACY - VGIC_NR_PRIVATE_IRQS;
256
257 ret = kvm_vgic_dist_init(kvm, dist->nr_spis);
258 if (ret)
259 goto out;
260
261 kvm_for_each_vcpu(i, vcpu, kvm)
262 kvm_vgic_vcpu_init(vcpu);
263
264 dist->initialized = true;
265out:
266 return ret;
267}
268
269static void kvm_vgic_dist_destroy(struct kvm *kvm)
270{
271 struct vgic_dist *dist = &kvm->arch.vgic;
272
273 mutex_lock(&kvm->lock);
274
275 dist->ready = false;
276 dist->initialized = false;
277
278 kfree(dist->spis);
Eric Augerad275b8b2015-12-21 18:09:38 +0100279 dist->nr_spis = 0;
280
281 mutex_unlock(&kvm->lock);
282}
283
284void kvm_vgic_vcpu_destroy(struct kvm_vcpu *vcpu)
285{
286 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
287
288 INIT_LIST_HEAD(&vgic_cpu->ap_list_head);
289}
290
291void kvm_vgic_destroy(struct kvm *kvm)
292{
293 struct kvm_vcpu *vcpu;
294 int i;
295
296 kvm_vgic_dist_destroy(kvm);
297
298 kvm_for_each_vcpu(i, vcpu, kvm)
299 kvm_vgic_vcpu_destroy(vcpu);
300}
301
302/**
303 * vgic_lazy_init: Lazy init is only allowed if the GIC exposed to the guest
304 * is a GICv2. A GICv3 must be explicitly initialized by the guest using the
305 * KVM_DEV_ARM_VGIC_GRP_CTRL KVM_DEVICE group.
306 * @kvm: kvm struct pointer
307 */
308int vgic_lazy_init(struct kvm *kvm)
309{
310 int ret = 0;
311
312 if (unlikely(!vgic_initialized(kvm))) {
313 /*
314 * We only provide the automatic initialization of the VGIC
315 * for the legacy case of a GICv2. Any other type must
316 * be explicitly initialized once setup with the respective
317 * KVM device call.
318 */
319 if (kvm->arch.vgic.vgic_model != KVM_DEV_TYPE_ARM_VGIC_V2)
320 return -EBUSY;
321
322 mutex_lock(&kvm->lock);
323 ret = vgic_init(kvm);
324 mutex_unlock(&kvm->lock);
325 }
326
327 return ret;
328}
329
Eric Augerb0442ee2015-12-21 15:04:42 +0100330/* RESOURCE MAPPING */
331
332/**
333 * Map the MMIO regions depending on the VGIC model exposed to the guest
334 * called on the first VCPU run.
335 * Also map the virtual CPU interface into the VM.
336 * v2/v3 derivatives call vgic_init if not already done.
337 * vgic_ready() returns true if this function has succeeded.
338 * @kvm: kvm struct pointer
339 */
340int kvm_vgic_map_resources(struct kvm *kvm)
341{
342 struct vgic_dist *dist = &kvm->arch.vgic;
343 int ret = 0;
344
345 mutex_lock(&kvm->lock);
346 if (!irqchip_in_kernel(kvm))
347 goto out;
348
349 if (dist->vgic_model == KVM_DEV_TYPE_ARM_VGIC_V2)
350 ret = vgic_v2_map_resources(kvm);
351 else
352 ret = vgic_v3_map_resources(kvm);
353out:
354 mutex_unlock(&kvm->lock);
355 return ret;
356}
357
Eric Auger90977732015-12-01 15:02:35 +0100358/* GENERIC PROBE */
359
360static void vgic_init_maintenance_interrupt(void *info)
361{
362 enable_percpu_irq(kvm_vgic_global_state.maint_irq, 0);
363}
364
365static int vgic_cpu_notify(struct notifier_block *self,
366 unsigned long action, void *cpu)
367{
368 switch (action) {
369 case CPU_STARTING:
370 case CPU_STARTING_FROZEN:
371 vgic_init_maintenance_interrupt(NULL);
372 break;
373 case CPU_DYING:
374 case CPU_DYING_FROZEN:
375 disable_percpu_irq(kvm_vgic_global_state.maint_irq);
376 break;
377 }
378
379 return NOTIFY_OK;
380}
381
382static struct notifier_block vgic_cpu_nb = {
383 .notifier_call = vgic_cpu_notify,
384};
385
386static irqreturn_t vgic_maintenance_handler(int irq, void *data)
387{
388 /*
389 * We cannot rely on the vgic maintenance interrupt to be
390 * delivered synchronously. This means we can only use it to
391 * exit the VM, and we perform the handling of EOIed
392 * interrupts on the exit path (see vgic_process_maintenance).
393 */
394 return IRQ_HANDLED;
395}
396
397/**
398 * kvm_vgic_hyp_init: populates the kvm_vgic_global_state variable
399 * according to the host GIC model. Accordingly calls either
400 * vgic_v2/v3_probe which registers the KVM_DEVICE that can be
401 * instantiated by a guest later on .
402 */
403int kvm_vgic_hyp_init(void)
404{
405 const struct gic_kvm_info *gic_kvm_info;
406 int ret;
407
408 gic_kvm_info = gic_get_kvm_info();
409 if (!gic_kvm_info)
410 return -ENODEV;
411
412 if (!gic_kvm_info->maint_irq) {
413 kvm_err("No vgic maintenance irq\n");
414 return -ENXIO;
415 }
416
417 switch (gic_kvm_info->type) {
418 case GIC_V2:
419 ret = vgic_v2_probe(gic_kvm_info);
420 break;
421 case GIC_V3:
422 ret = vgic_v3_probe(gic_kvm_info);
423 break;
424 default:
425 ret = -ENODEV;
426 };
427
428 if (ret)
429 return ret;
430
431 kvm_vgic_global_state.maint_irq = gic_kvm_info->maint_irq;
432 ret = request_percpu_irq(kvm_vgic_global_state.maint_irq,
433 vgic_maintenance_handler,
434 "vgic", kvm_get_running_vcpus());
435 if (ret) {
436 kvm_err("Cannot register interrupt %d\n",
437 kvm_vgic_global_state.maint_irq);
438 return ret;
439 }
440
441 ret = __register_cpu_notifier(&vgic_cpu_nb);
442 if (ret) {
443 kvm_err("Cannot register vgic CPU notifier\n");
444 goto out_free_irq;
445 }
446
447 on_each_cpu(vgic_init_maintenance_interrupt, NULL, 1);
448
449 kvm_info("vgic interrupt IRQ%d\n", kvm_vgic_global_state.maint_irq);
450 return 0;
451
452out_free_irq:
453 free_percpu_irq(kvm_vgic_global_state.maint_irq,
454 kvm_get_running_vcpus());
455 return ret;
456}