blob: 49837d3a3ef5625ba0c5e4d2fed57e362b55ffc0 [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>
Marc Zyngieref1820b2020-03-04 20:33:25 +00008#include <linux/interrupt.h>
9#include <linux/irq.h>
Marc Zyngier4493b1c2016-04-26 11:06:12 +010010#include <linux/kvm.h>
11#include <linux/kvm_host.h>
12#include <kvm/iodev.h>
Christoffer Dalldf635c52017-09-01 16:25:12 +020013#include <kvm/arm_arch_timer.h>
Marc Zyngier4493b1c2016-04-26 11:06:12 +010014#include <kvm/arm_vgic.h>
15
16#include "vgic.h"
17#include "vgic-mmio.h"
18
19unsigned long vgic_mmio_read_raz(struct kvm_vcpu *vcpu,
20 gpa_t addr, unsigned int len)
21{
22 return 0;
23}
24
25unsigned long vgic_mmio_read_rao(struct kvm_vcpu *vcpu,
26 gpa_t addr, unsigned int len)
27{
28 return -1UL;
29}
30
31void vgic_mmio_write_wi(struct kvm_vcpu *vcpu, gpa_t addr,
32 unsigned int len, unsigned long val)
33{
34 /* Ignore */
35}
36
Christoffer Dallc6e09172018-07-16 15:06:23 +020037int vgic_mmio_uaccess_write_wi(struct kvm_vcpu *vcpu, gpa_t addr,
38 unsigned int len, unsigned long val)
39{
40 /* Ignore */
41 return 0;
42}
43
Christoffer Dalld53c2c292018-07-16 15:06:25 +020044unsigned long vgic_mmio_read_group(struct kvm_vcpu *vcpu,
45 gpa_t addr, unsigned int len)
46{
47 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
48 u32 value = 0;
49 int i;
50
51 /* Loop over all IRQs affected by this read */
52 for (i = 0; i < len * 8; i++) {
53 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
54
55 if (irq->group)
56 value |= BIT(i);
57
58 vgic_put_irq(vcpu->kvm, irq);
59 }
60
61 return value;
62}
63
Marc Zyngieref1820b2020-03-04 20:33:25 +000064static void vgic_update_vsgi(struct vgic_irq *irq)
65{
66 WARN_ON(its_prop_update_vsgi(irq->host_irq, irq->priority, irq->group));
67}
68
Christoffer Dalld53c2c292018-07-16 15:06:25 +020069void vgic_mmio_write_group(struct kvm_vcpu *vcpu, gpa_t addr,
70 unsigned int len, unsigned long val)
71{
72 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
73 int i;
74 unsigned long flags;
75
76 for (i = 0; i < len * 8; i++) {
77 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
78
Julien Thierry8fa3adb2019-01-07 15:06:15 +000079 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Christoffer Dalld53c2c292018-07-16 15:06:25 +020080 irq->group = !!(val & BIT(i));
Marc Zyngieref1820b2020-03-04 20:33:25 +000081 if (irq->hw && vgic_irq_is_sgi(irq->intid)) {
82 vgic_update_vsgi(irq);
83 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
84 } else {
85 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
86 }
Christoffer Dalld53c2c292018-07-16 15:06:25 +020087
88 vgic_put_irq(vcpu->kvm, irq);
89 }
90}
91
Andre Przywarafd122e62015-12-01 14:33:05 +000092/*
93 * Read accesses to both GICD_ICENABLER and GICD_ISENABLER return the value
94 * of the enabled bit, so there is only one function for both here.
95 */
96unsigned long vgic_mmio_read_enable(struct kvm_vcpu *vcpu,
97 gpa_t addr, unsigned int len)
98{
99 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
100 u32 value = 0;
101 int i;
102
103 /* Loop over all IRQs affected by this read */
104 for (i = 0; i < len * 8; i++) {
105 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
106
107 if (irq->enabled)
108 value |= (1U << i);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100109
110 vgic_put_irq(vcpu->kvm, irq);
Andre Przywarafd122e62015-12-01 14:33:05 +0000111 }
112
113 return value;
114}
115
116void vgic_mmio_write_senable(struct kvm_vcpu *vcpu,
117 gpa_t addr, unsigned int len,
118 unsigned long val)
119{
120 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
121 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200122 unsigned long flags;
Andre Przywarafd122e62015-12-01 14:33:05 +0000123
124 for_each_set_bit(i, &val, len * 8) {
125 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
126
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000127 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Marc Zyngieref1820b2020-03-04 20:33:25 +0000128 if (irq->hw && vgic_irq_is_sgi(irq->intid)) {
129 if (!irq->enabled) {
130 struct irq_data *data;
131
132 irq->enabled = true;
133 data = &irq_to_desc(irq->host_irq)->irq_data;
134 while (irqd_irq_disabled(data))
135 enable_irq(irq->host_irq);
136 }
137
138 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
139 vgic_put_irq(vcpu->kvm, irq);
140
141 continue;
142 } else if (vgic_irq_is_mapped_level(irq)) {
Alexandru Elisei16e604a2019-08-07 10:53:20 +0100143 bool was_high = irq->line_level;
144
145 /*
146 * We need to update the state of the interrupt because
147 * the guest might have changed the state of the device
148 * while the interrupt was disabled at the VGIC level.
149 */
150 irq->line_level = vgic_get_phys_line_level(irq);
151 /*
152 * Deactivate the physical interrupt so the GIC will let
153 * us know when it is asserted again.
154 */
155 if (!irq->active && was_high && !irq->line_level)
156 vgic_irq_set_phys_active(irq, false);
157 }
Andre Przywarafd122e62015-12-01 14:33:05 +0000158 irq->enabled = true;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200159 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100160
161 vgic_put_irq(vcpu->kvm, irq);
Andre Przywarafd122e62015-12-01 14:33:05 +0000162 }
163}
164
165void vgic_mmio_write_cenable(struct kvm_vcpu *vcpu,
166 gpa_t addr, unsigned int len,
167 unsigned long val)
168{
169 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
170 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200171 unsigned long flags;
Andre Przywarafd122e62015-12-01 14:33:05 +0000172
173 for_each_set_bit(i, &val, len * 8) {
174 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
175
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000176 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Marc Zyngieref1820b2020-03-04 20:33:25 +0000177 if (irq->hw && vgic_irq_is_sgi(irq->intid) && irq->enabled)
178 disable_irq_nosync(irq->host_irq);
Andre Przywarafd122e62015-12-01 14:33:05 +0000179
180 irq->enabled = false;
181
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000182 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100183 vgic_put_irq(vcpu->kvm, irq);
Andre Przywarafd122e62015-12-01 14:33:05 +0000184 }
185}
186
Marc Zyngier41ee52e2020-04-09 13:05:26 +0100187int vgic_uaccess_write_senable(struct kvm_vcpu *vcpu,
188 gpa_t addr, unsigned int len,
189 unsigned long val)
190{
191 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
192 int i;
193 unsigned long flags;
194
195 for_each_set_bit(i, &val, len * 8) {
196 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
197
198 raw_spin_lock_irqsave(&irq->irq_lock, flags);
199 irq->enabled = true;
200 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
201
202 vgic_put_irq(vcpu->kvm, irq);
203 }
204
205 return 0;
206}
207
208int vgic_uaccess_write_cenable(struct kvm_vcpu *vcpu,
209 gpa_t addr, unsigned int len,
210 unsigned long val)
211{
212 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
213 int i;
214 unsigned long flags;
215
216 for_each_set_bit(i, &val, len * 8) {
217 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
218
219 raw_spin_lock_irqsave(&irq->irq_lock, flags);
220 irq->enabled = false;
221 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
222
223 vgic_put_irq(vcpu->kvm, irq);
224 }
225
226 return 0;
227}
228
Andre Przywara96b29802015-12-01 14:33:41 +0000229unsigned long vgic_mmio_read_pending(struct kvm_vcpu *vcpu,
230 gpa_t addr, unsigned int len)
231{
232 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
233 u32 value = 0;
234 int i;
235
236 /* Loop over all IRQs affected by this read */
237 for (i = 0; i < len * 8; i++) {
238 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
Andre Przywara62b06f82018-03-06 09:21:06 +0000239 unsigned long flags;
Marc Zyngieref1820b2020-03-04 20:33:25 +0000240 bool val;
Andre Przywara96b29802015-12-01 14:33:41 +0000241
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000242 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Marc Zyngieref1820b2020-03-04 20:33:25 +0000243 if (irq->hw && vgic_irq_is_sgi(irq->intid)) {
244 int err;
245
246 val = false;
247 err = irq_get_irqchip_state(irq->host_irq,
248 IRQCHIP_STATE_PENDING,
249 &val);
250 WARN_RATELIMIT(err, "IRQ %d", irq->host_irq);
Marc Zyngier5bfa6852022-02-03 09:24:45 +0000251 } else if (vgic_irq_is_mapped_level(irq)) {
252 val = vgic_get_phys_line_level(irq);
Marc Zyngieref1820b2020-03-04 20:33:25 +0000253 } else {
254 val = irq_is_pending(irq);
255 }
256
257 value |= ((u32)val << i);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000258 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100259
260 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara96b29802015-12-01 14:33:41 +0000261 }
262
263 return value;
264}
265
Marc Zyngier82e40f52019-08-28 11:10:16 +0100266static bool is_vgic_v2_sgi(struct kvm_vcpu *vcpu, struct vgic_irq *irq)
267{
268 return (vgic_irq_is_sgi(irq->intid) &&
269 vcpu->kvm->arch.vgic.vgic_model == KVM_DEV_TYPE_ARM_VGIC_V2);
270}
271
Andre Przywara96b29802015-12-01 14:33:41 +0000272void vgic_mmio_write_spending(struct kvm_vcpu *vcpu,
273 gpa_t addr, unsigned int len,
274 unsigned long val)
275{
276 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
277 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200278 unsigned long flags;
Andre Przywara96b29802015-12-01 14:33:41 +0000279
280 for_each_set_bit(i, &val, len * 8) {
281 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
282
Marc Zyngier82e40f52019-08-28 11:10:16 +0100283 /* GICD_ISPENDR0 SGI bits are WI */
284 if (is_vgic_v2_sgi(vcpu, irq)) {
285 vgic_put_irq(vcpu->kvm, irq);
286 continue;
287 }
288
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000289 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Marc Zyngieref1820b2020-03-04 20:33:25 +0000290
291 if (irq->hw && vgic_irq_is_sgi(irq->intid)) {
292 /* HW SGI? Ask the GIC to inject it */
293 int err;
294 err = irq_set_irqchip_state(irq->host_irq,
295 IRQCHIP_STATE_PENDING,
296 true);
297 WARN_RATELIMIT(err, "IRQ %d", irq->host_irq);
298
299 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
300 vgic_put_irq(vcpu->kvm, irq);
301
302 continue;
303 }
304
Marc Zyngierba1ed9e2020-04-09 13:05:26 +0100305 irq->pending_latch = true;
Christoffer Dalldf635c52017-09-01 16:25:12 +0200306 if (irq->hw)
Marc Zyngierba1ed9e2020-04-09 13:05:26 +0100307 vgic_irq_set_phys_active(irq, true);
308
Christoffer Dall006df0f2016-10-16 22:19:11 +0200309 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100310 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara96b29802015-12-01 14:33:41 +0000311 }
312}
313
Marc Zyngierba1ed9e2020-04-09 13:05:26 +0100314int vgic_uaccess_write_spending(struct kvm_vcpu *vcpu,
315 gpa_t addr, unsigned int len,
316 unsigned long val)
Christoffer Dalldf635c52017-09-01 16:25:12 +0200317{
Marc Zyngierba1ed9e2020-04-09 13:05:26 +0100318 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
319 int i;
320 unsigned long flags;
Christoffer Dalldf635c52017-09-01 16:25:12 +0200321
Marc Zyngierba1ed9e2020-04-09 13:05:26 +0100322 for_each_set_bit(i, &val, len * 8) {
323 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
324
325 raw_spin_lock_irqsave(&irq->irq_lock, flags);
326 irq->pending_latch = true;
327
328 /*
329 * GICv2 SGIs are terribly broken. We can't restore
330 * the source of the interrupt, so just pick the vcpu
331 * itself as the source...
332 */
333 if (is_vgic_v2_sgi(vcpu, irq))
334 irq->source |= BIT(vcpu->vcpu_id);
335
336 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
337
338 vgic_put_irq(vcpu->kvm, irq);
339 }
340
341 return 0;
342}
343
344/* Must be called with irq->irq_lock held */
345static void vgic_hw_irq_cpending(struct kvm_vcpu *vcpu, struct vgic_irq *irq)
346{
Christoffer Dalldf635c52017-09-01 16:25:12 +0200347 irq->pending_latch = false;
348
349 /*
350 * We don't want the guest to effectively mask the physical
351 * interrupt by doing a write to SPENDR followed by a write to
352 * CPENDR for HW interrupts, so we clear the active state on
353 * the physical side if the virtual interrupt is not active.
354 * This may lead to taking an additional interrupt on the
355 * host, but that should not be a problem as the worst that
356 * can happen is an additional vgic injection. We also clear
357 * the pending state to maintain proper semantics for edge HW
358 * interrupts.
359 */
360 vgic_irq_set_phys_pending(irq, false);
361 if (!irq->active)
362 vgic_irq_set_phys_active(irq, false);
363}
364
Andre Przywara96b29802015-12-01 14:33:41 +0000365void vgic_mmio_write_cpending(struct kvm_vcpu *vcpu,
366 gpa_t addr, unsigned int len,
367 unsigned long val)
368{
369 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
370 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200371 unsigned long flags;
Andre Przywara96b29802015-12-01 14:33:41 +0000372
373 for_each_set_bit(i, &val, len * 8) {
374 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
375
Marc Zyngier82e40f52019-08-28 11:10:16 +0100376 /* GICD_ICPENDR0 SGI bits are WI */
377 if (is_vgic_v2_sgi(vcpu, irq)) {
378 vgic_put_irq(vcpu->kvm, irq);
379 continue;
380 }
381
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000382 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywara96b29802015-12-01 14:33:41 +0000383
Marc Zyngieref1820b2020-03-04 20:33:25 +0000384 if (irq->hw && vgic_irq_is_sgi(irq->intid)) {
385 /* HW SGI? Ask the GIC to clear its pending bit */
386 int err;
387 err = irq_set_irqchip_state(irq->host_irq,
388 IRQCHIP_STATE_PENDING,
389 false);
390 WARN_RATELIMIT(err, "IRQ %d", irq->host_irq);
391
392 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
393 vgic_put_irq(vcpu->kvm, irq);
394
395 continue;
396 }
397
Christoffer Dalldf635c52017-09-01 16:25:12 +0200398 if (irq->hw)
Marc Zyngierba1ed9e2020-04-09 13:05:26 +0100399 vgic_hw_irq_cpending(vcpu, irq);
Christoffer Dalldf635c52017-09-01 16:25:12 +0200400 else
401 irq->pending_latch = false;
Andre Przywara96b29802015-12-01 14:33:41 +0000402
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000403 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100404 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara96b29802015-12-01 14:33:41 +0000405 }
406}
407
Marc Zyngierba1ed9e2020-04-09 13:05:26 +0100408int vgic_uaccess_write_cpending(struct kvm_vcpu *vcpu,
409 gpa_t addr, unsigned int len,
410 unsigned long val)
411{
412 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
413 int i;
414 unsigned long flags;
415
416 for_each_set_bit(i, &val, len * 8) {
417 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
418
419 raw_spin_lock_irqsave(&irq->irq_lock, flags);
420 /*
421 * More fun with GICv2 SGIs! If we're clearing one of them
422 * from userspace, which source vcpu to clear? Let's not
423 * even think of it, and blow the whole set.
424 */
425 if (is_vgic_v2_sgi(vcpu, irq))
426 irq->source = 0;
427
428 irq->pending_latch = false;
429
430 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
431
432 vgic_put_irq(vcpu->kvm, irq);
433 }
434
435 return 0;
436}
Marc Zyngier9a50ebb2020-04-06 16:21:20 +0100437
438/*
439 * If we are fiddling with an IRQ's active state, we have to make sure the IRQ
440 * is not queued on some running VCPU's LRs, because then the change to the
441 * active state can be overwritten when the VCPU's state is synced coming back
442 * from the guest.
443 *
444 * For shared interrupts as well as GICv3 private interrupts, we have to
445 * stop all the VCPUs because interrupts can be migrated while we don't hold
446 * the IRQ locks and we don't want to be chasing moving targets.
447 *
448 * For GICv2 private interrupts we don't have to do anything because
449 * userspace accesses to the VGIC state already require all VCPUs to be
450 * stopped, and only the VCPU itself can modify its private interrupts
451 * active state, which guarantees that the VCPU is not running.
452 */
453static void vgic_access_active_prepare(struct kvm_vcpu *vcpu, u32 intid)
454{
455 if (vcpu->kvm->arch.vgic.vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3 ||
456 intid >= VGIC_NR_PRIVATE_IRQS)
457 kvm_arm_halt_guest(vcpu->kvm);
458}
459
460/* See vgic_access_active_prepare */
461static void vgic_access_active_finish(struct kvm_vcpu *vcpu, u32 intid)
462{
463 if (vcpu->kvm->arch.vgic.vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3 ||
464 intid >= VGIC_NR_PRIVATE_IRQS)
465 kvm_arm_resume_guest(vcpu->kvm);
466}
467
468static unsigned long __vgic_mmio_read_active(struct kvm_vcpu *vcpu,
469 gpa_t addr, unsigned int len)
Andre Przywara69b6fe02015-12-01 12:40:58 +0000470{
471 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
472 u32 value = 0;
473 int i;
474
475 /* Loop over all IRQs affected by this read */
476 for (i = 0; i < len * 8; i++) {
477 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
478
Marc Zyngier9a50ebb2020-04-06 16:21:20 +0100479 /*
480 * Even for HW interrupts, don't evaluate the HW state as
481 * all the guest is interested in is the virtual state.
482 */
Andre Przywara69b6fe02015-12-01 12:40:58 +0000483 if (irq->active)
484 value |= (1U << i);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100485
486 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara69b6fe02015-12-01 12:40:58 +0000487 }
488
489 return value;
490}
491
Marc Zyngier9a50ebb2020-04-06 16:21:20 +0100492unsigned long vgic_mmio_read_active(struct kvm_vcpu *vcpu,
493 gpa_t addr, unsigned int len)
494{
495 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
496 u32 val;
497
498 mutex_lock(&vcpu->kvm->lock);
499 vgic_access_active_prepare(vcpu, intid);
500
501 val = __vgic_mmio_read_active(vcpu, addr, len);
502
503 vgic_access_active_finish(vcpu, intid);
504 mutex_unlock(&vcpu->kvm->lock);
505
506 return val;
507}
508
509unsigned long vgic_uaccess_read_active(struct kvm_vcpu *vcpu,
510 gpa_t addr, unsigned int len)
511{
512 return __vgic_mmio_read_active(vcpu, addr, len);
513}
514
Christoffer Dalldf635c52017-09-01 16:25:12 +0200515/* Must be called with irq->irq_lock held */
516static void vgic_hw_irq_change_active(struct kvm_vcpu *vcpu, struct vgic_irq *irq,
517 bool active, bool is_uaccess)
518{
519 if (is_uaccess)
520 return;
521
522 irq->active = active;
523 vgic_irq_set_phys_active(irq, active);
524}
525
Christoffer Dall35a2d582016-05-20 15:25:28 +0200526static void vgic_mmio_change_active(struct kvm_vcpu *vcpu, struct vgic_irq *irq,
Christoffer Dalldf635c52017-09-01 16:25:12 +0200527 bool active)
Christoffer Dall35a2d582016-05-20 15:25:28 +0200528{
Christoffer Dall006df0f2016-10-16 22:19:11 +0200529 unsigned long flags;
Paolo Bonzini7495e222020-01-09 09:57:19 -0500530 struct kvm_vcpu *requester_vcpu = kvm_get_running_vcpu();
Jintack Lim370a0ec2017-03-06 05:42:37 -0800531
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000532 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Jintack Lim370a0ec2017-03-06 05:42:37 -0800533
Marc Zyngieref1820b2020-03-04 20:33:25 +0000534 if (irq->hw && !vgic_irq_is_sgi(irq->intid)) {
Christoffer Dalldf635c52017-09-01 16:25:12 +0200535 vgic_hw_irq_change_active(vcpu, irq, active, !requester_vcpu);
Marc Zyngieref1820b2020-03-04 20:33:25 +0000536 } else if (irq->hw && vgic_irq_is_sgi(irq->intid)) {
537 /*
538 * GICv4.1 VSGI feature doesn't track an active state,
539 * so let's not kid ourselves, there is nothing we can
540 * do here.
541 */
542 irq->active = false;
Marc Zyngier53692902018-04-18 10:39:04 +0100543 } else {
544 u32 model = vcpu->kvm->arch.vgic.vgic_model;
Christoffer Dall60c3ab32018-12-11 12:51:03 +0100545 u8 active_source;
Marc Zyngier53692902018-04-18 10:39:04 +0100546
Christoffer Dalldf635c52017-09-01 16:25:12 +0200547 irq->active = active;
Christoffer Dall60c3ab32018-12-11 12:51:03 +0100548
549 /*
550 * The GICv2 architecture indicates that the source CPUID for
551 * an SGI should be provided during an EOI which implies that
552 * the active state is stored somewhere, but at the same time
553 * this state is not architecturally exposed anywhere and we
554 * have no way of knowing the right source.
555 *
556 * This may lead to a VCPU not being able to receive
557 * additional instances of a particular SGI after migration
558 * for a GICv2 VM on some GIC implementations. Oh well.
559 */
560 active_source = (requester_vcpu) ? requester_vcpu->vcpu_id : 0;
561
Marc Zyngier53692902018-04-18 10:39:04 +0100562 if (model == KVM_DEV_TYPE_ARM_VGIC_V2 &&
563 active && vgic_irq_is_sgi(irq->intid))
Christoffer Dall60c3ab32018-12-11 12:51:03 +0100564 irq->active_source = active_source;
Marc Zyngier53692902018-04-18 10:39:04 +0100565 }
Christoffer Dalldf635c52017-09-01 16:25:12 +0200566
567 if (irq->active)
Christoffer Dall006df0f2016-10-16 22:19:11 +0200568 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
Christoffer Dall35a2d582016-05-20 15:25:28 +0200569 else
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000570 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Christoffer Dall35a2d582016-05-20 15:25:28 +0200571}
572
Christoffer Dall31971912017-05-16 09:44:39 +0200573static void __vgic_mmio_write_cactive(struct kvm_vcpu *vcpu,
574 gpa_t addr, unsigned int len,
575 unsigned long val)
Andre Przywara69b6fe02015-12-01 12:40:58 +0000576{
577 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
578 int i;
579
Andre Przywara69b6fe02015-12-01 12:40:58 +0000580 for_each_set_bit(i, &val, len * 8) {
581 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
Christoffer Dall35a2d582016-05-20 15:25:28 +0200582 vgic_mmio_change_active(vcpu, irq, false);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100583 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara69b6fe02015-12-01 12:40:58 +0000584 }
Christoffer Dall31971912017-05-16 09:44:39 +0200585}
586
587void vgic_mmio_write_cactive(struct kvm_vcpu *vcpu,
588 gpa_t addr, unsigned int len,
589 unsigned long val)
590{
591 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
592
Christoffer Dallabd72292017-05-06 20:01:24 +0200593 mutex_lock(&vcpu->kvm->lock);
Marc Zyngier9a50ebb2020-04-06 16:21:20 +0100594 vgic_access_active_prepare(vcpu, intid);
Christoffer Dall31971912017-05-16 09:44:39 +0200595
596 __vgic_mmio_write_cactive(vcpu, addr, len, val);
597
Marc Zyngier9a50ebb2020-04-06 16:21:20 +0100598 vgic_access_active_finish(vcpu, intid);
Christoffer Dallabd72292017-05-06 20:01:24 +0200599 mutex_unlock(&vcpu->kvm->lock);
Andre Przywara69b6fe02015-12-01 12:40:58 +0000600}
601
Christoffer Dallc6e09172018-07-16 15:06:23 +0200602int vgic_mmio_uaccess_write_cactive(struct kvm_vcpu *vcpu,
Christoffer Dall31971912017-05-16 09:44:39 +0200603 gpa_t addr, unsigned int len,
604 unsigned long val)
605{
606 __vgic_mmio_write_cactive(vcpu, addr, len, val);
Christoffer Dallc6e09172018-07-16 15:06:23 +0200607 return 0;
Christoffer Dall31971912017-05-16 09:44:39 +0200608}
609
610static void __vgic_mmio_write_sactive(struct kvm_vcpu *vcpu,
611 gpa_t addr, unsigned int len,
612 unsigned long val)
613{
614 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
615 int i;
616
617 for_each_set_bit(i, &val, len * 8) {
618 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
619 vgic_mmio_change_active(vcpu, irq, true);
620 vgic_put_irq(vcpu->kvm, irq);
621 }
622}
623
Andre Przywara69b6fe02015-12-01 12:40:58 +0000624void vgic_mmio_write_sactive(struct kvm_vcpu *vcpu,
625 gpa_t addr, unsigned int len,
626 unsigned long val)
627{
628 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
Andre Przywara69b6fe02015-12-01 12:40:58 +0000629
Christoffer Dallabd72292017-05-06 20:01:24 +0200630 mutex_lock(&vcpu->kvm->lock);
Marc Zyngier9a50ebb2020-04-06 16:21:20 +0100631 vgic_access_active_prepare(vcpu, intid);
Christoffer Dall31971912017-05-16 09:44:39 +0200632
633 __vgic_mmio_write_sactive(vcpu, addr, len, val);
634
Marc Zyngier9a50ebb2020-04-06 16:21:20 +0100635 vgic_access_active_finish(vcpu, intid);
Christoffer Dallabd72292017-05-06 20:01:24 +0200636 mutex_unlock(&vcpu->kvm->lock);
Andre Przywara69b6fe02015-12-01 12:40:58 +0000637}
638
Christoffer Dallc6e09172018-07-16 15:06:23 +0200639int vgic_mmio_uaccess_write_sactive(struct kvm_vcpu *vcpu,
Christoffer Dall31971912017-05-16 09:44:39 +0200640 gpa_t addr, unsigned int len,
641 unsigned long val)
642{
643 __vgic_mmio_write_sactive(vcpu, addr, len, val);
Christoffer Dallc6e09172018-07-16 15:06:23 +0200644 return 0;
Christoffer Dall31971912017-05-16 09:44:39 +0200645}
646
Andre Przywara055658b2015-12-01 14:34:02 +0000647unsigned long vgic_mmio_read_priority(struct kvm_vcpu *vcpu,
648 gpa_t addr, unsigned int len)
649{
650 u32 intid = VGIC_ADDR_TO_INTID(addr, 8);
651 int i;
652 u64 val = 0;
653
654 for (i = 0; i < len; i++) {
655 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
656
657 val |= (u64)irq->priority << (i * 8);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100658
659 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara055658b2015-12-01 14:34:02 +0000660 }
661
662 return val;
663}
664
665/*
666 * We currently don't handle changing the priority of an interrupt that
667 * is already pending on a VCPU. If there is a need for this, we would
668 * need to make this VCPU exit and re-evaluate the priorities, potentially
669 * leading to this interrupt getting presented now to the guest (if it has
670 * been masked by the priority mask before).
671 */
672void vgic_mmio_write_priority(struct kvm_vcpu *vcpu,
673 gpa_t addr, unsigned int len,
674 unsigned long val)
675{
676 u32 intid = VGIC_ADDR_TO_INTID(addr, 8);
677 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200678 unsigned long flags;
Andre Przywara055658b2015-12-01 14:34:02 +0000679
680 for (i = 0; i < len; i++) {
681 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
682
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000683 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywara055658b2015-12-01 14:34:02 +0000684 /* Narrow the priority range to what we actually support */
685 irq->priority = (val >> (i * 8)) & GENMASK(7, 8 - VGIC_PRI_BITS);
Marc Zyngieref1820b2020-03-04 20:33:25 +0000686 if (irq->hw && vgic_irq_is_sgi(irq->intid))
687 vgic_update_vsgi(irq);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000688 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100689
690 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara055658b2015-12-01 14:34:02 +0000691 }
692}
693
Andre Przywara79717e42015-12-01 12:41:31 +0000694unsigned long vgic_mmio_read_config(struct kvm_vcpu *vcpu,
695 gpa_t addr, unsigned int len)
696{
697 u32 intid = VGIC_ADDR_TO_INTID(addr, 2);
698 u32 value = 0;
699 int i;
700
701 for (i = 0; i < len * 4; i++) {
702 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
703
704 if (irq->config == VGIC_CONFIG_EDGE)
705 value |= (2U << (i * 2));
Andre Przywara5dd4b922016-07-15 12:43:27 +0100706
707 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara79717e42015-12-01 12:41:31 +0000708 }
709
710 return value;
711}
712
713void vgic_mmio_write_config(struct kvm_vcpu *vcpu,
714 gpa_t addr, unsigned int len,
715 unsigned long val)
716{
717 u32 intid = VGIC_ADDR_TO_INTID(addr, 2);
718 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200719 unsigned long flags;
Andre Przywara79717e42015-12-01 12:41:31 +0000720
721 for (i = 0; i < len * 4; i++) {
Andre Przywara5dd4b922016-07-15 12:43:27 +0100722 struct vgic_irq *irq;
Andre Przywara79717e42015-12-01 12:41:31 +0000723
724 /*
725 * The configuration cannot be changed for SGIs in general,
726 * for PPIs this is IMPLEMENTATION DEFINED. The arch timer
727 * code relies on PPIs being level triggered, so we also
728 * make them read-only here.
729 */
730 if (intid + i < VGIC_NR_PRIVATE_IRQS)
731 continue;
732
Andre Przywara5dd4b922016-07-15 12:43:27 +0100733 irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000734 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100735
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100736 if (test_bit(i * 2 + 1, &val))
Andre Przywara79717e42015-12-01 12:41:31 +0000737 irq->config = VGIC_CONFIG_EDGE;
Christoffer Dall8694e4d2017-01-23 14:07:18 +0100738 else
Andre Przywara79717e42015-12-01 12:41:31 +0000739 irq->config = VGIC_CONFIG_LEVEL;
Andre Przywara5dd4b922016-07-15 12:43:27 +0100740
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000741 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100742 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara79717e42015-12-01 12:41:31 +0000743 }
744}
745
Vijaya Kumar Ke96a0062017-01-26 19:50:52 +0530746u64 vgic_read_irq_line_level_info(struct kvm_vcpu *vcpu, u32 intid)
747{
748 int i;
749 u64 val = 0;
750 int nr_irqs = vcpu->kvm->arch.vgic.nr_spis + VGIC_NR_PRIVATE_IRQS;
751
752 for (i = 0; i < 32; i++) {
753 struct vgic_irq *irq;
754
755 if ((intid + i) < VGIC_NR_SGIS || (intid + i) >= nr_irqs)
756 continue;
757
758 irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
759 if (irq->config == VGIC_CONFIG_LEVEL && irq->line_level)
760 val |= (1U << i);
761
762 vgic_put_irq(vcpu->kvm, irq);
763 }
764
765 return val;
766}
767
768void vgic_write_irq_line_level_info(struct kvm_vcpu *vcpu, u32 intid,
769 const u64 val)
770{
771 int i;
772 int nr_irqs = vcpu->kvm->arch.vgic.nr_spis + VGIC_NR_PRIVATE_IRQS;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200773 unsigned long flags;
Vijaya Kumar Ke96a0062017-01-26 19:50:52 +0530774
775 for (i = 0; i < 32; i++) {
776 struct vgic_irq *irq;
777 bool new_level;
778
779 if ((intid + i) < VGIC_NR_SGIS || (intid + i) >= nr_irqs)
780 continue;
781
782 irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
783
784 /*
785 * Line level is set irrespective of irq type
786 * (level or edge) to avoid dependency that VM should
787 * restore irq config before line level.
788 */
789 new_level = !!(val & (1U << i));
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000790 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Vijaya Kumar Ke96a0062017-01-26 19:50:52 +0530791 irq->line_level = new_level;
792 if (new_level)
Christoffer Dall006df0f2016-10-16 22:19:11 +0200793 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
Vijaya Kumar Ke96a0062017-01-26 19:50:52 +0530794 else
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000795 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Vijaya Kumar Ke96a0062017-01-26 19:50:52 +0530796
797 vgic_put_irq(vcpu->kvm, irq);
798 }
799}
800
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100801static int match_region(const void *key, const void *elt)
802{
803 const unsigned int offset = (unsigned long)key;
804 const struct vgic_register_region *region = elt;
805
806 if (offset < region->reg_offset)
807 return -1;
808
809 if (offset >= region->reg_offset + region->len)
810 return 1;
811
812 return 0;
813}
814
Eric Auger4b7171a2016-12-20 09:20:00 +0100815const struct vgic_register_region *
816vgic_find_mmio_region(const struct vgic_register_region *regions,
817 int nr_regions, unsigned int offset)
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100818{
Eric Auger4b7171a2016-12-20 09:20:00 +0100819 return bsearch((void *)(uintptr_t)offset, regions, nr_regions,
820 sizeof(regions[0]), match_region);
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100821}
822
Vijaya Kumar K5fb247d2017-01-26 19:50:50 +0530823void vgic_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr)
824{
825 if (kvm_vgic_global_state.type == VGIC_V2)
826 vgic_v2_set_vmcr(vcpu, vmcr);
827 else
828 vgic_v3_set_vmcr(vcpu, vmcr);
829}
830
831void vgic_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr)
832{
833 if (kvm_vgic_global_state.type == VGIC_V2)
834 vgic_v2_get_vmcr(vcpu, vmcr);
835 else
836 vgic_v3_get_vmcr(vcpu, vmcr);
837}
838
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100839/*
840 * kvm_mmio_read_buf() returns a value in a format where it can be converted
841 * to a byte array and be directly observed as the guest wanted it to appear
842 * in memory if it had done the store itself, which is LE for the GIC, as the
843 * guest knows the GIC is always LE.
844 *
845 * We convert this value to the CPUs native format to deal with it as a data
846 * value.
847 */
848unsigned long vgic_data_mmio_bus_to_host(const void *val, unsigned int len)
849{
850 unsigned long data = kvm_mmio_read_buf(val, len);
851
852 switch (len) {
853 case 1:
854 return data;
855 case 2:
856 return le16_to_cpu(data);
857 case 4:
858 return le32_to_cpu(data);
859 default:
860 return le64_to_cpu(data);
861 }
862}
863
864/*
865 * kvm_mmio_write_buf() expects a value in a format such that if converted to
866 * a byte array it is observed as the guest would see it if it could perform
867 * the load directly. Since the GIC is LE, and the guest knows this, the
868 * guest expects a value in little endian format.
869 *
870 * We convert the data value from the CPUs native format to LE so that the
871 * value is returned in the proper format.
872 */
873void vgic_data_host_to_mmio_bus(void *buf, unsigned int len,
874 unsigned long data)
875{
876 switch (len) {
877 case 1:
878 break;
879 case 2:
880 data = cpu_to_le16(data);
881 break;
882 case 4:
883 data = cpu_to_le32(data);
884 break;
885 default:
886 data = cpu_to_le64(data);
887 }
888
889 kvm_mmio_write_buf(buf, len, data);
890}
891
892static
893struct vgic_io_device *kvm_to_vgic_iodev(const struct kvm_io_device *dev)
894{
895 return container_of(dev, struct vgic_io_device, dev);
896}
897
Andre Przywara112b0b82016-11-01 18:00:08 +0000898static bool check_region(const struct kvm *kvm,
899 const struct vgic_register_region *region,
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100900 gpa_t addr, int len)
901{
Andre Przywara112b0b82016-11-01 18:00:08 +0000902 int flags, nr_irqs = kvm->arch.vgic.nr_spis + VGIC_NR_PRIVATE_IRQS;
903
904 switch (len) {
905 case sizeof(u8):
906 flags = VGIC_ACCESS_8bit;
907 break;
908 case sizeof(u32):
909 flags = VGIC_ACCESS_32bit;
910 break;
911 case sizeof(u64):
912 flags = VGIC_ACCESS_64bit;
913 break;
914 default:
915 return false;
916 }
917
918 if ((region->access_flags & flags) && IS_ALIGNED(addr, len)) {
919 if (!region->bits_per_irq)
920 return true;
921
922 /* Do we access a non-allocated IRQ? */
923 return VGIC_ADDR_TO_INTID(addr, region->bits_per_irq) < nr_irqs;
924 }
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100925
926 return false;
927}
928
Vijaya Kumar K94574c92017-01-26 19:50:47 +0530929const struct vgic_register_region *
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530930vgic_get_mmio_region(struct kvm_vcpu *vcpu, struct vgic_io_device *iodev,
931 gpa_t addr, int len)
932{
933 const struct vgic_register_region *region;
934
935 region = vgic_find_mmio_region(iodev->regions, iodev->nr_regions,
936 addr - iodev->base_addr);
937 if (!region || !check_region(vcpu->kvm, region, addr, len))
938 return NULL;
939
940 return region;
941}
942
Eric Augerda385302021-04-05 18:39:38 +0200943static int vgic_uaccess_read(struct kvm_vcpu *vcpu, struct vgic_io_device *iodev,
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530944 gpa_t addr, u32 *val)
945{
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530946 const struct vgic_register_region *region;
947 struct kvm_vcpu *r_vcpu;
948
949 region = vgic_get_mmio_region(vcpu, iodev, addr, sizeof(u32));
950 if (!region) {
951 *val = 0;
952 return 0;
953 }
954
955 r_vcpu = iodev->redist_vcpu ? iodev->redist_vcpu : vcpu;
956 if (region->uaccess_read)
957 *val = region->uaccess_read(r_vcpu, addr, sizeof(u32));
958 else
959 *val = region->read(r_vcpu, addr, sizeof(u32));
960
961 return 0;
962}
963
Eric Augerda385302021-04-05 18:39:38 +0200964static int vgic_uaccess_write(struct kvm_vcpu *vcpu, struct vgic_io_device *iodev,
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530965 gpa_t addr, const u32 *val)
966{
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530967 const struct vgic_register_region *region;
968 struct kvm_vcpu *r_vcpu;
969
970 region = vgic_get_mmio_region(vcpu, iodev, addr, sizeof(u32));
971 if (!region)
972 return 0;
973
974 r_vcpu = iodev->redist_vcpu ? iodev->redist_vcpu : vcpu;
975 if (region->uaccess_write)
Christoffer Dallc6e09172018-07-16 15:06:23 +0200976 return region->uaccess_write(r_vcpu, addr, sizeof(u32), *val);
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530977
Christoffer Dallc6e09172018-07-16 15:06:23 +0200978 region->write(r_vcpu, addr, sizeof(u32), *val);
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530979 return 0;
980}
981
982/*
983 * Userland access to VGIC registers.
984 */
985int vgic_uaccess(struct kvm_vcpu *vcpu, struct vgic_io_device *dev,
986 bool is_write, int offset, u32 *val)
987{
988 if (is_write)
Eric Augerda385302021-04-05 18:39:38 +0200989 return vgic_uaccess_write(vcpu, dev, offset, val);
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530990 else
Eric Augerda385302021-04-05 18:39:38 +0200991 return vgic_uaccess_read(vcpu, dev, offset, val);
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530992}
993
Marc Zyngier4493b1c2016-04-26 11:06:12 +0100994static int dispatch_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *dev,
995 gpa_t addr, int len, void *val)
996{
997 struct vgic_io_device *iodev = kvm_to_vgic_iodev(dev);
998 const struct vgic_register_region *region;
Andre Przywara59c5ab42016-07-15 12:43:30 +0100999 unsigned long data = 0;
Marc Zyngier4493b1c2016-04-26 11:06:12 +01001000
Vijaya Kumar K2df903a2017-01-26 19:50:46 +05301001 region = vgic_get_mmio_region(vcpu, iodev, addr, len);
1002 if (!region) {
Marc Zyngier4493b1c2016-04-26 11:06:12 +01001003 memset(val, 0, len);
1004 return 0;
1005 }
1006
Andre Przywara59c5ab42016-07-15 12:43:30 +01001007 switch (iodev->iodev_type) {
1008 case IODEV_CPUIF:
Eric Auger9d5fcb92016-07-18 10:57:36 +00001009 data = region->read(vcpu, addr, len);
1010 break;
Andre Przywara59c5ab42016-07-15 12:43:30 +01001011 case IODEV_DIST:
1012 data = region->read(vcpu, addr, len);
1013 break;
1014 case IODEV_REDIST:
1015 data = region->read(iodev->redist_vcpu, addr, len);
1016 break;
1017 case IODEV_ITS:
1018 data = region->its_read(vcpu->kvm, iodev->its, addr, len);
1019 break;
1020 }
1021
Marc Zyngier4493b1c2016-04-26 11:06:12 +01001022 vgic_data_host_to_mmio_bus(val, len, data);
1023 return 0;
1024}
1025
1026static int dispatch_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *dev,
1027 gpa_t addr, int len, const void *val)
1028{
1029 struct vgic_io_device *iodev = kvm_to_vgic_iodev(dev);
1030 const struct vgic_register_region *region;
Marc Zyngier4493b1c2016-04-26 11:06:12 +01001031 unsigned long data = vgic_data_mmio_bus_to_host(val, len);
1032
Vijaya Kumar K2df903a2017-01-26 19:50:46 +05301033 region = vgic_get_mmio_region(vcpu, iodev, addr, len);
1034 if (!region)
Marc Zyngier4493b1c2016-04-26 11:06:12 +01001035 return 0;
1036
Andre Przywara59c5ab42016-07-15 12:43:30 +01001037 switch (iodev->iodev_type) {
1038 case IODEV_CPUIF:
Eric Auger9d5fcb92016-07-18 10:57:36 +00001039 region->write(vcpu, addr, len, data);
Andre Przywara59c5ab42016-07-15 12:43:30 +01001040 break;
1041 case IODEV_DIST:
1042 region->write(vcpu, addr, len, data);
1043 break;
1044 case IODEV_REDIST:
1045 region->write(iodev->redist_vcpu, addr, len, data);
1046 break;
1047 case IODEV_ITS:
1048 region->its_write(vcpu->kvm, iodev->its, addr, len, data);
1049 break;
1050 }
1051
Marc Zyngier4493b1c2016-04-26 11:06:12 +01001052 return 0;
1053}
1054
Rikard Falkeborn636dcd02021-12-04 22:35:18 +01001055const struct kvm_io_device_ops kvm_io_gic_ops = {
Marc Zyngier4493b1c2016-04-26 11:06:12 +01001056 .read = dispatch_mmio_read,
1057 .write = dispatch_mmio_write,
1058};
Andre Przywarafb848db2016-04-26 21:32:49 +01001059
1060int vgic_register_dist_iodev(struct kvm *kvm, gpa_t dist_base_address,
1061 enum vgic_type type)
1062{
1063 struct vgic_io_device *io_device = &kvm->arch.vgic.dist_iodev;
1064 int ret = 0;
1065 unsigned int len;
1066
1067 switch (type) {
1068 case VGIC_V2:
1069 len = vgic_v2_init_dist_iodev(io_device);
1070 break;
Andre Przywaraed9b8ce2015-12-01 14:34:34 +00001071 case VGIC_V3:
1072 len = vgic_v3_init_dist_iodev(io_device);
1073 break;
Andre Przywarafb848db2016-04-26 21:32:49 +01001074 default:
1075 BUG_ON(1);
1076 }
1077
1078 io_device->base_addr = dist_base_address;
Andre Przywara59c5ab42016-07-15 12:43:30 +01001079 io_device->iodev_type = IODEV_DIST;
Andre Przywarafb848db2016-04-26 21:32:49 +01001080 io_device->redist_vcpu = NULL;
1081
1082 mutex_lock(&kvm->slots_lock);
1083 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, dist_base_address,
1084 len, &io_device->dev);
1085 mutex_unlock(&kvm->slots_lock);
1086
1087 return ret;
1088}