blob: 13d4b38a94ec4b81af13cd739497ae6db9640a55 [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Christoffer Dall64a959d2015-11-24 16:51:12 +01002/*
3 * Copyright (C) 2015, 2016 ARM Ltd.
Christoffer Dall64a959d2015-11-24 16:51:12 +01004 */
5
Mark Rutland41b87592018-04-25 17:13:41 +01006#include <linux/interrupt.h>
7#include <linux/irq.h>
Christoffer Dall64a959d2015-11-24 16:51:12 +01008#include <linux/kvm.h>
9#include <linux/kvm_host.h>
Christoffer Dall8e444742015-11-25 10:02:16 -080010#include <linux/list_sort.h>
Mark Rutland41b87592018-04-25 17:13:41 +010011#include <linux/nospec.h>
12
Christoffer Dall771621b2017-10-04 23:42:32 +020013#include <asm/kvm_hyp.h>
Christoffer Dall64a959d2015-11-24 16:51:12 +010014
15#include "vgic.h"
16
Christoffer Dall81eeb952015-11-25 10:02:16 -080017#define CREATE_TRACE_POINTS
Christoffer Dall35d2d5d2017-05-04 13:54:17 +020018#include "trace.h"
Christoffer Dall81eeb952015-11-25 10:02:16 -080019
Ard Biesheuvel63d7c6a2017-03-09 21:51:59 +010020struct vgic_global kvm_vgic_global_state __ro_after_init = {
21 .gicv3_cpuif = STATIC_KEY_FALSE_INIT,
22};
Christoffer Dall64a959d2015-11-24 16:51:12 +010023
Christoffer Dall81eeb952015-11-25 10:02:16 -080024/*
25 * Locking order is always:
Christoffer Dallabd72292017-05-06 20:01:24 +020026 * kvm->lock (mutex)
27 * its->cmd_lock (mutex)
28 * its->its_lock (mutex)
Andre Przywara388d4352018-05-11 15:20:12 +010029 * vgic_cpu->ap_list_lock must be taken with IRQs disabled
30 * kvm->lpi_list_lock must be taken with IRQs disabled
31 * vgic_irq->irq_lock must be taken with IRQs disabled
32 *
33 * As the ap_list_lock might be taken from the timer interrupt handler,
34 * we have to disable IRQs before taking this lock and everything lower
35 * than it.
Christoffer Dall81eeb952015-11-25 10:02:16 -080036 *
Andre Przywara424c3382016-07-15 12:43:32 +010037 * If you need to take multiple locks, always take the upper lock first,
38 * then the lower ones, e.g. first take the its_lock, then the irq_lock.
39 * If you are already holding a lock and need to take a higher one, you
40 * have to drop the lower ranking lock first and re-aquire it after having
41 * taken the upper one.
Christoffer Dall81eeb952015-11-25 10:02:16 -080042 *
43 * When taking more than one ap_list_lock at the same time, always take the
44 * lowest numbered VCPU's ap_list_lock first, so:
45 * vcpuX->vcpu_id < vcpuY->vcpu_id:
Julien Thierrye08d8d22019-01-07 15:06:17 +000046 * raw_spin_lock(vcpuX->arch.vgic_cpu.ap_list_lock);
47 * raw_spin_lock(vcpuY->arch.vgic_cpu.ap_list_lock);
Christoffer Dall006df0f2016-10-16 22:19:11 +020048 *
49 * Since the VGIC must support injecting virtual interrupts from ISRs, we have
Julien Thierrye08d8d22019-01-07 15:06:17 +000050 * to use the raw_spin_lock_irqsave/raw_spin_unlock_irqrestore versions of outer
Christoffer Dall006df0f2016-10-16 22:19:11 +020051 * spinlocks for any lock that may be taken while injecting an interrupt.
Christoffer Dall81eeb952015-11-25 10:02:16 -080052 */
53
Andre Przywara38024112016-07-15 12:43:33 +010054/*
55 * Iterate over the VM's list of mapped LPIs to find the one with a
56 * matching interrupt ID and return a reference to the IRQ structure.
57 */
58static struct vgic_irq *vgic_get_lpi(struct kvm *kvm, u32 intid)
59{
60 struct vgic_dist *dist = &kvm->arch.vgic;
61 struct vgic_irq *irq = NULL;
Andre Przywara388d4352018-05-11 15:20:12 +010062 unsigned long flags;
Andre Przywara38024112016-07-15 12:43:33 +010063
Julien Thierryfc3bc472019-01-07 15:06:16 +000064 raw_spin_lock_irqsave(&dist->lpi_list_lock, flags);
Andre Przywara38024112016-07-15 12:43:33 +010065
66 list_for_each_entry(irq, &dist->lpi_list_head, lpi_list) {
67 if (irq->intid != intid)
68 continue;
69
70 /*
71 * This increases the refcount, the caller is expected to
72 * call vgic_put_irq() later once it's finished with the IRQ.
73 */
Marc Zyngierd97594e2016-07-17 11:27:23 +010074 vgic_get_irq_kref(irq);
Andre Przywara38024112016-07-15 12:43:33 +010075 goto out_unlock;
76 }
77 irq = NULL;
78
79out_unlock:
Julien Thierryfc3bc472019-01-07 15:06:16 +000080 raw_spin_unlock_irqrestore(&dist->lpi_list_lock, flags);
Andre Przywara38024112016-07-15 12:43:33 +010081
82 return irq;
83}
84
85/*
86 * This looks up the virtual interrupt ID to get the corresponding
87 * struct vgic_irq. It also increases the refcount, so any caller is expected
88 * to call vgic_put_irq() once it's finished with this IRQ.
89 */
Christoffer Dall64a959d2015-11-24 16:51:12 +010090struct vgic_irq *vgic_get_irq(struct kvm *kvm, struct kvm_vcpu *vcpu,
91 u32 intid)
92{
93 /* SGIs and PPIs */
Mark Rutland41b87592018-04-25 17:13:41 +010094 if (intid <= VGIC_MAX_PRIVATE) {
Gustavo A. R. Silvac23b2e6f2018-12-12 14:11:23 -060095 intid = array_index_nospec(intid, VGIC_MAX_PRIVATE + 1);
Christoffer Dall64a959d2015-11-24 16:51:12 +010096 return &vcpu->arch.vgic_cpu.private_irqs[intid];
Mark Rutland41b87592018-04-25 17:13:41 +010097 }
Christoffer Dall64a959d2015-11-24 16:51:12 +010098
99 /* SPIs */
Marc Zyngierbea2ef82018-12-04 17:11:19 +0000100 if (intid < (kvm->arch.vgic.nr_spis + VGIC_NR_PRIVATE_IRQS)) {
101 intid = array_index_nospec(intid, kvm->arch.vgic.nr_spis + VGIC_NR_PRIVATE_IRQS);
Christoffer Dall64a959d2015-11-24 16:51:12 +0100102 return &kvm->arch.vgic.spis[intid - VGIC_NR_PRIVATE_IRQS];
Mark Rutland41b87592018-04-25 17:13:41 +0100103 }
Christoffer Dall64a959d2015-11-24 16:51:12 +0100104
Andre Przywara38024112016-07-15 12:43:33 +0100105 /* LPIs */
Christoffer Dall64a959d2015-11-24 16:51:12 +0100106 if (intid >= VGIC_MIN_LPI)
Andre Przywara38024112016-07-15 12:43:33 +0100107 return vgic_get_lpi(kvm, intid);
Christoffer Dall64a959d2015-11-24 16:51:12 +0100108
109 WARN(1, "Looking up struct vgic_irq for reserved INTID");
110 return NULL;
111}
Christoffer Dall81eeb952015-11-25 10:02:16 -0800112
Andre Przywara38024112016-07-15 12:43:33 +0100113/*
114 * We can't do anything in here, because we lack the kvm pointer to
115 * lock and remove the item from the lpi_list. So we keep this function
116 * empty and use the return value of kref_put() to trigger the freeing.
117 */
Andre Przywara5dd4b922016-07-15 12:43:27 +0100118static void vgic_irq_release(struct kref *ref)
119{
Andre Przywara5dd4b922016-07-15 12:43:27 +0100120}
121
122void vgic_put_irq(struct kvm *kvm, struct vgic_irq *irq)
123{
Christoffer Dall2cccbb32016-08-02 22:05:42 +0200124 struct vgic_dist *dist = &kvm->arch.vgic;
Andre Przywara388d4352018-05-11 15:20:12 +0100125 unsigned long flags;
Andre Przywara38024112016-07-15 12:43:33 +0100126
Andre Przywara5dd4b922016-07-15 12:43:27 +0100127 if (irq->intid < VGIC_MIN_LPI)
128 return;
129
Julien Thierryfc3bc472019-01-07 15:06:16 +0000130 raw_spin_lock_irqsave(&dist->lpi_list_lock, flags);
Christoffer Dall2cccbb32016-08-02 22:05:42 +0200131 if (!kref_put(&irq->refcount, vgic_irq_release)) {
Julien Thierryfc3bc472019-01-07 15:06:16 +0000132 raw_spin_unlock_irqrestore(&dist->lpi_list_lock, flags);
Christoffer Dall2cccbb32016-08-02 22:05:42 +0200133 return;
134 };
135
Andre Przywara38024112016-07-15 12:43:33 +0100136 list_del(&irq->lpi_list);
137 dist->lpi_list_count--;
Julien Thierryfc3bc472019-01-07 15:06:16 +0000138 raw_spin_unlock_irqrestore(&dist->lpi_list_lock, flags);
Andre Przywara38024112016-07-15 12:43:33 +0100139
140 kfree(irq);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100141}
142
Marc Zyngier96085b92019-04-02 06:36:23 +0100143void vgic_flush_pending_lpis(struct kvm_vcpu *vcpu)
144{
145 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
146 struct vgic_irq *irq, *tmp;
147 unsigned long flags;
148
149 raw_spin_lock_irqsave(&vgic_cpu->ap_list_lock, flags);
150
151 list_for_each_entry_safe(irq, tmp, &vgic_cpu->ap_list_head, ap_list) {
152 if (irq->intid >= VGIC_MIN_LPI) {
153 raw_spin_lock(&irq->irq_lock);
154 list_del(&irq->ap_list);
155 irq->vcpu = NULL;
156 raw_spin_unlock(&irq->irq_lock);
157 vgic_put_irq(vcpu->kvm, irq);
158 }
159 }
160
161 raw_spin_unlock_irqrestore(&vgic_cpu->ap_list_lock, flags);
162}
163
Christoffer Dalldf635c52017-09-01 16:25:12 +0200164void vgic_irq_set_phys_pending(struct vgic_irq *irq, bool pending)
165{
166 WARN_ON(irq_set_irqchip_state(irq->host_irq,
167 IRQCHIP_STATE_PENDING,
168 pending));
169}
170
Christoffer Dalle40cc572017-08-29 10:40:44 +0200171bool vgic_get_phys_line_level(struct vgic_irq *irq)
172{
173 bool line_level;
174
175 BUG_ON(!irq->hw);
176
Christoffer Dallb6909a62017-10-27 19:30:09 +0200177 if (irq->get_input_level)
178 return irq->get_input_level(irq->intid);
179
Christoffer Dalle40cc572017-08-29 10:40:44 +0200180 WARN_ON(irq_get_irqchip_state(irq->host_irq,
181 IRQCHIP_STATE_PENDING,
182 &line_level));
183 return line_level;
184}
185
186/* Set/Clear the physical active state */
187void vgic_irq_set_phys_active(struct vgic_irq *irq, bool active)
188{
189
190 BUG_ON(!irq->hw);
191 WARN_ON(irq_set_irqchip_state(irq->host_irq,
192 IRQCHIP_STATE_ACTIVE,
193 active));
194}
195
Christoffer Dall81eeb952015-11-25 10:02:16 -0800196/**
197 * kvm_vgic_target_oracle - compute the target vcpu for an irq
198 *
199 * @irq: The irq to route. Must be already locked.
200 *
201 * Based on the current state of the interrupt (enabled, pending,
202 * active, vcpu and target_vcpu), compute the next vcpu this should be
203 * given to. Return NULL if this shouldn't be injected at all.
204 *
205 * Requires the IRQ lock to be held.
206 */
207static struct kvm_vcpu *vgic_target_oracle(struct vgic_irq *irq)
208{
Lance Royd4d592a2018-10-04 23:45:50 -0700209 lockdep_assert_held(&irq->irq_lock);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800210
211 /* If the interrupt is active, it must stay on the current vcpu */
212 if (irq->active)
213 return irq->vcpu ? : irq->target_vcpu;
214
215 /*
216 * If the IRQ is not active but enabled and pending, we should direct
217 * it to its configured target VCPU.
218 * If the distributor is disabled, pending interrupts shouldn't be
219 * forwarded.
220 */
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100221 if (irq->enabled && irq_is_pending(irq)) {
Christoffer Dall81eeb952015-11-25 10:02:16 -0800222 if (unlikely(irq->target_vcpu &&
223 !irq->target_vcpu->kvm->arch.vgic.enabled))
224 return NULL;
225
226 return irq->target_vcpu;
227 }
228
229 /* If neither active nor pending and enabled, then this IRQ should not
230 * be queued to any VCPU.
231 */
232 return NULL;
233}
234
235/*
Christoffer Dall8e444742015-11-25 10:02:16 -0800236 * The order of items in the ap_lists defines how we'll pack things in LRs as
237 * well, the first items in the list being the first things populated in the
238 * LRs.
239 *
240 * A hard rule is that active interrupts can never be pushed out of the LRs
241 * (and therefore take priority) since we cannot reliably trap on deactivation
242 * of IRQs and therefore they have to be present in the LRs.
243 *
244 * Otherwise things should be sorted by the priority field and the GIC
245 * hardware support will take care of preemption of priority groups etc.
246 *
247 * Return negative if "a" sorts before "b", 0 to preserve order, and positive
248 * to sort "b" before "a".
249 */
250static int vgic_irq_cmp(void *priv, struct list_head *a, struct list_head *b)
251{
252 struct vgic_irq *irqa = container_of(a, struct vgic_irq, ap_list);
253 struct vgic_irq *irqb = container_of(b, struct vgic_irq, ap_list);
254 bool penda, pendb;
255 int ret;
256
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000257 raw_spin_lock(&irqa->irq_lock);
258 raw_spin_lock_nested(&irqb->irq_lock, SINGLE_DEPTH_NESTING);
Christoffer Dall8e444742015-11-25 10:02:16 -0800259
260 if (irqa->active || irqb->active) {
261 ret = (int)irqb->active - (int)irqa->active;
262 goto out;
263 }
264
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100265 penda = irqa->enabled && irq_is_pending(irqa);
266 pendb = irqb->enabled && irq_is_pending(irqb);
Christoffer Dall8e444742015-11-25 10:02:16 -0800267
268 if (!penda || !pendb) {
269 ret = (int)pendb - (int)penda;
270 goto out;
271 }
272
273 /* Both pending and enabled, sort by priority */
274 ret = irqa->priority - irqb->priority;
275out:
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000276 raw_spin_unlock(&irqb->irq_lock);
277 raw_spin_unlock(&irqa->irq_lock);
Christoffer Dall8e444742015-11-25 10:02:16 -0800278 return ret;
279}
280
281/* Must be called with the ap_list_lock held */
282static void vgic_sort_ap_list(struct kvm_vcpu *vcpu)
283{
284 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
285
Lance Royd4d592a2018-10-04 23:45:50 -0700286 lockdep_assert_held(&vgic_cpu->ap_list_lock);
Christoffer Dall8e444742015-11-25 10:02:16 -0800287
288 list_sort(NULL, &vgic_cpu->ap_list_head, vgic_irq_cmp);
289}
290
291/*
Christoffer Dall81eeb952015-11-25 10:02:16 -0800292 * Only valid injection if changing level for level-triggered IRQs or for a
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200293 * rising edge, and in-kernel connected IRQ lines can only be controlled by
294 * their owner.
Christoffer Dall81eeb952015-11-25 10:02:16 -0800295 */
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200296static bool vgic_validate_injection(struct vgic_irq *irq, bool level, void *owner)
Christoffer Dall81eeb952015-11-25 10:02:16 -0800297{
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200298 if (irq->owner != owner)
299 return false;
300
Christoffer Dall81eeb952015-11-25 10:02:16 -0800301 switch (irq->config) {
302 case VGIC_CONFIG_LEVEL:
303 return irq->line_level != level;
304 case VGIC_CONFIG_EDGE:
305 return level;
306 }
307
308 return false;
309}
310
311/*
312 * Check whether an IRQ needs to (and can) be queued to a VCPU's ap list.
313 * Do the queuing if necessary, taking the right locks in the right order.
314 * Returns true when the IRQ was queued, false otherwise.
315 *
316 * Needs to be entered with the IRQ lock already held, but will return
317 * with all locks dropped.
318 */
Christoffer Dall006df0f2016-10-16 22:19:11 +0200319bool vgic_queue_irq_unlock(struct kvm *kvm, struct vgic_irq *irq,
320 unsigned long flags)
Christoffer Dall81eeb952015-11-25 10:02:16 -0800321{
322 struct kvm_vcpu *vcpu;
323
Lance Royd4d592a2018-10-04 23:45:50 -0700324 lockdep_assert_held(&irq->irq_lock);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800325
326retry:
327 vcpu = vgic_target_oracle(irq);
328 if (irq->vcpu || !vcpu) {
329 /*
330 * If this IRQ is already on a VCPU's ap_list, then it
331 * cannot be moved or modified and there is no more work for
332 * us to do.
333 *
334 * Otherwise, if the irq is not pending and enabled, it does
335 * not need to be inserted into an ap_list and there is also
336 * no more work for us to do.
337 */
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000338 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Shih-Wei Lid42c7972016-10-27 15:08:13 +0000339
340 /*
341 * We have to kick the VCPU here, because we could be
342 * queueing an edge-triggered interrupt for which we
343 * get no EOI maintenance interrupt. In that case,
344 * while the IRQ is already on the VCPU's AP list, the
345 * VCPU could have EOI'ed the original interrupt and
346 * won't see this one until it exits for some other
347 * reason.
348 */
Andrew Jones325f9c62017-06-04 14:43:59 +0200349 if (vcpu) {
350 kvm_make_request(KVM_REQ_IRQ_PENDING, vcpu);
Shih-Wei Lid42c7972016-10-27 15:08:13 +0000351 kvm_vcpu_kick(vcpu);
Andrew Jones325f9c62017-06-04 14:43:59 +0200352 }
Christoffer Dall81eeb952015-11-25 10:02:16 -0800353 return false;
354 }
355
356 /*
357 * We must unlock the irq lock to take the ap_list_lock where
358 * we are going to insert this new pending interrupt.
359 */
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000360 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800361
362 /* someone can do stuff here, which we re-check below */
363
Julien Thierrye08d8d22019-01-07 15:06:17 +0000364 raw_spin_lock_irqsave(&vcpu->arch.vgic_cpu.ap_list_lock, flags);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000365 raw_spin_lock(&irq->irq_lock);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800366
367 /*
368 * Did something change behind our backs?
369 *
370 * There are two cases:
371 * 1) The irq lost its pending state or was disabled behind our
372 * backs and/or it was queued to another VCPU's ap_list.
373 * 2) Someone changed the affinity on this irq behind our
374 * backs and we are now holding the wrong ap_list_lock.
375 *
376 * In both cases, drop the locks and retry.
377 */
378
379 if (unlikely(irq->vcpu || vcpu != vgic_target_oracle(irq))) {
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000380 raw_spin_unlock(&irq->irq_lock);
Julien Thierrye08d8d22019-01-07 15:06:17 +0000381 raw_spin_unlock_irqrestore(&vcpu->arch.vgic_cpu.ap_list_lock,
382 flags);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800383
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000384 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800385 goto retry;
386 }
387
Andre Przywara5dd4b922016-07-15 12:43:27 +0100388 /*
389 * Grab a reference to the irq to reflect the fact that it is
390 * now in the ap_list.
391 */
392 vgic_get_irq_kref(irq);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800393 list_add_tail(&irq->ap_list, &vcpu->arch.vgic_cpu.ap_list_head);
394 irq->vcpu = vcpu;
395
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000396 raw_spin_unlock(&irq->irq_lock);
Julien Thierrye08d8d22019-01-07 15:06:17 +0000397 raw_spin_unlock_irqrestore(&vcpu->arch.vgic_cpu.ap_list_lock, flags);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800398
Andrew Jones325f9c62017-06-04 14:43:59 +0200399 kvm_make_request(KVM_REQ_IRQ_PENDING, vcpu);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800400 kvm_vcpu_kick(vcpu);
401
402 return true;
403}
404
Christoffer Dall11710de2017-02-01 11:03:45 +0100405/**
406 * kvm_vgic_inject_irq - Inject an IRQ from a device to the vgic
407 * @kvm: The VM structure pointer
408 * @cpuid: The CPU for PPIs
409 * @intid: The INTID to inject a new state to.
410 * @level: Edge-triggered: true: to trigger the interrupt
411 * false: to ignore the call
412 * Level-sensitive true: raise the input signal
413 * false: lower the input signal
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200414 * @owner: The opaque pointer to the owner of the IRQ being raised to verify
415 * that the caller is allowed to inject this IRQ. Userspace
416 * injections will have owner == NULL.
Christoffer Dall11710de2017-02-01 11:03:45 +0100417 *
418 * The VGIC is not concerned with devices being active-LOW or active-HIGH for
419 * level-sensitive interrupts. You can think of the level parameter as 1
420 * being HIGH and 0 being LOW and all devices being active-HIGH.
421 */
422int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid, unsigned int intid,
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200423 bool level, void *owner)
Christoffer Dall81eeb952015-11-25 10:02:16 -0800424{
425 struct kvm_vcpu *vcpu;
426 struct vgic_irq *irq;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200427 unsigned long flags;
Christoffer Dall81eeb952015-11-25 10:02:16 -0800428 int ret;
429
430 trace_vgic_update_irq_pending(cpuid, intid, level);
431
Eric Augerad275b8b2015-12-21 18:09:38 +0100432 ret = vgic_lazy_init(kvm);
433 if (ret)
434 return ret;
435
Christoffer Dall81eeb952015-11-25 10:02:16 -0800436 vcpu = kvm_get_vcpu(kvm, cpuid);
437 if (!vcpu && intid < VGIC_NR_PRIVATE_IRQS)
438 return -EINVAL;
439
440 irq = vgic_get_irq(kvm, vcpu, intid);
441 if (!irq)
442 return -EINVAL;
443
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000444 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800445
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200446 if (!vgic_validate_injection(irq, level, owner)) {
Christoffer Dall81eeb952015-11-25 10:02:16 -0800447 /* Nothing to see here, move along... */
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000448 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100449 vgic_put_irq(kvm, irq);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800450 return 0;
451 }
452
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100453 if (irq->config == VGIC_CONFIG_LEVEL)
Christoffer Dall81eeb952015-11-25 10:02:16 -0800454 irq->line_level = level;
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100455 else
456 irq->pending_latch = true;
Christoffer Dall81eeb952015-11-25 10:02:16 -0800457
Christoffer Dall006df0f2016-10-16 22:19:11 +0200458 vgic_queue_irq_unlock(kvm, irq, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100459 vgic_put_irq(kvm, irq);
Christoffer Dall81eeb952015-11-25 10:02:16 -0800460
461 return 0;
462}
463
Eric Auger47bbd312017-10-27 15:28:32 +0100464/* @irq->irq_lock must be held */
465static int kvm_vgic_map_irq(struct kvm_vcpu *vcpu, struct vgic_irq *irq,
Christoffer Dallb6909a62017-10-27 19:30:09 +0200466 unsigned int host_irq,
467 bool (*get_input_level)(int vindid))
Andre Przywara568e8c92015-12-22 00:52:33 +0000468{
Eric Auger47bbd312017-10-27 15:28:32 +0100469 struct irq_desc *desc;
470 struct irq_data *data;
471
472 /*
473 * Find the physical IRQ number corresponding to @host_irq
474 */
475 desc = irq_to_desc(host_irq);
476 if (!desc) {
477 kvm_err("%s: no interrupt descriptor\n", __func__);
478 return -EINVAL;
479 }
480 data = irq_desc_get_irq_data(desc);
481 while (data->parent_data)
482 data = data->parent_data;
483
484 irq->hw = true;
485 irq->host_irq = host_irq;
486 irq->hwintid = data->hwirq;
Christoffer Dallb6909a62017-10-27 19:30:09 +0200487 irq->get_input_level = get_input_level;
Eric Auger47bbd312017-10-27 15:28:32 +0100488 return 0;
489}
490
491/* @irq->irq_lock must be held */
492static inline void kvm_vgic_unmap_irq(struct vgic_irq *irq)
493{
494 irq->hw = false;
495 irq->hwintid = 0;
Christoffer Dallb6909a62017-10-27 19:30:09 +0200496 irq->get_input_level = NULL;
Eric Auger47bbd312017-10-27 15:28:32 +0100497}
498
499int kvm_vgic_map_phys_irq(struct kvm_vcpu *vcpu, unsigned int host_irq,
Christoffer Dallb6909a62017-10-27 19:30:09 +0200500 u32 vintid, bool (*get_input_level)(int vindid))
Eric Auger47bbd312017-10-27 15:28:32 +0100501{
502 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, vintid);
Christoffer Dall006df0f2016-10-16 22:19:11 +0200503 unsigned long flags;
Eric Auger47bbd312017-10-27 15:28:32 +0100504 int ret;
Andre Przywara568e8c92015-12-22 00:52:33 +0000505
506 BUG_ON(!irq);
507
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000508 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dallb6909a62017-10-27 19:30:09 +0200509 ret = kvm_vgic_map_irq(vcpu, irq, host_irq, get_input_level);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000510 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100511 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara568e8c92015-12-22 00:52:33 +0000512
Eric Auger47bbd312017-10-27 15:28:32 +0100513 return ret;
Andre Przywara568e8c92015-12-22 00:52:33 +0000514}
515
Christoffer Dall413aa802018-03-05 11:36:38 +0100516/**
517 * kvm_vgic_reset_mapped_irq - Reset a mapped IRQ
518 * @vcpu: The VCPU pointer
519 * @vintid: The INTID of the interrupt
520 *
521 * Reset the active and pending states of a mapped interrupt. Kernel
522 * subsystems injecting mapped interrupts should reset their interrupt lines
523 * when we are doing a reset of the VM.
524 */
525void kvm_vgic_reset_mapped_irq(struct kvm_vcpu *vcpu, u32 vintid)
526{
527 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, vintid);
528 unsigned long flags;
529
530 if (!irq->hw)
531 goto out;
532
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000533 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dall413aa802018-03-05 11:36:38 +0100534 irq->active = false;
535 irq->pending_latch = false;
536 irq->line_level = false;
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000537 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Christoffer Dall413aa802018-03-05 11:36:38 +0100538out:
539 vgic_put_irq(vcpu->kvm, irq);
540}
541
Eric Auger47bbd312017-10-27 15:28:32 +0100542int kvm_vgic_unmap_phys_irq(struct kvm_vcpu *vcpu, unsigned int vintid)
Andre Przywara568e8c92015-12-22 00:52:33 +0000543{
Andre Przywara5dd4b922016-07-15 12:43:27 +0100544 struct vgic_irq *irq;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200545 unsigned long flags;
Andre Przywara568e8c92015-12-22 00:52:33 +0000546
547 if (!vgic_initialized(vcpu->kvm))
548 return -EAGAIN;
549
Eric Auger47bbd312017-10-27 15:28:32 +0100550 irq = vgic_get_irq(vcpu->kvm, vcpu, vintid);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100551 BUG_ON(!irq);
552
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000553 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Eric Auger47bbd312017-10-27 15:28:32 +0100554 kvm_vgic_unmap_irq(irq);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000555 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100556 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara568e8c92015-12-22 00:52:33 +0000557
558 return 0;
559}
560
Marc Zyngier0919e842015-11-26 17:19:25 +0000561/**
Christoffer Dallc6ccd302017-05-04 13:24:20 +0200562 * kvm_vgic_set_owner - Set the owner of an interrupt for a VM
563 *
564 * @vcpu: Pointer to the VCPU (used for PPIs)
565 * @intid: The virtual INTID identifying the interrupt (PPI or SPI)
566 * @owner: Opaque pointer to the owner
567 *
568 * Returns 0 if intid is not already used by another in-kernel device and the
569 * owner is set, otherwise returns an error code.
570 */
571int kvm_vgic_set_owner(struct kvm_vcpu *vcpu, unsigned int intid, void *owner)
572{
573 struct vgic_irq *irq;
Marc Zyngier74658942017-11-30 17:00:30 +0000574 unsigned long flags;
Christoffer Dallc6ccd302017-05-04 13:24:20 +0200575 int ret = 0;
576
577 if (!vgic_initialized(vcpu->kvm))
578 return -EAGAIN;
579
580 /* SGIs and LPIs cannot be wired up to any device */
581 if (!irq_is_ppi(intid) && !vgic_valid_spi(vcpu->kvm, intid))
582 return -EINVAL;
583
584 irq = vgic_get_irq(vcpu->kvm, vcpu, intid);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000585 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dallc6ccd302017-05-04 13:24:20 +0200586 if (irq->owner && irq->owner != owner)
587 ret = -EEXIST;
588 else
589 irq->owner = owner;
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000590 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Christoffer Dallc6ccd302017-05-04 13:24:20 +0200591
592 return ret;
593}
594
595/**
Marc Zyngier0919e842015-11-26 17:19:25 +0000596 * vgic_prune_ap_list - Remove non-relevant interrupts from the list
597 *
598 * @vcpu: The VCPU pointer
599 *
600 * Go over the list of "interesting" interrupts, and prune those that we
601 * won't have to consider in the near future.
602 */
603static void vgic_prune_ap_list(struct kvm_vcpu *vcpu)
604{
605 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
606 struct vgic_irq *irq, *tmp;
Jia Hed0823cb2018-08-03 21:57:04 +0800607
608 DEBUG_SPINLOCK_BUG_ON(!irqs_disabled());
Marc Zyngier0919e842015-11-26 17:19:25 +0000609
610retry:
Julien Thierrye08d8d22019-01-07 15:06:17 +0000611 raw_spin_lock(&vgic_cpu->ap_list_lock);
Marc Zyngier0919e842015-11-26 17:19:25 +0000612
613 list_for_each_entry_safe(irq, tmp, &vgic_cpu->ap_list_head, ap_list) {
614 struct kvm_vcpu *target_vcpu, *vcpuA, *vcpuB;
Andre Przywarabf9a4132018-04-17 11:23:49 +0100615 bool target_vcpu_needs_kick = false;
Marc Zyngier0919e842015-11-26 17:19:25 +0000616
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000617 raw_spin_lock(&irq->irq_lock);
Marc Zyngier0919e842015-11-26 17:19:25 +0000618
619 BUG_ON(vcpu != irq->vcpu);
620
621 target_vcpu = vgic_target_oracle(irq);
622
623 if (!target_vcpu) {
624 /*
625 * We don't need to process this interrupt any
626 * further, move it off the list.
627 */
628 list_del(&irq->ap_list);
629 irq->vcpu = NULL;
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000630 raw_spin_unlock(&irq->irq_lock);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100631
632 /*
633 * This vgic_put_irq call matches the
634 * vgic_get_irq_kref in vgic_queue_irq_unlock,
635 * where we added the LPI to the ap_list. As
636 * we remove the irq from the list, we drop
637 * also drop the refcount.
638 */
639 vgic_put_irq(vcpu->kvm, irq);
Marc Zyngier0919e842015-11-26 17:19:25 +0000640 continue;
641 }
642
643 if (target_vcpu == vcpu) {
644 /* We're on the right CPU */
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000645 raw_spin_unlock(&irq->irq_lock);
Marc Zyngier0919e842015-11-26 17:19:25 +0000646 continue;
647 }
648
649 /* This interrupt looks like it has to be migrated. */
650
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000651 raw_spin_unlock(&irq->irq_lock);
Julien Thierrye08d8d22019-01-07 15:06:17 +0000652 raw_spin_unlock(&vgic_cpu->ap_list_lock);
Marc Zyngier0919e842015-11-26 17:19:25 +0000653
654 /*
655 * Ensure locking order by always locking the smallest
656 * ID first.
657 */
658 if (vcpu->vcpu_id < target_vcpu->vcpu_id) {
659 vcpuA = vcpu;
660 vcpuB = target_vcpu;
661 } else {
662 vcpuA = target_vcpu;
663 vcpuB = vcpu;
664 }
665
Julien Thierrye08d8d22019-01-07 15:06:17 +0000666 raw_spin_lock(&vcpuA->arch.vgic_cpu.ap_list_lock);
667 raw_spin_lock_nested(&vcpuB->arch.vgic_cpu.ap_list_lock,
668 SINGLE_DEPTH_NESTING);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000669 raw_spin_lock(&irq->irq_lock);
Marc Zyngier0919e842015-11-26 17:19:25 +0000670
671 /*
672 * If the affinity has been preserved, move the
673 * interrupt around. Otherwise, it means things have
674 * changed while the interrupt was unlocked, and we
675 * need to replay this.
676 *
677 * In all cases, we cannot trust the list not to have
678 * changed, so we restart from the beginning.
679 */
680 if (target_vcpu == vgic_target_oracle(irq)) {
681 struct vgic_cpu *new_cpu = &target_vcpu->arch.vgic_cpu;
682
683 list_del(&irq->ap_list);
684 irq->vcpu = target_vcpu;
685 list_add_tail(&irq->ap_list, &new_cpu->ap_list_head);
Andre Przywarabf9a4132018-04-17 11:23:49 +0100686 target_vcpu_needs_kick = true;
Marc Zyngier0919e842015-11-26 17:19:25 +0000687 }
688
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000689 raw_spin_unlock(&irq->irq_lock);
Julien Thierrye08d8d22019-01-07 15:06:17 +0000690 raw_spin_unlock(&vcpuB->arch.vgic_cpu.ap_list_lock);
691 raw_spin_unlock(&vcpuA->arch.vgic_cpu.ap_list_lock);
Andre Przywarabf9a4132018-04-17 11:23:49 +0100692
693 if (target_vcpu_needs_kick) {
694 kvm_make_request(KVM_REQ_IRQ_PENDING, target_vcpu);
695 kvm_vcpu_kick(target_vcpu);
696 }
697
Marc Zyngier0919e842015-11-26 17:19:25 +0000698 goto retry;
699 }
700
Julien Thierrye08d8d22019-01-07 15:06:17 +0000701 raw_spin_unlock(&vgic_cpu->ap_list_lock);
Marc Zyngier0919e842015-11-26 17:19:25 +0000702}
703
Marc Zyngier0919e842015-11-26 17:19:25 +0000704static inline void vgic_fold_lr_state(struct kvm_vcpu *vcpu)
705{
Marc Zyngier59529f62015-11-30 13:09:53 +0000706 if (kvm_vgic_global_state.type == VGIC_V2)
707 vgic_v2_fold_lr_state(vcpu);
708 else
709 vgic_v3_fold_lr_state(vcpu);
Marc Zyngier0919e842015-11-26 17:19:25 +0000710}
711
712/* Requires the irq_lock to be held. */
713static inline void vgic_populate_lr(struct kvm_vcpu *vcpu,
714 struct vgic_irq *irq, int lr)
715{
Lance Royd4d592a2018-10-04 23:45:50 -0700716 lockdep_assert_held(&irq->irq_lock);
Marc Zyngier140b0862015-11-26 17:19:25 +0000717
Marc Zyngier59529f62015-11-30 13:09:53 +0000718 if (kvm_vgic_global_state.type == VGIC_V2)
719 vgic_v2_populate_lr(vcpu, irq, lr);
720 else
721 vgic_v3_populate_lr(vcpu, irq, lr);
Marc Zyngier0919e842015-11-26 17:19:25 +0000722}
723
724static inline void vgic_clear_lr(struct kvm_vcpu *vcpu, int lr)
725{
Marc Zyngier59529f62015-11-30 13:09:53 +0000726 if (kvm_vgic_global_state.type == VGIC_V2)
727 vgic_v2_clear_lr(vcpu, lr);
728 else
729 vgic_v3_clear_lr(vcpu, lr);
Marc Zyngier0919e842015-11-26 17:19:25 +0000730}
731
732static inline void vgic_set_underflow(struct kvm_vcpu *vcpu)
733{
Marc Zyngier59529f62015-11-30 13:09:53 +0000734 if (kvm_vgic_global_state.type == VGIC_V2)
735 vgic_v2_set_underflow(vcpu);
736 else
737 vgic_v3_set_underflow(vcpu);
Marc Zyngier0919e842015-11-26 17:19:25 +0000738}
739
740/* Requires the ap_list_lock to be held. */
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000741static int compute_ap_list_depth(struct kvm_vcpu *vcpu,
742 bool *multi_sgi)
Marc Zyngier0919e842015-11-26 17:19:25 +0000743{
744 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
745 struct vgic_irq *irq;
746 int count = 0;
747
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000748 *multi_sgi = false;
749
Lance Royd4d592a2018-10-04 23:45:50 -0700750 lockdep_assert_held(&vgic_cpu->ap_list_lock);
Marc Zyngier0919e842015-11-26 17:19:25 +0000751
752 list_for_each_entry(irq, &vgic_cpu->ap_list_head, ap_list) {
Marc Zyngier53692902018-04-18 10:39:04 +0100753 int w;
754
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000755 raw_spin_lock(&irq->irq_lock);
Marc Zyngier0919e842015-11-26 17:19:25 +0000756 /* GICv2 SGIs can count for more than one... */
Marc Zyngier53692902018-04-18 10:39:04 +0100757 w = vgic_irq_get_lr_count(irq);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000758 raw_spin_unlock(&irq->irq_lock);
Marc Zyngier53692902018-04-18 10:39:04 +0100759
760 count += w;
761 *multi_sgi |= (w > 1);
Marc Zyngier0919e842015-11-26 17:19:25 +0000762 }
763 return count;
764}
765
766/* Requires the VCPU's ap_list_lock to be held. */
767static void vgic_flush_lr_state(struct kvm_vcpu *vcpu)
768{
769 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
770 struct vgic_irq *irq;
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000771 int count;
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000772 bool multi_sgi;
773 u8 prio = 0xff;
Marc Zyngier0919e842015-11-26 17:19:25 +0000774
Lance Royd4d592a2018-10-04 23:45:50 -0700775 lockdep_assert_held(&vgic_cpu->ap_list_lock);
Marc Zyngier0919e842015-11-26 17:19:25 +0000776
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000777 count = compute_ap_list_depth(vcpu, &multi_sgi);
778 if (count > kvm_vgic_global_state.nr_lr || multi_sgi)
Marc Zyngier0919e842015-11-26 17:19:25 +0000779 vgic_sort_ap_list(vcpu);
Marc Zyngier0919e842015-11-26 17:19:25 +0000780
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000781 count = 0;
782
Marc Zyngier0919e842015-11-26 17:19:25 +0000783 list_for_each_entry(irq, &vgic_cpu->ap_list_head, ap_list) {
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000784 raw_spin_lock(&irq->irq_lock);
Marc Zyngier0919e842015-11-26 17:19:25 +0000785
Marc Zyngier0919e842015-11-26 17:19:25 +0000786 /*
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000787 * If we have multi-SGIs in the pipeline, we need to
788 * guarantee that they are all seen before any IRQ of
789 * lower priority. In that case, we need to filter out
790 * these interrupts by exiting early. This is easy as
791 * the AP list has been sorted already.
Marc Zyngier0919e842015-11-26 17:19:25 +0000792 */
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000793 if (multi_sgi && irq->priority > prio) {
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000794 _raw_spin_unlock(&irq->irq_lock);
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000795 break;
796 }
Marc Zyngier0919e842015-11-26 17:19:25 +0000797
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000798 if (likely(vgic_target_oracle(irq) == vcpu)) {
799 vgic_populate_lr(vcpu, irq, count++);
800
Marc Zyngier53692902018-04-18 10:39:04 +0100801 if (irq->source)
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000802 prio = irq->priority;
Marc Zyngier16ca6a62018-03-06 21:48:01 +0000803 }
804
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000805 raw_spin_unlock(&irq->irq_lock);
Marc Zyngier0919e842015-11-26 17:19:25 +0000806
Christoffer Dall90cac1f2017-03-21 21:16:12 +0100807 if (count == kvm_vgic_global_state.nr_lr) {
808 if (!list_is_last(&irq->ap_list,
809 &vgic_cpu->ap_list_head))
810 vgic_set_underflow(vcpu);
Marc Zyngier0919e842015-11-26 17:19:25 +0000811 break;
Christoffer Dall90cac1f2017-03-21 21:16:12 +0100812 }
Marc Zyngier0919e842015-11-26 17:19:25 +0000813 }
814
815 vcpu->arch.vgic_cpu.used_lrs = count;
816
817 /* Nuke remaining LRs */
818 for ( ; count < kvm_vgic_global_state.nr_lr; count++)
819 vgic_clear_lr(vcpu, count);
820}
821
Christoffer Dall771621b2017-10-04 23:42:32 +0200822static inline bool can_access_vgic_from_kernel(void)
823{
824 /*
825 * GICv2 can always be accessed from the kernel because it is
826 * memory-mapped, and VHE systems can access GICv3 EL2 system
827 * registers.
828 */
829 return !static_branch_unlikely(&kvm_vgic_global_state.gicv3_cpuif) || has_vhe();
830}
831
Christoffer Dall75174ba2016-12-22 20:39:10 +0100832static inline void vgic_save_state(struct kvm_vcpu *vcpu)
833{
834 if (!static_branch_unlikely(&kvm_vgic_global_state.gicv3_cpuif))
835 vgic_v2_save_state(vcpu);
Christoffer Dall771621b2017-10-04 23:42:32 +0200836 else
837 __vgic_v3_save_state(vcpu);
Christoffer Dall75174ba2016-12-22 20:39:10 +0100838}
839
Marc Zyngier0919e842015-11-26 17:19:25 +0000840/* Sync back the hardware VGIC state into our emulation after a guest's run. */
841void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu)
842{
Shih-Wei Lif6769582016-10-19 18:12:34 +0000843 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
844
Marc Zyngier62775792017-10-27 15:28:50 +0100845 WARN_ON(vgic_v4_sync_hwstate(vcpu));
846
Christoffer Dall8ac76ef2017-03-18 13:48:42 +0100847 /* An empty ap_list_head implies used_lrs == 0 */
848 if (list_empty(&vcpu->arch.vgic_cpu.ap_list_head))
Christoffer Dall0099b772016-09-27 18:53:35 +0200849 return;
850
Christoffer Dall2d0e63e2017-10-05 17:19:19 +0200851 if (can_access_vgic_from_kernel())
852 vgic_save_state(vcpu);
853
Christoffer Dall8ac76ef2017-03-18 13:48:42 +0100854 if (vgic_cpu->used_lrs)
855 vgic_fold_lr_state(vcpu);
Marc Zyngier0919e842015-11-26 17:19:25 +0000856 vgic_prune_ap_list(vcpu);
857}
858
Christoffer Dall75174ba2016-12-22 20:39:10 +0100859static inline void vgic_restore_state(struct kvm_vcpu *vcpu)
860{
861 if (!static_branch_unlikely(&kvm_vgic_global_state.gicv3_cpuif))
862 vgic_v2_restore_state(vcpu);
Christoffer Dall771621b2017-10-04 23:42:32 +0200863 else
864 __vgic_v3_restore_state(vcpu);
Christoffer Dall75174ba2016-12-22 20:39:10 +0100865}
866
Marc Zyngier0919e842015-11-26 17:19:25 +0000867/* Flush our emulation state into the GIC hardware before entering the guest. */
868void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu)
869{
Marc Zyngier62775792017-10-27 15:28:50 +0100870 WARN_ON(vgic_v4_flush_hwstate(vcpu));
871
Shih-Wei Lif6769582016-10-19 18:12:34 +0000872 /*
873 * If there are no virtual interrupts active or pending for this
874 * VCPU, then there is no work to do and we can bail out without
875 * taking any lock. There is a potential race with someone injecting
876 * interrupts to the VCPU, but it is a benign race as the VCPU will
877 * either observe the new interrupt before or after doing this check,
878 * and introducing additional synchronization mechanism doesn't change
879 * this.
Marc Zyngierca712282019-03-13 18:07:50 +0000880 *
881 * Note that we still need to go through the whole thing if anything
882 * can be directly injected (GICv4).
Shih-Wei Lif6769582016-10-19 18:12:34 +0000883 */
Marc Zyngierca712282019-03-13 18:07:50 +0000884 if (list_empty(&vcpu->arch.vgic_cpu.ap_list_head) &&
885 !vgic_supports_direct_msis(vcpu->kvm))
Christoffer Dall2d0e63e2017-10-05 17:19:19 +0200886 return;
Christoffer Dall0099b772016-09-27 18:53:35 +0200887
Christoffer Dall006df0f2016-10-16 22:19:11 +0200888 DEBUG_SPINLOCK_BUG_ON(!irqs_disabled());
889
Marc Zyngierca712282019-03-13 18:07:50 +0000890 if (!list_empty(&vcpu->arch.vgic_cpu.ap_list_head)) {
891 raw_spin_lock(&vcpu->arch.vgic_cpu.ap_list_lock);
892 vgic_flush_lr_state(vcpu);
893 raw_spin_unlock(&vcpu->arch.vgic_cpu.ap_list_lock);
894 }
Christoffer Dall75174ba2016-12-22 20:39:10 +0100895
Christoffer Dall771621b2017-10-04 23:42:32 +0200896 if (can_access_vgic_from_kernel())
897 vgic_restore_state(vcpu);
Marc Zyngier0919e842015-11-26 17:19:25 +0000898}
Eric Auger90eee562015-12-07 15:30:38 +0000899
Christoffer Dall328e5662016-03-24 11:21:04 +0100900void kvm_vgic_load(struct kvm_vcpu *vcpu)
901{
902 if (unlikely(!vgic_initialized(vcpu->kvm)))
903 return;
904
905 if (kvm_vgic_global_state.type == VGIC_V2)
906 vgic_v2_load(vcpu);
907 else
908 vgic_v3_load(vcpu);
909}
910
911void kvm_vgic_put(struct kvm_vcpu *vcpu)
912{
913 if (unlikely(!vgic_initialized(vcpu->kvm)))
914 return;
915
916 if (kvm_vgic_global_state.type == VGIC_V2)
917 vgic_v2_put(vcpu);
918 else
919 vgic_v3_put(vcpu);
920}
921
Marc Zyngier5eeaf102019-08-02 10:28:32 +0100922void kvm_vgic_vmcr_sync(struct kvm_vcpu *vcpu)
923{
924 if (unlikely(!irqchip_in_kernel(vcpu->kvm)))
925 return;
926
927 if (kvm_vgic_global_state.type == VGIC_V2)
928 vgic_v2_vmcr_sync(vcpu);
929 else
930 vgic_v3_vmcr_sync(vcpu);
931}
932
Eric Auger90eee562015-12-07 15:30:38 +0000933int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu)
934{
935 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
936 struct vgic_irq *irq;
937 bool pending = false;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200938 unsigned long flags;
Christoffer Dall90097822018-12-01 13:21:47 -0800939 struct vgic_vmcr vmcr;
Eric Auger90eee562015-12-07 15:30:38 +0000940
941 if (!vcpu->kvm->arch.vgic.enabled)
942 return false;
943
Marc Zyngierc9719682017-10-27 15:28:47 +0100944 if (vcpu->arch.vgic_cpu.vgic_v3.its_vpe.pending_last)
945 return true;
946
Christoffer Dall90097822018-12-01 13:21:47 -0800947 vgic_get_vmcr(vcpu, &vmcr);
948
Julien Thierrye08d8d22019-01-07 15:06:17 +0000949 raw_spin_lock_irqsave(&vgic_cpu->ap_list_lock, flags);
Eric Auger90eee562015-12-07 15:30:38 +0000950
951 list_for_each_entry(irq, &vgic_cpu->ap_list_head, ap_list) {
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000952 raw_spin_lock(&irq->irq_lock);
Christoffer Dall90097822018-12-01 13:21:47 -0800953 pending = irq_is_pending(irq) && irq->enabled &&
954 !irq->active &&
955 irq->priority < vmcr.pmr;
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000956 raw_spin_unlock(&irq->irq_lock);
Eric Auger90eee562015-12-07 15:30:38 +0000957
958 if (pending)
959 break;
960 }
961
Julien Thierrye08d8d22019-01-07 15:06:17 +0000962 raw_spin_unlock_irqrestore(&vgic_cpu->ap_list_lock, flags);
Eric Auger90eee562015-12-07 15:30:38 +0000963
964 return pending;
965}
Marc Zyngier2b0cda82016-04-26 11:06:47 +0100966
967void vgic_kick_vcpus(struct kvm *kvm)
968{
969 struct kvm_vcpu *vcpu;
970 int c;
971
972 /*
973 * We've injected an interrupt, time to find out who deserves
974 * a good kick...
975 */
976 kvm_for_each_vcpu(c, vcpu, kvm) {
Andrew Jones325f9c62017-06-04 14:43:59 +0200977 if (kvm_vgic_vcpu_pending_irq(vcpu)) {
978 kvm_make_request(KVM_REQ_IRQ_PENDING, vcpu);
Marc Zyngier2b0cda82016-04-26 11:06:47 +0100979 kvm_vcpu_kick(vcpu);
Andrew Jones325f9c62017-06-04 14:43:59 +0200980 }
Marc Zyngier2b0cda82016-04-26 11:06:47 +0100981 }
982}
Andre Przywara568e8c92015-12-22 00:52:33 +0000983
Eric Auger47bbd312017-10-27 15:28:32 +0100984bool kvm_vgic_map_is_active(struct kvm_vcpu *vcpu, unsigned int vintid)
Andre Przywara568e8c92015-12-22 00:52:33 +0000985{
Andre Przywara285a90e2017-11-17 17:58:21 +0000986 struct vgic_irq *irq;
Andre Przywara568e8c92015-12-22 00:52:33 +0000987 bool map_is_active;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200988 unsigned long flags;
Andre Przywara568e8c92015-12-22 00:52:33 +0000989
Christoffer Dallf39d16c2016-10-19 12:40:17 +0200990 if (!vgic_initialized(vcpu->kvm))
991 return false;
992
Andre Przywara285a90e2017-11-17 17:58:21 +0000993 irq = vgic_get_irq(vcpu->kvm, vcpu, vintid);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000994 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywara568e8c92015-12-22 00:52:33 +0000995 map_is_active = irq->hw && irq->active;
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000996 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100997 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara568e8c92015-12-22 00:52:33 +0000998
999 return map_is_active;
1000}