blob: ecb8e25f5fe56d69065757a80c44c2d4a532bbcb [file] [log] [blame]
Christoffer Dall64a959d2015-11-24 16:51:12 +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/kvm.h>
18#include <linux/kvm_host.h>
Christoffer Dall8e444742015-11-25 10:02:16 -080019#include <linux/list_sort.h>
Eric Auger47bbd312017-10-27 15:28:32 +010020#include <linux/interrupt.h>
21#include <linux/irq.h>
Christoffer Dall64a959d2015-11-24 16:51:12 +010022
23#include "vgic.h"
24
Christoffer Dall81eeb952015-11-25 10:02:16 -080025#define CREATE_TRACE_POINTS
Christoffer Dall35d2d5d2017-05-04 13:54:17 +020026#include "trace.h"
Christoffer Dall81eeb952015-11-25 10:02:16 -080027
28#ifdef CONFIG_DEBUG_SPINLOCK
29#define DEBUG_SPINLOCK_BUG_ON(p) BUG_ON(p)
30#else
31#define DEBUG_SPINLOCK_BUG_ON(p)
32#endif
33
Ard Biesheuvel63d7c6a2017-03-09 21:51:59 +010034struct vgic_global kvm_vgic_global_state __ro_after_init = {
35 .gicv3_cpuif = STATIC_KEY_FALSE_INIT,
36};
Christoffer Dall64a959d2015-11-24 16:51:12 +010037
Christoffer Dall81eeb952015-11-25 10:02:16 -080038/*
39 * Locking order is always:
Christoffer Dallabd72292017-05-06 20:01:24 +020040 * kvm->lock (mutex)
41 * its->cmd_lock (mutex)
42 * its->its_lock (mutex)
43 * vgic_cpu->ap_list_lock
44 * kvm->lpi_list_lock
45 * vgic_irq->irq_lock
Christoffer Dall81eeb952015-11-25 10:02:16 -080046 *
Andre Przywara424c3382016-07-15 12:43:32 +010047 * If you need to take multiple locks, always take the upper lock first,
48 * then the lower ones, e.g. first take the its_lock, then the irq_lock.
49 * If you are already holding a lock and need to take a higher one, you
50 * have to drop the lower ranking lock first and re-aquire it after having
51 * taken the upper one.
Christoffer Dall81eeb952015-11-25 10:02:16 -080052 *
53 * When taking more than one ap_list_lock at the same time, always take the
54 * lowest numbered VCPU's ap_list_lock first, so:
55 * vcpuX->vcpu_id < vcpuY->vcpu_id:
56 * spin_lock(vcpuX->arch.vgic_cpu.ap_list_lock);
57 * spin_lock(vcpuY->arch.vgic_cpu.ap_list_lock);
Christoffer Dall006df0f2016-10-16 22:19:11 +020058 *
59 * Since the VGIC must support injecting virtual interrupts from ISRs, we have
60 * to use the spin_lock_irqsave/spin_unlock_irqrestore versions of outer
61 * spinlocks for any lock that may be taken while injecting an interrupt.
Christoffer Dall81eeb952015-11-25 10:02:16 -080062 */
63
Andre Przywara38024112016-07-15 12:43:33 +010064/*
65 * Iterate over the VM's list of mapped LPIs to find the one with a
66 * matching interrupt ID and return a reference to the IRQ structure.
67 */
68static struct vgic_irq *vgic_get_lpi(struct kvm *kvm, u32 intid)
69{
70 struct vgic_dist *dist = &kvm->arch.vgic;
71 struct vgic_irq *irq = NULL;
72
73 spin_lock(&dist->lpi_list_lock);
74
75 list_for_each_entry(irq, &dist->lpi_list_head, lpi_list) {
76 if (irq->intid != intid)
77 continue;
78
79 /*
80 * This increases the refcount, the caller is expected to
81 * call vgic_put_irq() later once it's finished with the IRQ.
82 */
Marc Zyngierd97594e2016-07-17 11:27:23 +010083 vgic_get_irq_kref(irq);
Andre Przywara38024112016-07-15 12:43:33 +010084 goto out_unlock;
85 }
86 irq = NULL;
87
88out_unlock:
89 spin_unlock(&dist->lpi_list_lock);
90
91 return irq;
92}
93
94/*
95 * This looks up the virtual interrupt ID to get the corresponding
96 * struct vgic_irq. It also increases the refcount, so any caller is expected
97 * to call vgic_put_irq() once it's finished with this IRQ.
98 */
Christoffer Dall64a959d2015-11-24 16:51:12 +010099struct vgic_irq *vgic_get_irq(struct kvm *kvm, struct kvm_vcpu *vcpu,
100 u32 intid)
101{
102 /* SGIs and PPIs */
103 if (intid <= VGIC_MAX_PRIVATE)
104 return &vcpu->arch.vgic_cpu.private_irqs[intid];
105
106 /* SPIs */
107 if (intid <= VGIC_MAX_SPI)
108 return &kvm->arch.vgic.spis[intid - VGIC_NR_PRIVATE_IRQS];
109
Andre Przywara38024112016-07-15 12:43:33 +0100110 /* LPIs */
Christoffer Dall64a959d2015-11-24 16:51:12 +0100111 if (intid >= VGIC_MIN_LPI)
Andre Przywara38024112016-07-15 12:43:33 +0100112 return vgic_get_lpi(kvm, intid);
Christoffer Dall64a959d2015-11-24 16:51:12 +0100113
114 WARN(1, "Looking up struct vgic_irq for reserved INTID");
115 return NULL;
116}
Christoffer Dall81eeb952015-11-25 10:02:16 -0800117
Andre Przywara38024112016-07-15 12:43:33 +0100118/*
119 * We can't do anything in here, because we lack the kvm pointer to
120 * lock and remove the item from the lpi_list. So we keep this function
121 * empty and use the return value of kref_put() to trigger the freeing.
122 */
Andre Przywara5dd4b922016-07-15 12:43:27 +0100123static void vgic_irq_release(struct kref *ref)
124{
Andre Przywara5dd4b922016-07-15 12:43:27 +0100125}
126
127void vgic_put_irq(struct kvm *kvm, struct vgic_irq *irq)
128{
Christoffer Dall2cccbb32016-08-02 22:05:42 +0200129 struct vgic_dist *dist = &kvm->arch.vgic;
Andre Przywara38024112016-07-15 12:43:33 +0100130
Andre Przywara5dd4b922016-07-15 12:43:27 +0100131 if (irq->intid < VGIC_MIN_LPI)
132 return;
133
Andre Przywara38024112016-07-15 12:43:33 +0100134 spin_lock(&dist->lpi_list_lock);
Christoffer Dall2cccbb32016-08-02 22:05:42 +0200135 if (!kref_put(&irq->refcount, vgic_irq_release)) {
136 spin_unlock(&dist->lpi_list_lock);
137 return;
138 };
139
Andre Przywara38024112016-07-15 12:43:33 +0100140 list_del(&irq->lpi_list);
141 dist->lpi_list_count--;
142 spin_unlock(&dist->lpi_list_lock);
143
144 kfree(irq);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100145}
146
Christoffer Dall81eeb952015-11-25 10:02:16 -0800147/**
148 * kvm_vgic_target_oracle - compute the target vcpu for an irq
149 *
150 * @irq: The irq to route. Must be already locked.
151 *
152 * Based on the current state of the interrupt (enabled, pending,
153 * active, vcpu and target_vcpu), compute the next vcpu this should be
154 * given to. Return NULL if this shouldn't be injected at all.
155 *
156 * Requires the IRQ lock to be held.
157 */
158static struct kvm_vcpu *vgic_target_oracle(struct vgic_irq *irq)
159{
160 DEBUG_SPINLOCK_BUG_ON(!spin_is_locked(&irq->irq_lock));
161
162 /* If the interrupt is active, it must stay on the current vcpu */
163 if (irq->active)
164 return irq->vcpu ? : irq->target_vcpu;
165
166 /*
167 * If the IRQ is not active but enabled and pending, we should direct
168 * it to its configured target VCPU.
169 * If the distributor is disabled, pending interrupts shouldn't be
170 * forwarded.
171 */
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100172 if (irq->enabled && irq_is_pending(irq)) {
Christoffer Dall81eeb952015-11-25 10:02:16 -0800173 if (unlikely(irq->target_vcpu &&
174 !irq->target_vcpu->kvm->arch.vgic.enabled))
175 return NULL;
176
177 return irq->target_vcpu;
178 }
179
180 /* If neither active nor pending and enabled, then this IRQ should not
181 * be queued to any VCPU.
182 */
183 return NULL;
184}
185
186/*
Christoffer Dall8e444742015-11-25 10:02:16 -0800187 * The order of items in the ap_lists defines how we'll pack things in LRs as
188 * well, the first items in the list being the first things populated in the
189 * LRs.
190 *
191 * A hard rule is that active interrupts can never be pushed out of the LRs
192 * (and therefore take priority) since we cannot reliably trap on deactivation
193 * of IRQs and therefore they have to be present in the LRs.
194 *
195 * Otherwise things should be sorted by the priority field and the GIC
196 * hardware support will take care of preemption of priority groups etc.
197 *
198 * Return negative if "a" sorts before "b", 0 to preserve order, and positive
199 * to sort "b" before "a".
200 */
201static int vgic_irq_cmp(void *priv, struct list_head *a, struct list_head *b)
202{
203 struct vgic_irq *irqa = container_of(a, struct vgic_irq, ap_list);
204 struct vgic_irq *irqb = container_of(b, struct vgic_irq, ap_list);
205 bool penda, pendb;
206 int ret;
207
208 spin_lock(&irqa->irq_lock);
209 spin_lock_nested(&irqb->irq_lock, SINGLE_DEPTH_NESTING);
210
211 if (irqa->active || irqb->active) {
212 ret = (int)irqb->active - (int)irqa->active;
213 goto out;
214 }
215
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100216 penda = irqa->enabled && irq_is_pending(irqa);
217 pendb = irqb->enabled && irq_is_pending(irqb);
Christoffer Dall8e444742015-11-25 10:02:16 -0800218
219 if (!penda || !pendb) {
220 ret = (int)pendb - (int)penda;
221 goto out;
222 }
223
224 /* Both pending and enabled, sort by priority */
225 ret = irqa->priority - irqb->priority;
226out:
227 spin_unlock(&irqb->irq_lock);
228 spin_unlock(&irqa->irq_lock);
229 return ret;
230}
231
232/* Must be called with the ap_list_lock held */
233static void vgic_sort_ap_list(struct kvm_vcpu *vcpu)
234{
235 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
236
237 DEBUG_SPINLOCK_BUG_ON(!spin_is_locked(&vgic_cpu->ap_list_lock));
238
239 list_sort(NULL, &vgic_cpu->ap_list_head, vgic_irq_cmp);
240}
241
242/*
Christoffer Dall81eeb952015-11-25 10:02:16 -0800243 * Only valid injection if changing level for level-triggered IRQs or for a
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200244 * rising edge, and in-kernel connected IRQ lines can only be controlled by
245 * their owner.
Christoffer Dall81eeb952015-11-25 10:02:16 -0800246 */
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200247static bool vgic_validate_injection(struct vgic_irq *irq, bool level, void *owner)
Christoffer Dall81eeb952015-11-25 10:02:16 -0800248{
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200249 if (irq->owner != owner)
250 return false;
251
Christoffer Dall81eeb952015-11-25 10:02:16 -0800252 switch (irq->config) {
253 case VGIC_CONFIG_LEVEL:
254 return irq->line_level != level;
255 case VGIC_CONFIG_EDGE:
256 return level;
257 }
258
259 return false;
260}
261
262/*
263 * Check whether an IRQ needs to (and can) be queued to a VCPU's ap list.
264 * Do the queuing if necessary, taking the right locks in the right order.
265 * Returns true when the IRQ was queued, false otherwise.
266 *
267 * Needs to be entered with the IRQ lock already held, but will return
268 * with all locks dropped.
269 */
Christoffer Dall006df0f2016-10-16 22:19:11 +0200270bool vgic_queue_irq_unlock(struct kvm *kvm, struct vgic_irq *irq,
271 unsigned long flags)
Christoffer Dall81eeb952015-11-25 10:02:16 -0800272{
273 struct kvm_vcpu *vcpu;
274
275 DEBUG_SPINLOCK_BUG_ON(!spin_is_locked(&irq->irq_lock));
276
277retry:
278 vcpu = vgic_target_oracle(irq);
279 if (irq->vcpu || !vcpu) {
280 /*
281 * If this IRQ is already on a VCPU's ap_list, then it
282 * cannot be moved or modified and there is no more work for
283 * us to do.
284 *
285 * Otherwise, if the irq is not pending and enabled, it does
286 * not need to be inserted into an ap_list and there is also
287 * no more work for us to do.
288 */
Christoffer Dall006df0f2016-10-16 22:19:11 +0200289 spin_unlock_irqrestore(&irq->irq_lock, flags);
Shih-Wei Lid42c7972016-10-27 15:08:13 +0000290
291 /*
292 * We have to kick the VCPU here, because we could be
293 * queueing an edge-triggered interrupt for which we
294 * get no EOI maintenance interrupt. In that case,
295 * while the IRQ is already on the VCPU's AP list, the
296 * VCPU could have EOI'ed the original interrupt and
297 * won't see this one until it exits for some other
298 * reason.
299 */
Andrew Jones325f9c62017-06-04 14:43:59 +0200300 if (vcpu) {
301 kvm_make_request(KVM_REQ_IRQ_PENDING, vcpu);
Shih-Wei Lid42c7972016-10-27 15:08:13 +0000302 kvm_vcpu_kick(vcpu);
Andrew Jones325f9c62017-06-04 14:43:59 +0200303 }
Christoffer Dall81eeb952015-11-25 10:02:16 -0800304 return false;
305 }
306
307 /*
308 * We must unlock the irq lock to take the ap_list_lock where
309 * we are going to insert this new pending interrupt.
310 */
Christoffer Dall006df0f2016-10-16 22:19:11 +0200311 spin_unlock_irqrestore(&irq->irq_lock, flags);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800312
313 /* someone can do stuff here, which we re-check below */
314
Christoffer Dall006df0f2016-10-16 22:19:11 +0200315 spin_lock_irqsave(&vcpu->arch.vgic_cpu.ap_list_lock, flags);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800316 spin_lock(&irq->irq_lock);
317
318 /*
319 * Did something change behind our backs?
320 *
321 * There are two cases:
322 * 1) The irq lost its pending state or was disabled behind our
323 * backs and/or it was queued to another VCPU's ap_list.
324 * 2) Someone changed the affinity on this irq behind our
325 * backs and we are now holding the wrong ap_list_lock.
326 *
327 * In both cases, drop the locks and retry.
328 */
329
330 if (unlikely(irq->vcpu || vcpu != vgic_target_oracle(irq))) {
331 spin_unlock(&irq->irq_lock);
Christoffer Dall006df0f2016-10-16 22:19:11 +0200332 spin_unlock_irqrestore(&vcpu->arch.vgic_cpu.ap_list_lock, flags);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800333
Christoffer Dall006df0f2016-10-16 22:19:11 +0200334 spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800335 goto retry;
336 }
337
Andre Przywara5dd4b922016-07-15 12:43:27 +0100338 /*
339 * Grab a reference to the irq to reflect the fact that it is
340 * now in the ap_list.
341 */
342 vgic_get_irq_kref(irq);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800343 list_add_tail(&irq->ap_list, &vcpu->arch.vgic_cpu.ap_list_head);
344 irq->vcpu = vcpu;
345
346 spin_unlock(&irq->irq_lock);
Christoffer Dall006df0f2016-10-16 22:19:11 +0200347 spin_unlock_irqrestore(&vcpu->arch.vgic_cpu.ap_list_lock, flags);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800348
Andrew Jones325f9c62017-06-04 14:43:59 +0200349 kvm_make_request(KVM_REQ_IRQ_PENDING, vcpu);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800350 kvm_vcpu_kick(vcpu);
351
352 return true;
353}
354
Christoffer Dall11710de2017-02-01 11:03:45 +0100355/**
356 * kvm_vgic_inject_irq - Inject an IRQ from a device to the vgic
357 * @kvm: The VM structure pointer
358 * @cpuid: The CPU for PPIs
359 * @intid: The INTID to inject a new state to.
360 * @level: Edge-triggered: true: to trigger the interrupt
361 * false: to ignore the call
362 * Level-sensitive true: raise the input signal
363 * false: lower the input signal
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200364 * @owner: The opaque pointer to the owner of the IRQ being raised to verify
365 * that the caller is allowed to inject this IRQ. Userspace
366 * injections will have owner == NULL.
Christoffer Dall11710de2017-02-01 11:03:45 +0100367 *
368 * The VGIC is not concerned with devices being active-LOW or active-HIGH for
369 * level-sensitive interrupts. You can think of the level parameter as 1
370 * being HIGH and 0 being LOW and all devices being active-HIGH.
371 */
372int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid, unsigned int intid,
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200373 bool level, void *owner)
Christoffer Dall81eeb952015-11-25 10:02:16 -0800374{
375 struct kvm_vcpu *vcpu;
376 struct vgic_irq *irq;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200377 unsigned long flags;
Christoffer Dall81eeb952015-11-25 10:02:16 -0800378 int ret;
379
380 trace_vgic_update_irq_pending(cpuid, intid, level);
381
Eric Augerad275b8b2015-12-21 18:09:38 +0100382 ret = vgic_lazy_init(kvm);
383 if (ret)
384 return ret;
385
Christoffer Dall81eeb952015-11-25 10:02:16 -0800386 vcpu = kvm_get_vcpu(kvm, cpuid);
387 if (!vcpu && intid < VGIC_NR_PRIVATE_IRQS)
388 return -EINVAL;
389
390 irq = vgic_get_irq(kvm, vcpu, intid);
391 if (!irq)
392 return -EINVAL;
393
Christoffer Dall006df0f2016-10-16 22:19:11 +0200394 spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800395
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200396 if (!vgic_validate_injection(irq, level, owner)) {
Christoffer Dall81eeb952015-11-25 10:02:16 -0800397 /* Nothing to see here, move along... */
Christoffer Dall006df0f2016-10-16 22:19:11 +0200398 spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100399 vgic_put_irq(kvm, irq);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800400 return 0;
401 }
402
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100403 if (irq->config == VGIC_CONFIG_LEVEL)
Christoffer Dall81eeb952015-11-25 10:02:16 -0800404 irq->line_level = level;
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100405 else
406 irq->pending_latch = true;
Christoffer Dall81eeb952015-11-25 10:02:16 -0800407
Christoffer Dall006df0f2016-10-16 22:19:11 +0200408 vgic_queue_irq_unlock(kvm, irq, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100409 vgic_put_irq(kvm, irq);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800410
411 return 0;
412}
413
Eric Auger47bbd312017-10-27 15:28:32 +0100414/* @irq->irq_lock must be held */
415static int kvm_vgic_map_irq(struct kvm_vcpu *vcpu, struct vgic_irq *irq,
416 unsigned int host_irq)
Andre Przywara568e8c92015-12-22 00:52:33 +0000417{
Eric Auger47bbd312017-10-27 15:28:32 +0100418 struct irq_desc *desc;
419 struct irq_data *data;
420
421 /*
422 * Find the physical IRQ number corresponding to @host_irq
423 */
424 desc = irq_to_desc(host_irq);
425 if (!desc) {
426 kvm_err("%s: no interrupt descriptor\n", __func__);
427 return -EINVAL;
428 }
429 data = irq_desc_get_irq_data(desc);
430 while (data->parent_data)
431 data = data->parent_data;
432
433 irq->hw = true;
434 irq->host_irq = host_irq;
435 irq->hwintid = data->hwirq;
436 return 0;
437}
438
439/* @irq->irq_lock must be held */
440static inline void kvm_vgic_unmap_irq(struct vgic_irq *irq)
441{
442 irq->hw = false;
443 irq->hwintid = 0;
444}
445
446int kvm_vgic_map_phys_irq(struct kvm_vcpu *vcpu, unsigned int host_irq,
447 u32 vintid)
448{
449 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, vintid);
Christoffer Dall006df0f2016-10-16 22:19:11 +0200450 unsigned long flags;
Eric Auger47bbd312017-10-27 15:28:32 +0100451 int ret;
Andre Przywara568e8c92015-12-22 00:52:33 +0000452
453 BUG_ON(!irq);
454
Christoffer Dall006df0f2016-10-16 22:19:11 +0200455 spin_lock_irqsave(&irq->irq_lock, flags);
Eric Auger47bbd312017-10-27 15:28:32 +0100456 ret = kvm_vgic_map_irq(vcpu, irq, host_irq);
Christoffer Dall006df0f2016-10-16 22:19:11 +0200457 spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100458 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara568e8c92015-12-22 00:52:33 +0000459
Eric Auger47bbd312017-10-27 15:28:32 +0100460 return ret;
Andre Przywara568e8c92015-12-22 00:52:33 +0000461}
462
Eric Auger47bbd312017-10-27 15:28:32 +0100463int kvm_vgic_unmap_phys_irq(struct kvm_vcpu *vcpu, unsigned int vintid)
Andre Przywara568e8c92015-12-22 00:52:33 +0000464{
Andre Przywara5dd4b922016-07-15 12:43:27 +0100465 struct vgic_irq *irq;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200466 unsigned long flags;
Andre Przywara568e8c92015-12-22 00:52:33 +0000467
468 if (!vgic_initialized(vcpu->kvm))
469 return -EAGAIN;
470
Eric Auger47bbd312017-10-27 15:28:32 +0100471 irq = vgic_get_irq(vcpu->kvm, vcpu, vintid);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100472 BUG_ON(!irq);
473
Christoffer Dall006df0f2016-10-16 22:19:11 +0200474 spin_lock_irqsave(&irq->irq_lock, flags);
Eric Auger47bbd312017-10-27 15:28:32 +0100475 kvm_vgic_unmap_irq(irq);
Christoffer Dall006df0f2016-10-16 22:19:11 +0200476 spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100477 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara568e8c92015-12-22 00:52:33 +0000478
479 return 0;
480}
481
Marc Zyngier0919e842015-11-26 17:19:25 +0000482/**
Christoffer Dallc6ccd302017-05-04 13:24:20 +0200483 * kvm_vgic_set_owner - Set the owner of an interrupt for a VM
484 *
485 * @vcpu: Pointer to the VCPU (used for PPIs)
486 * @intid: The virtual INTID identifying the interrupt (PPI or SPI)
487 * @owner: Opaque pointer to the owner
488 *
489 * Returns 0 if intid is not already used by another in-kernel device and the
490 * owner is set, otherwise returns an error code.
491 */
492int kvm_vgic_set_owner(struct kvm_vcpu *vcpu, unsigned int intid, void *owner)
493{
494 struct vgic_irq *irq;
Marc Zyngier74658942017-11-30 17:00:30 +0000495 unsigned long flags;
Christoffer Dallc6ccd302017-05-04 13:24:20 +0200496 int ret = 0;
497
498 if (!vgic_initialized(vcpu->kvm))
499 return -EAGAIN;
500
501 /* SGIs and LPIs cannot be wired up to any device */
502 if (!irq_is_ppi(intid) && !vgic_valid_spi(vcpu->kvm, intid))
503 return -EINVAL;
504
505 irq = vgic_get_irq(vcpu->kvm, vcpu, intid);
Marc Zyngier74658942017-11-30 17:00:30 +0000506 spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dallc6ccd302017-05-04 13:24:20 +0200507 if (irq->owner && irq->owner != owner)
508 ret = -EEXIST;
509 else
510 irq->owner = owner;
Marc Zyngier74658942017-11-30 17:00:30 +0000511 spin_unlock_irqrestore(&irq->irq_lock, flags);
Christoffer Dallc6ccd302017-05-04 13:24:20 +0200512
513 return ret;
514}
515
516/**
Marc Zyngier0919e842015-11-26 17:19:25 +0000517 * vgic_prune_ap_list - Remove non-relevant interrupts from the list
518 *
519 * @vcpu: The VCPU pointer
520 *
521 * Go over the list of "interesting" interrupts, and prune those that we
522 * won't have to consider in the near future.
523 */
524static void vgic_prune_ap_list(struct kvm_vcpu *vcpu)
525{
526 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
527 struct vgic_irq *irq, *tmp;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200528 unsigned long flags;
Marc Zyngier0919e842015-11-26 17:19:25 +0000529
530retry:
Christoffer Dall006df0f2016-10-16 22:19:11 +0200531 spin_lock_irqsave(&vgic_cpu->ap_list_lock, flags);
Marc Zyngier0919e842015-11-26 17:19:25 +0000532
533 list_for_each_entry_safe(irq, tmp, &vgic_cpu->ap_list_head, ap_list) {
534 struct kvm_vcpu *target_vcpu, *vcpuA, *vcpuB;
535
536 spin_lock(&irq->irq_lock);
537
538 BUG_ON(vcpu != irq->vcpu);
539
540 target_vcpu = vgic_target_oracle(irq);
541
542 if (!target_vcpu) {
543 /*
544 * We don't need to process this interrupt any
545 * further, move it off the list.
546 */
547 list_del(&irq->ap_list);
548 irq->vcpu = NULL;
549 spin_unlock(&irq->irq_lock);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100550
551 /*
552 * This vgic_put_irq call matches the
553 * vgic_get_irq_kref in vgic_queue_irq_unlock,
554 * where we added the LPI to the ap_list. As
555 * we remove the irq from the list, we drop
556 * also drop the refcount.
557 */
558 vgic_put_irq(vcpu->kvm, irq);
Marc Zyngier0919e842015-11-26 17:19:25 +0000559 continue;
560 }
561
562 if (target_vcpu == vcpu) {
563 /* We're on the right CPU */
564 spin_unlock(&irq->irq_lock);
565 continue;
566 }
567
568 /* This interrupt looks like it has to be migrated. */
569
570 spin_unlock(&irq->irq_lock);
Christoffer Dall006df0f2016-10-16 22:19:11 +0200571 spin_unlock_irqrestore(&vgic_cpu->ap_list_lock, flags);
Marc Zyngier0919e842015-11-26 17:19:25 +0000572
573 /*
574 * Ensure locking order by always locking the smallest
575 * ID first.
576 */
577 if (vcpu->vcpu_id < target_vcpu->vcpu_id) {
578 vcpuA = vcpu;
579 vcpuB = target_vcpu;
580 } else {
581 vcpuA = target_vcpu;
582 vcpuB = vcpu;
583 }
584
Christoffer Dall006df0f2016-10-16 22:19:11 +0200585 spin_lock_irqsave(&vcpuA->arch.vgic_cpu.ap_list_lock, flags);
Marc Zyngier0919e842015-11-26 17:19:25 +0000586 spin_lock_nested(&vcpuB->arch.vgic_cpu.ap_list_lock,
587 SINGLE_DEPTH_NESTING);
588 spin_lock(&irq->irq_lock);
589
590 /*
591 * If the affinity has been preserved, move the
592 * interrupt around. Otherwise, it means things have
593 * changed while the interrupt was unlocked, and we
594 * need to replay this.
595 *
596 * In all cases, we cannot trust the list not to have
597 * changed, so we restart from the beginning.
598 */
599 if (target_vcpu == vgic_target_oracle(irq)) {
600 struct vgic_cpu *new_cpu = &target_vcpu->arch.vgic_cpu;
601
602 list_del(&irq->ap_list);
603 irq->vcpu = target_vcpu;
604 list_add_tail(&irq->ap_list, &new_cpu->ap_list_head);
605 }
606
607 spin_unlock(&irq->irq_lock);
608 spin_unlock(&vcpuB->arch.vgic_cpu.ap_list_lock);
Christoffer Dall006df0f2016-10-16 22:19:11 +0200609 spin_unlock_irqrestore(&vcpuA->arch.vgic_cpu.ap_list_lock, flags);
Marc Zyngier0919e842015-11-26 17:19:25 +0000610 goto retry;
611 }
612
Christoffer Dall006df0f2016-10-16 22:19:11 +0200613 spin_unlock_irqrestore(&vgic_cpu->ap_list_lock, flags);
Marc Zyngier0919e842015-11-26 17:19:25 +0000614}
615
Marc Zyngier0919e842015-11-26 17:19:25 +0000616static inline void vgic_fold_lr_state(struct kvm_vcpu *vcpu)
617{
Marc Zyngier59529f62015-11-30 13:09:53 +0000618 if (kvm_vgic_global_state.type == VGIC_V2)
619 vgic_v2_fold_lr_state(vcpu);
620 else
621 vgic_v3_fold_lr_state(vcpu);
Marc Zyngier0919e842015-11-26 17:19:25 +0000622}
623
624/* Requires the irq_lock to be held. */
625static inline void vgic_populate_lr(struct kvm_vcpu *vcpu,
626 struct vgic_irq *irq, int lr)
627{
628 DEBUG_SPINLOCK_BUG_ON(!spin_is_locked(&irq->irq_lock));
Marc Zyngier140b0862015-11-26 17:19:25 +0000629
Marc Zyngier59529f62015-11-30 13:09:53 +0000630 if (kvm_vgic_global_state.type == VGIC_V2)
631 vgic_v2_populate_lr(vcpu, irq, lr);
632 else
633 vgic_v3_populate_lr(vcpu, irq, lr);
Marc Zyngier0919e842015-11-26 17:19:25 +0000634}
635
636static inline void vgic_clear_lr(struct kvm_vcpu *vcpu, int lr)
637{
Marc Zyngier59529f62015-11-30 13:09:53 +0000638 if (kvm_vgic_global_state.type == VGIC_V2)
639 vgic_v2_clear_lr(vcpu, lr);
640 else
641 vgic_v3_clear_lr(vcpu, lr);
Marc Zyngier0919e842015-11-26 17:19:25 +0000642}
643
644static inline void vgic_set_underflow(struct kvm_vcpu *vcpu)
645{
Marc Zyngier59529f62015-11-30 13:09:53 +0000646 if (kvm_vgic_global_state.type == VGIC_V2)
647 vgic_v2_set_underflow(vcpu);
648 else
649 vgic_v3_set_underflow(vcpu);
Marc Zyngier0919e842015-11-26 17:19:25 +0000650}
651
652/* Requires the ap_list_lock to be held. */
653static int compute_ap_list_depth(struct kvm_vcpu *vcpu)
654{
655 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
656 struct vgic_irq *irq;
657 int count = 0;
658
659 DEBUG_SPINLOCK_BUG_ON(!spin_is_locked(&vgic_cpu->ap_list_lock));
660
661 list_for_each_entry(irq, &vgic_cpu->ap_list_head, ap_list) {
662 spin_lock(&irq->irq_lock);
663 /* GICv2 SGIs can count for more than one... */
664 if (vgic_irq_is_sgi(irq->intid) && irq->source)
665 count += hweight8(irq->source);
666 else
667 count++;
668 spin_unlock(&irq->irq_lock);
669 }
670 return count;
671}
672
673/* Requires the VCPU's ap_list_lock to be held. */
674static void vgic_flush_lr_state(struct kvm_vcpu *vcpu)
675{
676 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
677 struct vgic_irq *irq;
678 int count = 0;
679
680 DEBUG_SPINLOCK_BUG_ON(!spin_is_locked(&vgic_cpu->ap_list_lock));
681
Christoffer Dall90cac1f2017-03-21 21:16:12 +0100682 if (compute_ap_list_depth(vcpu) > kvm_vgic_global_state.nr_lr)
Marc Zyngier0919e842015-11-26 17:19:25 +0000683 vgic_sort_ap_list(vcpu);
Marc Zyngier0919e842015-11-26 17:19:25 +0000684
685 list_for_each_entry(irq, &vgic_cpu->ap_list_head, ap_list) {
686 spin_lock(&irq->irq_lock);
687
688 if (unlikely(vgic_target_oracle(irq) != vcpu))
689 goto next;
690
691 /*
692 * If we get an SGI with multiple sources, try to get
693 * them in all at once.
694 */
695 do {
696 vgic_populate_lr(vcpu, irq, count++);
697 } while (irq->source && count < kvm_vgic_global_state.nr_lr);
698
699next:
700 spin_unlock(&irq->irq_lock);
701
Christoffer Dall90cac1f2017-03-21 21:16:12 +0100702 if (count == kvm_vgic_global_state.nr_lr) {
703 if (!list_is_last(&irq->ap_list,
704 &vgic_cpu->ap_list_head))
705 vgic_set_underflow(vcpu);
Marc Zyngier0919e842015-11-26 17:19:25 +0000706 break;
Christoffer Dall90cac1f2017-03-21 21:16:12 +0100707 }
Marc Zyngier0919e842015-11-26 17:19:25 +0000708 }
709
710 vcpu->arch.vgic_cpu.used_lrs = count;
711
712 /* Nuke remaining LRs */
713 for ( ; count < kvm_vgic_global_state.nr_lr; count++)
714 vgic_clear_lr(vcpu, count);
715}
716
717/* Sync back the hardware VGIC state into our emulation after a guest's run. */
718void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu)
719{
Shih-Wei Lif6769582016-10-19 18:12:34 +0000720 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
721
Marc Zyngier62775792017-10-27 15:28:50 +0100722 WARN_ON(vgic_v4_sync_hwstate(vcpu));
723
Christoffer Dall8ac76ef2017-03-18 13:48:42 +0100724 /* An empty ap_list_head implies used_lrs == 0 */
725 if (list_empty(&vcpu->arch.vgic_cpu.ap_list_head))
Christoffer Dall0099b772016-09-27 18:53:35 +0200726 return;
727
Christoffer Dall8ac76ef2017-03-18 13:48:42 +0100728 if (vgic_cpu->used_lrs)
729 vgic_fold_lr_state(vcpu);
Marc Zyngier0919e842015-11-26 17:19:25 +0000730 vgic_prune_ap_list(vcpu);
731}
732
733/* Flush our emulation state into the GIC hardware before entering the guest. */
734void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu)
735{
Marc Zyngier62775792017-10-27 15:28:50 +0100736 WARN_ON(vgic_v4_flush_hwstate(vcpu));
737
Shih-Wei Lif6769582016-10-19 18:12:34 +0000738 /*
739 * If there are no virtual interrupts active or pending for this
740 * VCPU, then there is no work to do and we can bail out without
741 * taking any lock. There is a potential race with someone injecting
742 * interrupts to the VCPU, but it is a benign race as the VCPU will
743 * either observe the new interrupt before or after doing this check,
744 * and introducing additional synchronization mechanism doesn't change
745 * this.
746 */
747 if (list_empty(&vcpu->arch.vgic_cpu.ap_list_head))
Christoffer Dall0099b772016-09-27 18:53:35 +0200748 return;
749
Christoffer Dall006df0f2016-10-16 22:19:11 +0200750 DEBUG_SPINLOCK_BUG_ON(!irqs_disabled());
751
Marc Zyngier0919e842015-11-26 17:19:25 +0000752 spin_lock(&vcpu->arch.vgic_cpu.ap_list_lock);
753 vgic_flush_lr_state(vcpu);
754 spin_unlock(&vcpu->arch.vgic_cpu.ap_list_lock);
755}
Eric Auger90eee562015-12-07 15:30:38 +0000756
Christoffer Dall328e5662016-03-24 11:21:04 +0100757void kvm_vgic_load(struct kvm_vcpu *vcpu)
758{
759 if (unlikely(!vgic_initialized(vcpu->kvm)))
760 return;
761
762 if (kvm_vgic_global_state.type == VGIC_V2)
763 vgic_v2_load(vcpu);
764 else
765 vgic_v3_load(vcpu);
766}
767
768void kvm_vgic_put(struct kvm_vcpu *vcpu)
769{
770 if (unlikely(!vgic_initialized(vcpu->kvm)))
771 return;
772
773 if (kvm_vgic_global_state.type == VGIC_V2)
774 vgic_v2_put(vcpu);
775 else
776 vgic_v3_put(vcpu);
777}
778
Eric Auger90eee562015-12-07 15:30:38 +0000779int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu)
780{
781 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
782 struct vgic_irq *irq;
783 bool pending = false;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200784 unsigned long flags;
Eric Auger90eee562015-12-07 15:30:38 +0000785
786 if (!vcpu->kvm->arch.vgic.enabled)
787 return false;
788
Marc Zyngierc9719682017-10-27 15:28:47 +0100789 if (vcpu->arch.vgic_cpu.vgic_v3.its_vpe.pending_last)
790 return true;
791
Christoffer Dall006df0f2016-10-16 22:19:11 +0200792 spin_lock_irqsave(&vgic_cpu->ap_list_lock, flags);
Eric Auger90eee562015-12-07 15:30:38 +0000793
794 list_for_each_entry(irq, &vgic_cpu->ap_list_head, ap_list) {
795 spin_lock(&irq->irq_lock);
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100796 pending = irq_is_pending(irq) && irq->enabled;
Eric Auger90eee562015-12-07 15:30:38 +0000797 spin_unlock(&irq->irq_lock);
798
799 if (pending)
800 break;
801 }
802
Christoffer Dall006df0f2016-10-16 22:19:11 +0200803 spin_unlock_irqrestore(&vgic_cpu->ap_list_lock, flags);
Eric Auger90eee562015-12-07 15:30:38 +0000804
805 return pending;
806}
Marc Zyngier2b0cda82016-04-26 11:06:47 +0100807
808void vgic_kick_vcpus(struct kvm *kvm)
809{
810 struct kvm_vcpu *vcpu;
811 int c;
812
813 /*
814 * We've injected an interrupt, time to find out who deserves
815 * a good kick...
816 */
817 kvm_for_each_vcpu(c, vcpu, kvm) {
Andrew Jones325f9c62017-06-04 14:43:59 +0200818 if (kvm_vgic_vcpu_pending_irq(vcpu)) {
819 kvm_make_request(KVM_REQ_IRQ_PENDING, vcpu);
Marc Zyngier2b0cda82016-04-26 11:06:47 +0100820 kvm_vcpu_kick(vcpu);
Andrew Jones325f9c62017-06-04 14:43:59 +0200821 }
Marc Zyngier2b0cda82016-04-26 11:06:47 +0100822 }
823}
Andre Przywara568e8c92015-12-22 00:52:33 +0000824
Eric Auger47bbd312017-10-27 15:28:32 +0100825bool kvm_vgic_map_is_active(struct kvm_vcpu *vcpu, unsigned int vintid)
Andre Przywara568e8c92015-12-22 00:52:33 +0000826{
Andre Przywara285a90e2017-11-17 17:58:21 +0000827 struct vgic_irq *irq;
Andre Przywara568e8c92015-12-22 00:52:33 +0000828 bool map_is_active;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200829 unsigned long flags;
Andre Przywara568e8c92015-12-22 00:52:33 +0000830
Christoffer Dallf39d16c2016-10-19 12:40:17 +0200831 if (!vgic_initialized(vcpu->kvm))
832 return false;
833
Andre Przywara285a90e2017-11-17 17:58:21 +0000834 irq = vgic_get_irq(vcpu->kvm, vcpu, vintid);
Christoffer Dall006df0f2016-10-16 22:19:11 +0200835 spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywara568e8c92015-12-22 00:52:33 +0000836 map_is_active = irq->hw && irq->active;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200837 spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100838 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara568e8c92015-12-22 00:52:33 +0000839
840 return map_is_active;
841}
Andre Przywara0e4e82f2016-07-15 12:43:38 +0100842