blob: 3ba7278fb533be5acdba3c339358039eb6b472e0 [file] [log] [blame]
Thomas Gleixner1802d0b2019-05-27 08:55:21 +02001// SPDX-License-Identifier: GPL-2.0-only
Marc Zyngier4493b1c2016-04-26 11:06:12 +01002/*
3 * VGIC MMIO handling functions
Marc Zyngier4493b1c2016-04-26 11:06:12 +01004 */
5
6#include <linux/bitops.h>
7#include <linux/bsearch.h>
8#include <linux/kvm.h>
9#include <linux/kvm_host.h>
10#include <kvm/iodev.h>
Christoffer Dalldf635c52017-09-01 16:25:12 +020011#include <kvm/arm_arch_timer.h>
Marc Zyngier4493b1c2016-04-26 11:06:12 +010012#include <kvm/arm_vgic.h>
13
14#include "vgic.h"
15#include "vgic-mmio.h"
16
17unsigned long vgic_mmio_read_raz(struct kvm_vcpu *vcpu,
18 gpa_t addr, unsigned int len)
19{
20 return 0;
21}
22
23unsigned long vgic_mmio_read_rao(struct kvm_vcpu *vcpu,
24 gpa_t addr, unsigned int len)
25{
26 return -1UL;
27}
28
29void vgic_mmio_write_wi(struct kvm_vcpu *vcpu, gpa_t addr,
30 unsigned int len, unsigned long val)
31{
32 /* Ignore */
33}
34
Christoffer Dallc6e09172018-07-16 15:06:23 +020035int vgic_mmio_uaccess_write_wi(struct kvm_vcpu *vcpu, gpa_t addr,
36 unsigned int len, unsigned long val)
37{
38 /* Ignore */
39 return 0;
40}
41
Christoffer Dalld53c2c292018-07-16 15:06:25 +020042unsigned long vgic_mmio_read_group(struct kvm_vcpu *vcpu,
43 gpa_t addr, unsigned int len)
44{
45 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
46 u32 value = 0;
47 int i;
48
49 /* Loop over all IRQs affected by this read */
50 for (i = 0; i < len * 8; i++) {
51 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
52
53 if (irq->group)
54 value |= BIT(i);
55
56 vgic_put_irq(vcpu->kvm, irq);
57 }
58
59 return value;
60}
61
62void vgic_mmio_write_group(struct kvm_vcpu *vcpu, gpa_t addr,
63 unsigned int len, unsigned long val)
64{
65 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
66 int i;
67 unsigned long flags;
68
69 for (i = 0; i < len * 8; i++) {
70 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
71
Julien Thierry8fa3adb2019-01-07 15:06:15 +000072 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dalld53c2c292018-07-16 15:06:25 +020073 irq->group = !!(val & BIT(i));
74 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
75
76 vgic_put_irq(vcpu->kvm, irq);
77 }
78}
79
Andre Przywarafd122e62015-12-01 14:33:05 +000080/*
81 * Read accesses to both GICD_ICENABLER and GICD_ISENABLER return the value
82 * of the enabled bit, so there is only one function for both here.
83 */
84unsigned long vgic_mmio_read_enable(struct kvm_vcpu *vcpu,
85 gpa_t addr, unsigned int len)
86{
87 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
88 u32 value = 0;
89 int i;
90
91 /* Loop over all IRQs affected by this read */
92 for (i = 0; i < len * 8; i++) {
93 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
94
95 if (irq->enabled)
96 value |= (1U << i);
Andre Przywara5dd4b922016-07-15 12:43:27 +010097
98 vgic_put_irq(vcpu->kvm, irq);
Andre Przywarafd122e62015-12-01 14:33:05 +000099 }
100
101 return value;
102}
103
104void vgic_mmio_write_senable(struct kvm_vcpu *vcpu,
105 gpa_t addr, unsigned int len,
106 unsigned long val)
107{
108 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
109 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200110 unsigned long flags;
Andre Przywarafd122e62015-12-01 14:33:05 +0000111
112 for_each_set_bit(i, &val, len * 8) {
113 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
114
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000115 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywarafd122e62015-12-01 14:33:05 +0000116 irq->enabled = true;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200117 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100118
119 vgic_put_irq(vcpu->kvm, irq);
Andre Przywarafd122e62015-12-01 14:33:05 +0000120 }
121}
122
123void vgic_mmio_write_cenable(struct kvm_vcpu *vcpu,
124 gpa_t addr, unsigned int len,
125 unsigned long val)
126{
127 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
128 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200129 unsigned long flags;
Andre Przywarafd122e62015-12-01 14:33:05 +0000130
131 for_each_set_bit(i, &val, len * 8) {
132 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
133
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000134 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywarafd122e62015-12-01 14:33:05 +0000135
136 irq->enabled = false;
137
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000138 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100139 vgic_put_irq(vcpu->kvm, irq);
Andre Przywarafd122e62015-12-01 14:33:05 +0000140 }
141}
142
Andre Przywara96b29802015-12-01 14:33:41 +0000143unsigned long vgic_mmio_read_pending(struct kvm_vcpu *vcpu,
144 gpa_t addr, unsigned int len)
145{
146 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
147 u32 value = 0;
148 int i;
149
150 /* Loop over all IRQs affected by this read */
151 for (i = 0; i < len * 8; i++) {
152 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
Andre Przywara62b06f82018-03-06 09:21:06 +0000153 unsigned long flags;
Andre Przywara96b29802015-12-01 14:33:41 +0000154
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000155 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100156 if (irq_is_pending(irq))
Andre Przywara96b29802015-12-01 14:33:41 +0000157 value |= (1U << i);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000158 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100159
160 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara96b29802015-12-01 14:33:41 +0000161 }
162
163 return value;
164}
165
Christoffer Dall6c1b75212017-09-14 11:08:45 -0700166/*
167 * This function will return the VCPU that performed the MMIO access and
168 * trapped from within the VM, and will return NULL if this is a userspace
169 * access.
170 *
171 * We can disable preemption locally around accessing the per-CPU variable,
172 * and use the resolved vcpu pointer after enabling preemption again, because
173 * even if the current thread is migrated to another CPU, reading the per-CPU
174 * value later will give us the same value as we update the per-CPU variable
175 * in the preempt notifier handlers.
176 */
177static struct kvm_vcpu *vgic_get_mmio_requester_vcpu(void)
178{
179 struct kvm_vcpu *vcpu;
180
181 preempt_disable();
182 vcpu = kvm_arm_get_running_vcpu();
183 preempt_enable();
184 return vcpu;
185}
186
Christoffer Dalldf635c52017-09-01 16:25:12 +0200187/* Must be called with irq->irq_lock held */
188static void vgic_hw_irq_spending(struct kvm_vcpu *vcpu, struct vgic_irq *irq,
189 bool is_uaccess)
190{
191 if (is_uaccess)
192 return;
193
194 irq->pending_latch = true;
195 vgic_irq_set_phys_active(irq, true);
196}
197
Andre Przywara96b29802015-12-01 14:33:41 +0000198void vgic_mmio_write_spending(struct kvm_vcpu *vcpu,
199 gpa_t addr, unsigned int len,
200 unsigned long val)
201{
Christoffer Dalldf635c52017-09-01 16:25:12 +0200202 bool is_uaccess = !vgic_get_mmio_requester_vcpu();
Andre Przywara96b29802015-12-01 14:33:41 +0000203 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
204 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200205 unsigned long flags;
Andre Przywara96b29802015-12-01 14:33:41 +0000206
207 for_each_set_bit(i, &val, len * 8) {
208 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
209
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000210 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dalldf635c52017-09-01 16:25:12 +0200211 if (irq->hw)
212 vgic_hw_irq_spending(vcpu, irq, is_uaccess);
213 else
214 irq->pending_latch = true;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200215 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100216 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara96b29802015-12-01 14:33:41 +0000217 }
218}
219
Christoffer Dalldf635c52017-09-01 16:25:12 +0200220/* Must be called with irq->irq_lock held */
221static void vgic_hw_irq_cpending(struct kvm_vcpu *vcpu, struct vgic_irq *irq,
222 bool is_uaccess)
223{
224 if (is_uaccess)
225 return;
226
227 irq->pending_latch = false;
228
229 /*
230 * We don't want the guest to effectively mask the physical
231 * interrupt by doing a write to SPENDR followed by a write to
232 * CPENDR for HW interrupts, so we clear the active state on
233 * the physical side if the virtual interrupt is not active.
234 * This may lead to taking an additional interrupt on the
235 * host, but that should not be a problem as the worst that
236 * can happen is an additional vgic injection. We also clear
237 * the pending state to maintain proper semantics for edge HW
238 * interrupts.
239 */
240 vgic_irq_set_phys_pending(irq, false);
241 if (!irq->active)
242 vgic_irq_set_phys_active(irq, false);
243}
244
Andre Przywara96b29802015-12-01 14:33:41 +0000245void vgic_mmio_write_cpending(struct kvm_vcpu *vcpu,
246 gpa_t addr, unsigned int len,
247 unsigned long val)
248{
Christoffer Dalldf635c52017-09-01 16:25:12 +0200249 bool is_uaccess = !vgic_get_mmio_requester_vcpu();
Andre Przywara96b29802015-12-01 14:33:41 +0000250 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
251 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200252 unsigned long flags;
Andre Przywara96b29802015-12-01 14:33:41 +0000253
254 for_each_set_bit(i, &val, len * 8) {
255 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
256
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000257 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywara96b29802015-12-01 14:33:41 +0000258
Christoffer Dalldf635c52017-09-01 16:25:12 +0200259 if (irq->hw)
260 vgic_hw_irq_cpending(vcpu, irq, is_uaccess);
261 else
262 irq->pending_latch = false;
Andre Przywara96b29802015-12-01 14:33:41 +0000263
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000264 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100265 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara96b29802015-12-01 14:33:41 +0000266 }
267}
268
Andre Przywara69b6fe02015-12-01 12:40:58 +0000269unsigned long vgic_mmio_read_active(struct kvm_vcpu *vcpu,
270 gpa_t addr, unsigned int len)
271{
272 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
273 u32 value = 0;
274 int i;
275
276 /* Loop over all IRQs affected by this read */
277 for (i = 0; i < len * 8; i++) {
278 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
279
280 if (irq->active)
281 value |= (1U << i);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100282
283 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara69b6fe02015-12-01 12:40:58 +0000284 }
285
286 return value;
287}
288
Christoffer Dalldf635c52017-09-01 16:25:12 +0200289/* Must be called with irq->irq_lock held */
290static void vgic_hw_irq_change_active(struct kvm_vcpu *vcpu, struct vgic_irq *irq,
291 bool active, bool is_uaccess)
292{
293 if (is_uaccess)
294 return;
295
296 irq->active = active;
297 vgic_irq_set_phys_active(irq, active);
298}
299
Christoffer Dall35a2d582016-05-20 15:25:28 +0200300static void vgic_mmio_change_active(struct kvm_vcpu *vcpu, struct vgic_irq *irq,
Christoffer Dalldf635c52017-09-01 16:25:12 +0200301 bool active)
Christoffer Dall35a2d582016-05-20 15:25:28 +0200302{
Christoffer Dall006df0f2016-10-16 22:19:11 +0200303 unsigned long flags;
Christoffer Dall6c1b75212017-09-14 11:08:45 -0700304 struct kvm_vcpu *requester_vcpu = vgic_get_mmio_requester_vcpu();
Jintack Lim370a0ec2017-03-06 05:42:37 -0800305
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000306 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Jintack Lim370a0ec2017-03-06 05:42:37 -0800307
Marc Zyngier53692902018-04-18 10:39:04 +0100308 if (irq->hw) {
Christoffer Dalldf635c52017-09-01 16:25:12 +0200309 vgic_hw_irq_change_active(vcpu, irq, active, !requester_vcpu);
Marc Zyngier53692902018-04-18 10:39:04 +0100310 } else {
311 u32 model = vcpu->kvm->arch.vgic.vgic_model;
Christoffer Dall60c3ab32018-12-11 12:51:03 +0100312 u8 active_source;
Marc Zyngier53692902018-04-18 10:39:04 +0100313
Christoffer Dalldf635c52017-09-01 16:25:12 +0200314 irq->active = active;
Christoffer Dall60c3ab32018-12-11 12:51:03 +0100315
316 /*
317 * The GICv2 architecture indicates that the source CPUID for
318 * an SGI should be provided during an EOI which implies that
319 * the active state is stored somewhere, but at the same time
320 * this state is not architecturally exposed anywhere and we
321 * have no way of knowing the right source.
322 *
323 * This may lead to a VCPU not being able to receive
324 * additional instances of a particular SGI after migration
325 * for a GICv2 VM on some GIC implementations. Oh well.
326 */
327 active_source = (requester_vcpu) ? requester_vcpu->vcpu_id : 0;
328
Marc Zyngier53692902018-04-18 10:39:04 +0100329 if (model == KVM_DEV_TYPE_ARM_VGIC_V2 &&
330 active && vgic_irq_is_sgi(irq->intid))
Christoffer Dall60c3ab32018-12-11 12:51:03 +0100331 irq->active_source = active_source;
Marc Zyngier53692902018-04-18 10:39:04 +0100332 }
Christoffer Dalldf635c52017-09-01 16:25:12 +0200333
334 if (irq->active)
Christoffer Dall006df0f2016-10-16 22:19:11 +0200335 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
Christoffer Dall35a2d582016-05-20 15:25:28 +0200336 else
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000337 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Christoffer Dall35a2d582016-05-20 15:25:28 +0200338}
339
340/*
341 * If we are fiddling with an IRQ's active state, we have to make sure the IRQ
342 * is not queued on some running VCPU's LRs, because then the change to the
343 * active state can be overwritten when the VCPU's state is synced coming back
344 * from the guest.
345 *
346 * For shared interrupts, we have to stop all the VCPUs because interrupts can
347 * be migrated while we don't hold the IRQ locks and we don't want to be
348 * chasing moving targets.
349 *
Christoffer Dallabd72292017-05-06 20:01:24 +0200350 * For private interrupts we don't have to do anything because userspace
351 * accesses to the VGIC state already require all VCPUs to be stopped, and
352 * only the VCPU itself can modify its private interrupts active state, which
353 * guarantees that the VCPU is not running.
Christoffer Dall35a2d582016-05-20 15:25:28 +0200354 */
355static void vgic_change_active_prepare(struct kvm_vcpu *vcpu, u32 intid)
356{
Marc Zyngier107352a2018-12-18 14:59:09 +0000357 if (vcpu->kvm->arch.vgic.vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3 ||
358 intid > VGIC_NR_PRIVATE_IRQS)
Christoffer Dall35a2d582016-05-20 15:25:28 +0200359 kvm_arm_halt_guest(vcpu->kvm);
360}
361
362/* See vgic_change_active_prepare */
363static void vgic_change_active_finish(struct kvm_vcpu *vcpu, u32 intid)
364{
Marc Zyngier107352a2018-12-18 14:59:09 +0000365 if (vcpu->kvm->arch.vgic.vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3 ||
366 intid > VGIC_NR_PRIVATE_IRQS)
Christoffer Dall35a2d582016-05-20 15:25:28 +0200367 kvm_arm_resume_guest(vcpu->kvm);
368}
369
Christoffer Dall31971912017-05-16 09:44:39 +0200370static void __vgic_mmio_write_cactive(struct kvm_vcpu *vcpu,
371 gpa_t addr, unsigned int len,
372 unsigned long val)
Andre Przywara69b6fe02015-12-01 12:40:58 +0000373{
374 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
375 int i;
376
Andre Przywara69b6fe02015-12-01 12:40:58 +0000377 for_each_set_bit(i, &val, len * 8) {
378 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
Christoffer Dall35a2d582016-05-20 15:25:28 +0200379 vgic_mmio_change_active(vcpu, irq, false);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100380 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara69b6fe02015-12-01 12:40:58 +0000381 }
Christoffer Dall31971912017-05-16 09:44:39 +0200382}
383
384void vgic_mmio_write_cactive(struct kvm_vcpu *vcpu,
385 gpa_t addr, unsigned int len,
386 unsigned long val)
387{
388 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
389
Christoffer Dallabd72292017-05-06 20:01:24 +0200390 mutex_lock(&vcpu->kvm->lock);
Christoffer Dall31971912017-05-16 09:44:39 +0200391 vgic_change_active_prepare(vcpu, intid);
392
393 __vgic_mmio_write_cactive(vcpu, addr, len, val);
394
Christoffer Dall35a2d582016-05-20 15:25:28 +0200395 vgic_change_active_finish(vcpu, intid);
Christoffer Dallabd72292017-05-06 20:01:24 +0200396 mutex_unlock(&vcpu->kvm->lock);
Andre Przywara69b6fe02015-12-01 12:40:58 +0000397}
398
Christoffer Dallc6e09172018-07-16 15:06:23 +0200399int vgic_mmio_uaccess_write_cactive(struct kvm_vcpu *vcpu,
Christoffer Dall31971912017-05-16 09:44:39 +0200400 gpa_t addr, unsigned int len,
401 unsigned long val)
402{
403 __vgic_mmio_write_cactive(vcpu, addr, len, val);
Christoffer Dallc6e09172018-07-16 15:06:23 +0200404 return 0;
Christoffer Dall31971912017-05-16 09:44:39 +0200405}
406
407static void __vgic_mmio_write_sactive(struct kvm_vcpu *vcpu,
408 gpa_t addr, unsigned int len,
409 unsigned long val)
410{
411 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
412 int i;
413
414 for_each_set_bit(i, &val, len * 8) {
415 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
416 vgic_mmio_change_active(vcpu, irq, true);
417 vgic_put_irq(vcpu->kvm, irq);
418 }
419}
420
Andre Przywara69b6fe02015-12-01 12:40:58 +0000421void vgic_mmio_write_sactive(struct kvm_vcpu *vcpu,
422 gpa_t addr, unsigned int len,
423 unsigned long val)
424{
425 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
Andre Przywara69b6fe02015-12-01 12:40:58 +0000426
Christoffer Dallabd72292017-05-06 20:01:24 +0200427 mutex_lock(&vcpu->kvm->lock);
Christoffer Dall35a2d582016-05-20 15:25:28 +0200428 vgic_change_active_prepare(vcpu, intid);
Christoffer Dall31971912017-05-16 09:44:39 +0200429
430 __vgic_mmio_write_sactive(vcpu, addr, len, val);
431
Christoffer Dall35a2d582016-05-20 15:25:28 +0200432 vgic_change_active_finish(vcpu, intid);
Christoffer Dallabd72292017-05-06 20:01:24 +0200433 mutex_unlock(&vcpu->kvm->lock);
Andre Przywara69b6fe02015-12-01 12:40:58 +0000434}
435
Christoffer Dallc6e09172018-07-16 15:06:23 +0200436int vgic_mmio_uaccess_write_sactive(struct kvm_vcpu *vcpu,
Christoffer Dall31971912017-05-16 09:44:39 +0200437 gpa_t addr, unsigned int len,
438 unsigned long val)
439{
440 __vgic_mmio_write_sactive(vcpu, addr, len, val);
Christoffer Dallc6e09172018-07-16 15:06:23 +0200441 return 0;
Christoffer Dall31971912017-05-16 09:44:39 +0200442}
443
Andre Przywara055658b2015-12-01 14:34:02 +0000444unsigned long vgic_mmio_read_priority(struct kvm_vcpu *vcpu,
445 gpa_t addr, unsigned int len)
446{
447 u32 intid = VGIC_ADDR_TO_INTID(addr, 8);
448 int i;
449 u64 val = 0;
450
451 for (i = 0; i < len; i++) {
452 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
453
454 val |= (u64)irq->priority << (i * 8);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100455
456 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara055658b2015-12-01 14:34:02 +0000457 }
458
459 return val;
460}
461
462/*
463 * We currently don't handle changing the priority of an interrupt that
464 * is already pending on a VCPU. If there is a need for this, we would
465 * need to make this VCPU exit and re-evaluate the priorities, potentially
466 * leading to this interrupt getting presented now to the guest (if it has
467 * been masked by the priority mask before).
468 */
469void vgic_mmio_write_priority(struct kvm_vcpu *vcpu,
470 gpa_t addr, unsigned int len,
471 unsigned long val)
472{
473 u32 intid = VGIC_ADDR_TO_INTID(addr, 8);
474 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200475 unsigned long flags;
Andre Przywara055658b2015-12-01 14:34:02 +0000476
477 for (i = 0; i < len; i++) {
478 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
479
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000480 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywara055658b2015-12-01 14:34:02 +0000481 /* Narrow the priority range to what we actually support */
482 irq->priority = (val >> (i * 8)) & GENMASK(7, 8 - VGIC_PRI_BITS);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000483 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100484
485 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara055658b2015-12-01 14:34:02 +0000486 }
487}
488
Andre Przywara79717e42015-12-01 12:41:31 +0000489unsigned long vgic_mmio_read_config(struct kvm_vcpu *vcpu,
490 gpa_t addr, unsigned int len)
491{
492 u32 intid = VGIC_ADDR_TO_INTID(addr, 2);
493 u32 value = 0;
494 int i;
495
496 for (i = 0; i < len * 4; i++) {
497 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
498
499 if (irq->config == VGIC_CONFIG_EDGE)
500 value |= (2U << (i * 2));
Andre Przywara5dd4b922016-07-15 12:43:27 +0100501
502 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara79717e42015-12-01 12:41:31 +0000503 }
504
505 return value;
506}
507
508void vgic_mmio_write_config(struct kvm_vcpu *vcpu,
509 gpa_t addr, unsigned int len,
510 unsigned long val)
511{
512 u32 intid = VGIC_ADDR_TO_INTID(addr, 2);
513 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200514 unsigned long flags;
Andre Przywara79717e42015-12-01 12:41:31 +0000515
516 for (i = 0; i < len * 4; i++) {
Andre Przywara5dd4b922016-07-15 12:43:27 +0100517 struct vgic_irq *irq;
Andre Przywara79717e42015-12-01 12:41:31 +0000518
519 /*
520 * The configuration cannot be changed for SGIs in general,
521 * for PPIs this is IMPLEMENTATION DEFINED. The arch timer
522 * code relies on PPIs being level triggered, so we also
523 * make them read-only here.
524 */
525 if (intid + i < VGIC_NR_PRIVATE_IRQS)
526 continue;
527
Andre Przywara5dd4b922016-07-15 12:43:27 +0100528 irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000529 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100530
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100531 if (test_bit(i * 2 + 1, &val))
Andre Przywara79717e42015-12-01 12:41:31 +0000532 irq->config = VGIC_CONFIG_EDGE;
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100533 else
Andre Przywara79717e42015-12-01 12:41:31 +0000534 irq->config = VGIC_CONFIG_LEVEL;
Andre Przywara5dd4b922016-07-15 12:43:27 +0100535
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000536 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100537 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara79717e42015-12-01 12:41:31 +0000538 }
539}
540
Vijaya Kumar Ke96a0062017-01-26 19:50:52 +0530541u64 vgic_read_irq_line_level_info(struct kvm_vcpu *vcpu, u32 intid)
542{
543 int i;
544 u64 val = 0;
545 int nr_irqs = vcpu->kvm->arch.vgic.nr_spis + VGIC_NR_PRIVATE_IRQS;
546
547 for (i = 0; i < 32; i++) {
548 struct vgic_irq *irq;
549
550 if ((intid + i) < VGIC_NR_SGIS || (intid + i) >= nr_irqs)
551 continue;
552
553 irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
554 if (irq->config == VGIC_CONFIG_LEVEL && irq->line_level)
555 val |= (1U << i);
556
557 vgic_put_irq(vcpu->kvm, irq);
558 }
559
560 return val;
561}
562
563void vgic_write_irq_line_level_info(struct kvm_vcpu *vcpu, u32 intid,
564 const u64 val)
565{
566 int i;
567 int nr_irqs = vcpu->kvm->arch.vgic.nr_spis + VGIC_NR_PRIVATE_IRQS;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200568 unsigned long flags;
Vijaya Kumar Ke96a0062017-01-26 19:50:52 +0530569
570 for (i = 0; i < 32; i++) {
571 struct vgic_irq *irq;
572 bool new_level;
573
574 if ((intid + i) < VGIC_NR_SGIS || (intid + i) >= nr_irqs)
575 continue;
576
577 irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
578
579 /*
580 * Line level is set irrespective of irq type
581 * (level or edge) to avoid dependency that VM should
582 * restore irq config before line level.
583 */
584 new_level = !!(val & (1U << i));
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000585 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Vijaya Kumar Ke96a0062017-01-26 19:50:52 +0530586 irq->line_level = new_level;
587 if (new_level)
Christoffer Dall006df0f2016-10-16 22:19:11 +0200588 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
Vijaya Kumar Ke96a0062017-01-26 19:50:52 +0530589 else
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000590 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Vijaya Kumar Ke96a0062017-01-26 19:50:52 +0530591
592 vgic_put_irq(vcpu->kvm, irq);
593 }
594}
595
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100596static int match_region(const void *key, const void *elt)
597{
598 const unsigned int offset = (unsigned long)key;
599 const struct vgic_register_region *region = elt;
600
601 if (offset < region->reg_offset)
602 return -1;
603
604 if (offset >= region->reg_offset + region->len)
605 return 1;
606
607 return 0;
608}
609
Eric Auger4b7171a2016-12-20 09:20:00 +0100610const struct vgic_register_region *
611vgic_find_mmio_region(const struct vgic_register_region *regions,
612 int nr_regions, unsigned int offset)
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100613{
Eric Auger4b7171a2016-12-20 09:20:00 +0100614 return bsearch((void *)(uintptr_t)offset, regions, nr_regions,
615 sizeof(regions[0]), match_region);
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100616}
617
Vijaya Kumar K5fb247d2017-01-26 19:50:50 +0530618void vgic_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr)
619{
620 if (kvm_vgic_global_state.type == VGIC_V2)
621 vgic_v2_set_vmcr(vcpu, vmcr);
622 else
623 vgic_v3_set_vmcr(vcpu, vmcr);
624}
625
626void vgic_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr)
627{
628 if (kvm_vgic_global_state.type == VGIC_V2)
629 vgic_v2_get_vmcr(vcpu, vmcr);
630 else
631 vgic_v3_get_vmcr(vcpu, vmcr);
632}
633
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100634/*
635 * kvm_mmio_read_buf() returns a value in a format where it can be converted
636 * to a byte array and be directly observed as the guest wanted it to appear
637 * in memory if it had done the store itself, which is LE for the GIC, as the
638 * guest knows the GIC is always LE.
639 *
640 * We convert this value to the CPUs native format to deal with it as a data
641 * value.
642 */
643unsigned long vgic_data_mmio_bus_to_host(const void *val, unsigned int len)
644{
645 unsigned long data = kvm_mmio_read_buf(val, len);
646
647 switch (len) {
648 case 1:
649 return data;
650 case 2:
651 return le16_to_cpu(data);
652 case 4:
653 return le32_to_cpu(data);
654 default:
655 return le64_to_cpu(data);
656 }
657}
658
659/*
660 * kvm_mmio_write_buf() expects a value in a format such that if converted to
661 * a byte array it is observed as the guest would see it if it could perform
662 * the load directly. Since the GIC is LE, and the guest knows this, the
663 * guest expects a value in little endian format.
664 *
665 * We convert the data value from the CPUs native format to LE so that the
666 * value is returned in the proper format.
667 */
668void vgic_data_host_to_mmio_bus(void *buf, unsigned int len,
669 unsigned long data)
670{
671 switch (len) {
672 case 1:
673 break;
674 case 2:
675 data = cpu_to_le16(data);
676 break;
677 case 4:
678 data = cpu_to_le32(data);
679 break;
680 default:
681 data = cpu_to_le64(data);
682 }
683
684 kvm_mmio_write_buf(buf, len, data);
685}
686
687static
688struct vgic_io_device *kvm_to_vgic_iodev(const struct kvm_io_device *dev)
689{
690 return container_of(dev, struct vgic_io_device, dev);
691}
692
Andre Przywara112b0b82016-11-01 18:00:08 +0000693static bool check_region(const struct kvm *kvm,
694 const struct vgic_register_region *region,
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100695 gpa_t addr, int len)
696{
Andre Przywara112b0b82016-11-01 18:00:08 +0000697 int flags, nr_irqs = kvm->arch.vgic.nr_spis + VGIC_NR_PRIVATE_IRQS;
698
699 switch (len) {
700 case sizeof(u8):
701 flags = VGIC_ACCESS_8bit;
702 break;
703 case sizeof(u32):
704 flags = VGIC_ACCESS_32bit;
705 break;
706 case sizeof(u64):
707 flags = VGIC_ACCESS_64bit;
708 break;
709 default:
710 return false;
711 }
712
713 if ((region->access_flags & flags) && IS_ALIGNED(addr, len)) {
714 if (!region->bits_per_irq)
715 return true;
716
717 /* Do we access a non-allocated IRQ? */
718 return VGIC_ADDR_TO_INTID(addr, region->bits_per_irq) < nr_irqs;
719 }
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100720
721 return false;
722}
723
Vijaya Kumar K94574c92017-01-26 19:50:47 +0530724const struct vgic_register_region *
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530725vgic_get_mmio_region(struct kvm_vcpu *vcpu, struct vgic_io_device *iodev,
726 gpa_t addr, int len)
727{
728 const struct vgic_register_region *region;
729
730 region = vgic_find_mmio_region(iodev->regions, iodev->nr_regions,
731 addr - iodev->base_addr);
732 if (!region || !check_region(vcpu->kvm, region, addr, len))
733 return NULL;
734
735 return region;
736}
737
738static int vgic_uaccess_read(struct kvm_vcpu *vcpu, struct kvm_io_device *dev,
739 gpa_t addr, u32 *val)
740{
741 struct vgic_io_device *iodev = kvm_to_vgic_iodev(dev);
742 const struct vgic_register_region *region;
743 struct kvm_vcpu *r_vcpu;
744
745 region = vgic_get_mmio_region(vcpu, iodev, addr, sizeof(u32));
746 if (!region) {
747 *val = 0;
748 return 0;
749 }
750
751 r_vcpu = iodev->redist_vcpu ? iodev->redist_vcpu : vcpu;
752 if (region->uaccess_read)
753 *val = region->uaccess_read(r_vcpu, addr, sizeof(u32));
754 else
755 *val = region->read(r_vcpu, addr, sizeof(u32));
756
757 return 0;
758}
759
760static int vgic_uaccess_write(struct kvm_vcpu *vcpu, struct kvm_io_device *dev,
761 gpa_t addr, const u32 *val)
762{
763 struct vgic_io_device *iodev = kvm_to_vgic_iodev(dev);
764 const struct vgic_register_region *region;
765 struct kvm_vcpu *r_vcpu;
766
767 region = vgic_get_mmio_region(vcpu, iodev, addr, sizeof(u32));
768 if (!region)
769 return 0;
770
771 r_vcpu = iodev->redist_vcpu ? iodev->redist_vcpu : vcpu;
772 if (region->uaccess_write)
Christoffer Dallc6e09172018-07-16 15:06:23 +0200773 return region->uaccess_write(r_vcpu, addr, sizeof(u32), *val);
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530774
Christoffer Dallc6e09172018-07-16 15:06:23 +0200775 region->write(r_vcpu, addr, sizeof(u32), *val);
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530776 return 0;
777}
778
779/*
780 * Userland access to VGIC registers.
781 */
782int vgic_uaccess(struct kvm_vcpu *vcpu, struct vgic_io_device *dev,
783 bool is_write, int offset, u32 *val)
784{
785 if (is_write)
786 return vgic_uaccess_write(vcpu, &dev->dev, offset, val);
787 else
788 return vgic_uaccess_read(vcpu, &dev->dev, offset, val);
789}
790
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100791static int dispatch_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *dev,
792 gpa_t addr, int len, void *val)
793{
794 struct vgic_io_device *iodev = kvm_to_vgic_iodev(dev);
795 const struct vgic_register_region *region;
Andre Przywara59c5ab42016-07-15 12:43:30 +0100796 unsigned long data = 0;
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100797
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530798 region = vgic_get_mmio_region(vcpu, iodev, addr, len);
799 if (!region) {
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100800 memset(val, 0, len);
801 return 0;
802 }
803
Andre Przywara59c5ab42016-07-15 12:43:30 +0100804 switch (iodev->iodev_type) {
805 case IODEV_CPUIF:
Eric Auger9d5fcb92016-07-18 10:57:36 +0000806 data = region->read(vcpu, addr, len);
807 break;
Andre Przywara59c5ab42016-07-15 12:43:30 +0100808 case IODEV_DIST:
809 data = region->read(vcpu, addr, len);
810 break;
811 case IODEV_REDIST:
812 data = region->read(iodev->redist_vcpu, addr, len);
813 break;
814 case IODEV_ITS:
815 data = region->its_read(vcpu->kvm, iodev->its, addr, len);
816 break;
817 }
818
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100819 vgic_data_host_to_mmio_bus(val, len, data);
820 return 0;
821}
822
823static int dispatch_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *dev,
824 gpa_t addr, int len, const void *val)
825{
826 struct vgic_io_device *iodev = kvm_to_vgic_iodev(dev);
827 const struct vgic_register_region *region;
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100828 unsigned long data = vgic_data_mmio_bus_to_host(val, len);
829
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530830 region = vgic_get_mmio_region(vcpu, iodev, addr, len);
831 if (!region)
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100832 return 0;
833
Andre Przywara59c5ab42016-07-15 12:43:30 +0100834 switch (iodev->iodev_type) {
835 case IODEV_CPUIF:
Eric Auger9d5fcb92016-07-18 10:57:36 +0000836 region->write(vcpu, addr, len, data);
Andre Przywara59c5ab42016-07-15 12:43:30 +0100837 break;
838 case IODEV_DIST:
839 region->write(vcpu, addr, len, data);
840 break;
841 case IODEV_REDIST:
842 region->write(iodev->redist_vcpu, addr, len, data);
843 break;
844 case IODEV_ITS:
845 region->its_write(vcpu->kvm, iodev->its, addr, len, data);
846 break;
847 }
848
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100849 return 0;
850}
851
852struct kvm_io_device_ops kvm_io_gic_ops = {
853 .read = dispatch_mmio_read,
854 .write = dispatch_mmio_write,
855};
Andre Przywarafb848db2016-04-26 21:32:49 +0100856
857int vgic_register_dist_iodev(struct kvm *kvm, gpa_t dist_base_address,
858 enum vgic_type type)
859{
860 struct vgic_io_device *io_device = &kvm->arch.vgic.dist_iodev;
861 int ret = 0;
862 unsigned int len;
863
864 switch (type) {
865 case VGIC_V2:
866 len = vgic_v2_init_dist_iodev(io_device);
867 break;
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000868 case VGIC_V3:
869 len = vgic_v3_init_dist_iodev(io_device);
870 break;
Andre Przywarafb848db2016-04-26 21:32:49 +0100871 default:
872 BUG_ON(1);
873 }
874
875 io_device->base_addr = dist_base_address;
Andre Przywara59c5ab42016-07-15 12:43:30 +0100876 io_device->iodev_type = IODEV_DIST;
Andre Przywarafb848db2016-04-26 21:32:49 +0100877 io_device->redist_vcpu = NULL;
878
879 mutex_lock(&kvm->slots_lock);
880 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, dist_base_address,
881 len, &io_device->dev);
882 mutex_unlock(&kvm->slots_lock);
883
884 return ret;
885}