blob: bf7ec4a78497c9da44b49062fd5bc3e14f2967c1 [file] [log] [blame]
Thomas Gleixner1802d0b2019-05-27 08:55:21 +02001// SPDX-License-Identifier: GPL-2.0-only
Andre Przywaraed9b8ce2015-12-01 14:34:34 +00002/*
3 * VGICv3 MMIO handling functions
Andre Przywaraed9b8ce2015-12-01 14:34:34 +00004 */
5
Marc Zyngier2291ff22020-03-04 20:33:27 +00006#include <linux/bitfield.h>
Andre Przywaraed9b8ce2015-12-01 14:34:34 +00007#include <linux/irqchip/arm-gic-v3.h>
8#include <linux/kvm.h>
9#include <linux/kvm_host.h>
Marc Zyngieref1820b2020-03-04 20:33:25 +000010#include <linux/interrupt.h>
Andre Przywaraed9b8ce2015-12-01 14:34:34 +000011#include <kvm/iodev.h>
12#include <kvm/arm_vgic.h>
13
14#include <asm/kvm_emulate.h>
Vijaya Kumar K94574c92017-01-26 19:50:47 +053015#include <asm/kvm_arm.h>
16#include <asm/kvm_mmu.h>
Andre Przywaraed9b8ce2015-12-01 14:34:34 +000017
18#include "vgic.h"
19#include "vgic-mmio.h"
20
Andre Przywara741972d2016-01-27 14:54:46 +000021/* extract @num bytes at @offset bytes offset in data */
Vladimir Murzind7d0a112016-09-12 15:49:20 +010022unsigned long extract_bytes(u64 data, unsigned int offset,
Andre Przywara424c3382016-07-15 12:43:32 +010023 unsigned int num)
Andre Przywara741972d2016-01-27 14:54:46 +000024{
25 return (data >> (offset * 8)) & GENMASK_ULL(num * 8 - 1, 0);
26}
27
Andre Przywara0aa1de52016-07-15 12:43:29 +010028/* allows updates of any half of a 64-bit register (or the whole thing) */
Andre Przywara424c3382016-07-15 12:43:32 +010029u64 update_64bit_reg(u64 reg, unsigned int offset, unsigned int len,
30 unsigned long val)
Andre Przywara0aa1de52016-07-15 12:43:29 +010031{
32 int lower = (offset & 4) * 8;
33 int upper = lower + 8 * len - 1;
34
35 reg &= ~GENMASK_ULL(upper, lower);
36 val &= GENMASK_ULL(len * 8 - 1, 0);
37
38 return reg | ((u64)val << lower);
39}
40
Andre Przywara59c5ab42016-07-15 12:43:30 +010041bool vgic_has_its(struct kvm *kvm)
42{
43 struct vgic_dist *dist = &kvm->arch.vgic;
44
45 if (dist->vgic_model != KVM_DEV_TYPE_ARM_VGIC_V3)
46 return false;
47
Andre Przywara1085fdc2016-07-15 12:43:31 +010048 return dist->has_its;
Andre Przywara59c5ab42016-07-15 12:43:30 +010049}
50
Marc Zyngiere7c48052017-10-27 15:28:37 +010051bool vgic_supports_direct_msis(struct kvm *kvm)
52{
Marc Zyngier958e8e12020-04-24 15:30:30 +010053 return (kvm_vgic_global_state.has_gicv4_1 ||
54 (kvm_vgic_global_state.has_gicv4 && vgic_has_its(kvm)));
Marc Zyngiere7c48052017-10-27 15:28:37 +010055}
56
Christoffer Dalld53c2c292018-07-16 15:06:25 +020057/*
58 * The Revision field in the IIDR have the following meanings:
59 *
60 * Revision 2: Interrupt groups are guest-configurable and signaled using
61 * their configured groups.
62 */
63
Andre Przywarafd59ed32016-01-27 14:54:30 +000064static unsigned long vgic_mmio_read_v3_misc(struct kvm_vcpu *vcpu,
65 gpa_t addr, unsigned int len)
66{
Christoffer Dallaa075b02018-07-16 15:06:19 +020067 struct vgic_dist *vgic = &vcpu->kvm->arch.vgic;
Andre Przywarafd59ed32016-01-27 14:54:30 +000068 u32 value = 0;
69
70 switch (addr & 0x0c) {
71 case GICD_CTLR:
Christoffer Dallaa075b02018-07-16 15:06:19 +020072 if (vgic->enabled)
Andre Przywarafd59ed32016-01-27 14:54:30 +000073 value |= GICD_CTLR_ENABLE_SS_G1;
74 value |= GICD_CTLR_ARE_NS | GICD_CTLR_DS;
Marc Zyngier2291ff22020-03-04 20:33:27 +000075 if (vgic->nassgireq)
76 value |= GICD_CTLR_nASSGIreq;
Andre Przywarafd59ed32016-01-27 14:54:30 +000077 break;
78 case GICD_TYPER:
Christoffer Dallaa075b02018-07-16 15:06:19 +020079 value = vgic->nr_spis + VGIC_NR_PRIVATE_IRQS;
Andre Przywarafd59ed32016-01-27 14:54:30 +000080 value = (value >> 5) - 1;
Andre Przywara0e4e82f2016-07-15 12:43:38 +010081 if (vgic_has_its(vcpu->kvm)) {
82 value |= (INTERRUPT_ID_BITS_ITS - 1) << 19;
83 value |= GICD_TYPER_LPIS;
84 } else {
85 value |= (INTERRUPT_ID_BITS_SPIS - 1) << 19;
86 }
Andre Przywarafd59ed32016-01-27 14:54:30 +000087 break;
Marc Zyngier2291ff22020-03-04 20:33:27 +000088 case GICD_TYPER2:
Lorenzo Pieralisi46135d62021-03-17 10:07:19 +000089 if (kvm_vgic_global_state.has_gicv4_1 && gic_cpuif_has_vsgi())
Marc Zyngier2291ff22020-03-04 20:33:27 +000090 value = GICD_TYPER2_nASSGIcap;
91 break;
Andre Przywarafd59ed32016-01-27 14:54:30 +000092 case GICD_IIDR:
Christoffer Dalla2dca212018-07-16 15:06:18 +020093 value = (PRODUCT_ID_KVM << GICD_IIDR_PRODUCT_ID_SHIFT) |
Christoffer Dallaa075b02018-07-16 15:06:19 +020094 (vgic->implementation_rev << GICD_IIDR_REVISION_SHIFT) |
Christoffer Dalla2dca212018-07-16 15:06:18 +020095 (IMPLEMENTER_ARM << GICD_IIDR_IMPLEMENTER_SHIFT);
Andre Przywarafd59ed32016-01-27 14:54:30 +000096 break;
97 default:
98 return 0;
99 }
100
101 return value;
102}
103
104static void vgic_mmio_write_v3_misc(struct kvm_vcpu *vcpu,
105 gpa_t addr, unsigned int len,
106 unsigned long val)
107{
108 struct vgic_dist *dist = &vcpu->kvm->arch.vgic;
Andre Przywarafd59ed32016-01-27 14:54:30 +0000109
110 switch (addr & 0x0c) {
Marc Zyngier2291ff22020-03-04 20:33:27 +0000111 case GICD_CTLR: {
112 bool was_enabled, is_hwsgi;
113
114 mutex_lock(&vcpu->kvm->lock);
115
116 was_enabled = dist->enabled;
117 is_hwsgi = dist->nassgireq;
118
Andre Przywarafd59ed32016-01-27 14:54:30 +0000119 dist->enabled = val & GICD_CTLR_ENABLE_SS_G1;
120
Marc Zyngier2291ff22020-03-04 20:33:27 +0000121 /* Not a GICv4.1? No HW SGIs */
Lorenzo Pieralisi46135d62021-03-17 10:07:19 +0000122 if (!kvm_vgic_global_state.has_gicv4_1 || !gic_cpuif_has_vsgi())
Marc Zyngier2291ff22020-03-04 20:33:27 +0000123 val &= ~GICD_CTLR_nASSGIreq;
124
125 /* Dist stays enabled? nASSGIreq is RO */
126 if (was_enabled && dist->enabled) {
127 val &= ~GICD_CTLR_nASSGIreq;
128 val |= FIELD_PREP(GICD_CTLR_nASSGIreq, is_hwsgi);
129 }
130
131 /* Switching HW SGIs? */
132 dist->nassgireq = val & GICD_CTLR_nASSGIreq;
133 if (is_hwsgi != dist->nassgireq)
134 vgic_v4_configure_vsgis(vcpu->kvm);
135
Marc Zyngierd9c38722020-03-04 20:33:28 +0000136 if (kvm_vgic_global_state.has_gicv4_1 &&
137 was_enabled != dist->enabled)
138 kvm_make_all_cpus_request(vcpu->kvm, KVM_REQ_RELOAD_GICv4);
139 else if (!was_enabled && dist->enabled)
Andre Przywarafd59ed32016-01-27 14:54:30 +0000140 vgic_kick_vcpus(vcpu->kvm);
Marc Zyngier2291ff22020-03-04 20:33:27 +0000141
142 mutex_unlock(&vcpu->kvm->lock);
Andre Przywarafd59ed32016-01-27 14:54:30 +0000143 break;
Marc Zyngier2291ff22020-03-04 20:33:27 +0000144 }
Andre Przywarafd59ed32016-01-27 14:54:30 +0000145 case GICD_TYPER:
Marc Zyngier2291ff22020-03-04 20:33:27 +0000146 case GICD_TYPER2:
Andre Przywarafd59ed32016-01-27 14:54:30 +0000147 case GICD_IIDR:
Marc Zyngier2291ff22020-03-04 20:33:27 +0000148 /* This is at best for documentation purposes... */
Andre Przywarafd59ed32016-01-27 14:54:30 +0000149 return;
150 }
151}
152
Christoffer Dallb489edc2018-07-16 15:06:24 +0200153static int vgic_mmio_uaccess_write_v3_misc(struct kvm_vcpu *vcpu,
154 gpa_t addr, unsigned int len,
155 unsigned long val)
156{
Marc Zyngier2291ff22020-03-04 20:33:27 +0000157 struct vgic_dist *dist = &vcpu->kvm->arch.vgic;
158
Christoffer Dallb489edc2018-07-16 15:06:24 +0200159 switch (addr & 0x0c) {
Marc Zyngier2291ff22020-03-04 20:33:27 +0000160 case GICD_TYPER2:
Christoffer Dallb489edc2018-07-16 15:06:24 +0200161 case GICD_IIDR:
162 if (val != vgic_mmio_read_v3_misc(vcpu, addr, len))
163 return -EINVAL;
Marc Zyngier2291ff22020-03-04 20:33:27 +0000164 return 0;
165 case GICD_CTLR:
166 /* Not a GICv4.1? No HW SGIs */
167 if (!kvm_vgic_global_state.has_gicv4_1)
168 val &= ~GICD_CTLR_nASSGIreq;
169
170 dist->enabled = val & GICD_CTLR_ENABLE_SS_G1;
171 dist->nassgireq = val & GICD_CTLR_nASSGIreq;
172 return 0;
Christoffer Dallb489edc2018-07-16 15:06:24 +0200173 }
174
175 vgic_mmio_write_v3_misc(vcpu, addr, len, val);
176 return 0;
177}
178
Andre Przywara78a714a2016-01-25 16:45:37 +0000179static unsigned long vgic_mmio_read_irouter(struct kvm_vcpu *vcpu,
180 gpa_t addr, unsigned int len)
181{
182 int intid = VGIC_ADDR_TO_INTID(addr, 64);
183 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, NULL, intid);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100184 unsigned long ret = 0;
Andre Przywara78a714a2016-01-25 16:45:37 +0000185
186 if (!irq)
187 return 0;
188
189 /* The upper word is RAZ for us. */
Andre Przywara5dd4b922016-07-15 12:43:27 +0100190 if (!(addr & 4))
191 ret = extract_bytes(READ_ONCE(irq->mpidr), addr & 7, len);
Andre Przywara78a714a2016-01-25 16:45:37 +0000192
Andre Przywara5dd4b922016-07-15 12:43:27 +0100193 vgic_put_irq(vcpu->kvm, irq);
194 return ret;
Andre Przywara78a714a2016-01-25 16:45:37 +0000195}
196
197static void vgic_mmio_write_irouter(struct kvm_vcpu *vcpu,
198 gpa_t addr, unsigned int len,
199 unsigned long val)
200{
201 int intid = VGIC_ADDR_TO_INTID(addr, 64);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100202 struct vgic_irq *irq;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200203 unsigned long flags;
Andre Przywara78a714a2016-01-25 16:45:37 +0000204
205 /* The upper word is WI for us since we don't implement Aff3. */
206 if (addr & 4)
207 return;
208
Andre Przywara5dd4b922016-07-15 12:43:27 +0100209 irq = vgic_get_irq(vcpu->kvm, NULL, intid);
210
211 if (!irq)
212 return;
213
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000214 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywara78a714a2016-01-25 16:45:37 +0000215
216 /* We only care about and preserve Aff0, Aff1 and Aff2. */
217 irq->mpidr = val & GENMASK(23, 0);
218 irq->target_vcpu = kvm_mpidr_to_vcpu(vcpu->kvm, irq->mpidr);
219
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000220 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Andre Przywara5dd4b922016-07-15 12:43:27 +0100221 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara78a714a2016-01-25 16:45:37 +0000222}
223
Andre Przywara59c5ab42016-07-15 12:43:30 +0100224static unsigned long vgic_mmio_read_v3r_ctlr(struct kvm_vcpu *vcpu,
225 gpa_t addr, unsigned int len)
226{
227 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
228
229 return vgic_cpu->lpis_enabled ? GICR_CTLR_ENABLE_LPIS : 0;
230}
231
232
233static void vgic_mmio_write_v3r_ctlr(struct kvm_vcpu *vcpu,
234 gpa_t addr, unsigned int len,
235 unsigned long val)
236{
237 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
238 bool was_enabled = vgic_cpu->lpis_enabled;
239
240 if (!vgic_has_its(vcpu->kvm))
241 return;
242
243 vgic_cpu->lpis_enabled = val & GICR_CTLR_ENABLE_LPIS;
244
Marc Zyngierb4931af2019-05-22 18:16:49 +0100245 if (was_enabled && !vgic_cpu->lpis_enabled) {
Marc Zyngier96085b92019-04-02 06:36:23 +0100246 vgic_flush_pending_lpis(vcpu);
Marc Zyngierb4931af2019-05-22 18:16:49 +0100247 vgic_its_invalidate_cache(vcpu->kvm);
248 }
Marc Zyngier96085b92019-04-02 06:36:23 +0100249
Andre Przywara0e4e82f2016-07-15 12:43:38 +0100250 if (!was_enabled && vgic_cpu->lpis_enabled)
251 vgic_enable_lpis(vcpu);
Andre Przywara59c5ab42016-07-15 12:43:30 +0100252}
253
Eric Auger28e9d4b2021-04-05 18:39:40 +0200254static bool vgic_mmio_vcpu_rdist_is_last(struct kvm_vcpu *vcpu)
255{
256 struct vgic_dist *vgic = &vcpu->kvm->arch.vgic;
257 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
258 struct vgic_redist_region *iter, *rdreg = vgic_cpu->rdreg;
259
260 if (!rdreg)
261 return false;
262
263 if (vgic_cpu->rdreg_index < rdreg->free_index - 1) {
264 return false;
265 } else if (rdreg->count && vgic_cpu->rdreg_index == (rdreg->count - 1)) {
266 struct list_head *rd_regions = &vgic->rd_regions;
267 gpa_t end = rdreg->base + rdreg->count * KVM_VGIC_V3_REDIST_SIZE;
268
269 /*
270 * the rdist is the last one of the redist region,
271 * check whether there is no other contiguous rdist region
272 */
273 list_for_each_entry(iter, rd_regions, list) {
274 if (iter->base == end && iter->free_index > 0)
275 return false;
276 }
277 }
278 return true;
279}
280
Andre Przywara741972d2016-01-27 14:54:46 +0000281static unsigned long vgic_mmio_read_v3r_typer(struct kvm_vcpu *vcpu,
282 gpa_t addr, unsigned int len)
283{
284 unsigned long mpidr = kvm_vcpu_get_mpidr_aff(vcpu);
285 int target_vcpu_id = vcpu->vcpu_id;
286 u64 value;
287
Vladimir Murzine533a372016-09-12 15:49:19 +0100288 value = (u64)(mpidr & GENMASK(23, 0)) << 32;
Andre Przywara741972d2016-01-27 14:54:46 +0000289 value |= ((target_vcpu_id & 0xffff) << 8);
Eric Augerba7b3f12018-05-22 09:55:10 +0200290
Eric Auger28e9d4b2021-04-05 18:39:40 +0200291 if (vgic_has_its(vcpu->kvm))
292 value |= GICR_TYPER_PLPIS;
293
294 if (vgic_mmio_vcpu_rdist_is_last(vcpu))
Andre Przywara741972d2016-01-27 14:54:46 +0000295 value |= GICR_TYPER_LAST;
296
297 return extract_bytes(value, addr & 7, len);
298}
299
300static unsigned long vgic_mmio_read_v3r_iidr(struct kvm_vcpu *vcpu,
301 gpa_t addr, unsigned int len)
302{
303 return (PRODUCT_ID_KVM << 24) | (IMPLEMENTER_ARM << 0);
304}
305
Andre Przywara54f59d22016-01-22 18:18:52 +0000306static unsigned long vgic_mmio_read_v3_idregs(struct kvm_vcpu *vcpu,
307 gpa_t addr, unsigned int len)
308{
309 switch (addr & 0xffff) {
310 case GICD_PIDR2:
311 /* report a GICv3 compliant implementation */
312 return 0x3b;
313 }
314
315 return 0;
316}
317
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530318static unsigned long vgic_v3_uaccess_read_pending(struct kvm_vcpu *vcpu,
319 gpa_t addr, unsigned int len)
320{
321 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
322 u32 value = 0;
323 int i;
324
325 /*
326 * pending state of interrupt is latched in pending_latch variable.
327 * Userspace will save and restore pending state and line_level
328 * separately.
Mauro Carvalho Chehab72ef5e52020-04-14 18:48:35 +0200329 * Refer to Documentation/virt/kvm/devices/arm-vgic-v3.rst
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530330 * for handling of ISPENDR and ICPENDR.
331 */
332 for (i = 0; i < len * 8; i++) {
333 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
Marc Zyngieref1820b2020-03-04 20:33:25 +0000334 bool state = irq->pending_latch;
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530335
Marc Zyngieref1820b2020-03-04 20:33:25 +0000336 if (irq->hw && vgic_irq_is_sgi(irq->intid)) {
337 int err;
338
339 err = irq_get_irqchip_state(irq->host_irq,
340 IRQCHIP_STATE_PENDING,
341 &state);
342 WARN_ON(err);
343 }
344
345 if (state)
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530346 value |= (1U << i);
347
348 vgic_put_irq(vcpu->kvm, irq);
349 }
350
351 return value;
352}
353
Christoffer Dallc6e09172018-07-16 15:06:23 +0200354static int vgic_v3_uaccess_write_pending(struct kvm_vcpu *vcpu,
355 gpa_t addr, unsigned int len,
356 unsigned long val)
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530357{
358 u32 intid = VGIC_ADDR_TO_INTID(addr, 1);
359 int i;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200360 unsigned long flags;
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530361
362 for (i = 0; i < len * 8; i++) {
363 struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i);
364
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000365 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530366 if (test_bit(i, &val)) {
367 /*
368 * pending_latch is set irrespective of irq type
369 * (level or edge) to avoid dependency that VM should
370 * restore irq config before pending info.
371 */
372 irq->pending_latch = true;
Christoffer Dall006df0f2016-10-16 22:19:11 +0200373 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530374 } else {
375 irq->pending_latch = false;
Julien Thierry8fa3adb2019-01-07 15:06:15 +0000376 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530377 }
378
379 vgic_put_irq(vcpu->kvm, irq);
380 }
Christoffer Dallc6e09172018-07-16 15:06:23 +0200381
382 return 0;
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530383}
384
Andre Przywara0aa1de52016-07-15 12:43:29 +0100385/* We want to avoid outer shareable. */
386u64 vgic_sanitise_shareability(u64 field)
387{
388 switch (field) {
389 case GIC_BASER_OuterShareable:
390 return GIC_BASER_InnerShareable;
391 default:
392 return field;
393 }
394}
395
396/* Avoid any inner non-cacheable mapping. */
397u64 vgic_sanitise_inner_cacheability(u64 field)
398{
399 switch (field) {
400 case GIC_BASER_CACHE_nCnB:
401 case GIC_BASER_CACHE_nC:
402 return GIC_BASER_CACHE_RaWb;
403 default:
404 return field;
405 }
406}
407
408/* Non-cacheable or same-as-inner are OK. */
409u64 vgic_sanitise_outer_cacheability(u64 field)
410{
411 switch (field) {
412 case GIC_BASER_CACHE_SameAsInner:
413 case GIC_BASER_CACHE_nC:
414 return field;
415 default:
Alexander Graf73153212020-07-01 16:02:06 +0200416 return GIC_BASER_CACHE_SameAsInner;
Andre Przywara0aa1de52016-07-15 12:43:29 +0100417 }
418}
419
420u64 vgic_sanitise_field(u64 reg, u64 field_mask, int field_shift,
421 u64 (*sanitise_fn)(u64))
422{
423 u64 field = (reg & field_mask) >> field_shift;
424
425 field = sanitise_fn(field) << field_shift;
426 return (reg & ~field_mask) | field;
427}
428
429#define PROPBASER_RES0_MASK \
430 (GENMASK_ULL(63, 59) | GENMASK_ULL(55, 52) | GENMASK_ULL(6, 5))
431#define PENDBASER_RES0_MASK \
432 (BIT_ULL(63) | GENMASK_ULL(61, 59) | GENMASK_ULL(55, 52) | \
433 GENMASK_ULL(15, 12) | GENMASK_ULL(6, 0))
434
435static u64 vgic_sanitise_pendbaser(u64 reg)
436{
437 reg = vgic_sanitise_field(reg, GICR_PENDBASER_SHAREABILITY_MASK,
438 GICR_PENDBASER_SHAREABILITY_SHIFT,
439 vgic_sanitise_shareability);
440 reg = vgic_sanitise_field(reg, GICR_PENDBASER_INNER_CACHEABILITY_MASK,
441 GICR_PENDBASER_INNER_CACHEABILITY_SHIFT,
442 vgic_sanitise_inner_cacheability);
443 reg = vgic_sanitise_field(reg, GICR_PENDBASER_OUTER_CACHEABILITY_MASK,
444 GICR_PENDBASER_OUTER_CACHEABILITY_SHIFT,
445 vgic_sanitise_outer_cacheability);
446
447 reg &= ~PENDBASER_RES0_MASK;
Andre Przywara0aa1de52016-07-15 12:43:29 +0100448
449 return reg;
450}
451
452static u64 vgic_sanitise_propbaser(u64 reg)
453{
454 reg = vgic_sanitise_field(reg, GICR_PROPBASER_SHAREABILITY_MASK,
455 GICR_PROPBASER_SHAREABILITY_SHIFT,
456 vgic_sanitise_shareability);
457 reg = vgic_sanitise_field(reg, GICR_PROPBASER_INNER_CACHEABILITY_MASK,
458 GICR_PROPBASER_INNER_CACHEABILITY_SHIFT,
459 vgic_sanitise_inner_cacheability);
460 reg = vgic_sanitise_field(reg, GICR_PROPBASER_OUTER_CACHEABILITY_MASK,
461 GICR_PROPBASER_OUTER_CACHEABILITY_SHIFT,
462 vgic_sanitise_outer_cacheability);
463
464 reg &= ~PROPBASER_RES0_MASK;
Andre Przywara0aa1de52016-07-15 12:43:29 +0100465 return reg;
466}
467
468static unsigned long vgic_mmio_read_propbase(struct kvm_vcpu *vcpu,
469 gpa_t addr, unsigned int len)
470{
471 struct vgic_dist *dist = &vcpu->kvm->arch.vgic;
472
473 return extract_bytes(dist->propbaser, addr & 7, len);
474}
475
476static void vgic_mmio_write_propbase(struct kvm_vcpu *vcpu,
477 gpa_t addr, unsigned int len,
478 unsigned long val)
479{
480 struct vgic_dist *dist = &vcpu->kvm->arch.vgic;
481 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
Christoffer Dalld9ae4492016-08-03 18:03:44 +0200482 u64 old_propbaser, propbaser;
Andre Przywara0aa1de52016-07-15 12:43:29 +0100483
484 /* Storing a value with LPIs already enabled is undefined */
485 if (vgic_cpu->lpis_enabled)
486 return;
487
Christoffer Dalld9ae4492016-08-03 18:03:44 +0200488 do {
Christoffer Dall3af4e412017-08-02 16:28:42 +0200489 old_propbaser = READ_ONCE(dist->propbaser);
Christoffer Dalld9ae4492016-08-03 18:03:44 +0200490 propbaser = old_propbaser;
491 propbaser = update_64bit_reg(propbaser, addr & 4, len, val);
492 propbaser = vgic_sanitise_propbaser(propbaser);
493 } while (cmpxchg64(&dist->propbaser, old_propbaser,
494 propbaser) != old_propbaser);
Andre Przywara0aa1de52016-07-15 12:43:29 +0100495}
496
497static unsigned long vgic_mmio_read_pendbase(struct kvm_vcpu *vcpu,
498 gpa_t addr, unsigned int len)
499{
500 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
Zenghui Yu5f675c52019-12-20 19:18:33 +0800501 u64 value = vgic_cpu->pendbaser;
Andre Przywara0aa1de52016-07-15 12:43:29 +0100502
Zenghui Yu5f675c52019-12-20 19:18:33 +0800503 value &= ~GICR_PENDBASER_PTZ;
504
505 return extract_bytes(value, addr & 7, len);
Andre Przywara0aa1de52016-07-15 12:43:29 +0100506}
507
508static void vgic_mmio_write_pendbase(struct kvm_vcpu *vcpu,
509 gpa_t addr, unsigned int len,
510 unsigned long val)
511{
512 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
Christoffer Dalld9ae4492016-08-03 18:03:44 +0200513 u64 old_pendbaser, pendbaser;
Andre Przywara0aa1de52016-07-15 12:43:29 +0100514
515 /* Storing a value with LPIs already enabled is undefined */
516 if (vgic_cpu->lpis_enabled)
517 return;
518
Christoffer Dalld9ae4492016-08-03 18:03:44 +0200519 do {
Christoffer Dall3af4e412017-08-02 16:28:42 +0200520 old_pendbaser = READ_ONCE(vgic_cpu->pendbaser);
Christoffer Dalld9ae4492016-08-03 18:03:44 +0200521 pendbaser = old_pendbaser;
522 pendbaser = update_64bit_reg(pendbaser, addr & 4, len, val);
523 pendbaser = vgic_sanitise_pendbaser(pendbaser);
524 } while (cmpxchg64(&vgic_cpu->pendbaser, old_pendbaser,
525 pendbaser) != old_pendbaser);
Andre Przywara0aa1de52016-07-15 12:43:29 +0100526}
527
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000528/*
529 * The GICv3 per-IRQ registers are split to control PPIs and SGIs in the
530 * redistributors, while SPIs are covered by registers in the distributor
531 * block. Trying to set private IRQs in this block gets ignored.
532 * We take some special care here to fix the calculation of the register
533 * offset.
534 */
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530535#define REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(off, rd, wr, ur, uw, bpi, acc) \
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000536 { \
537 .reg_offset = off, \
538 .bits_per_irq = bpi, \
539 .len = (bpi * VGIC_NR_PRIVATE_IRQS) / 8, \
540 .access_flags = acc, \
541 .read = vgic_mmio_read_raz, \
542 .write = vgic_mmio_write_wi, \
543 }, { \
544 .reg_offset = off + (bpi * VGIC_NR_PRIVATE_IRQS) / 8, \
545 .bits_per_irq = bpi, \
546 .len = (bpi * (1024 - VGIC_NR_PRIVATE_IRQS)) / 8, \
547 .access_flags = acc, \
548 .read = rd, \
549 .write = wr, \
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530550 .uaccess_read = ur, \
551 .uaccess_write = uw, \
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000552 }
553
554static const struct vgic_register_region vgic_v3_dist_registers[] = {
Christoffer Dallb489edc2018-07-16 15:06:24 +0200555 REGISTER_DESC_WITH_LENGTH_UACCESS(GICD_CTLR,
556 vgic_mmio_read_v3_misc, vgic_mmio_write_v3_misc,
557 NULL, vgic_mmio_uaccess_write_v3_misc,
558 16, VGIC_ACCESS_32bit),
Vijaya Kumar K94574c92017-01-26 19:50:47 +0530559 REGISTER_DESC_WITH_LENGTH(GICD_STATUSR,
560 vgic_mmio_read_rao, vgic_mmio_write_wi, 4,
561 VGIC_ACCESS_32bit),
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000562 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_IGROUPR,
Christoffer Dalld53c2c292018-07-16 15:06:25 +0200563 vgic_mmio_read_group, vgic_mmio_write_group, NULL, NULL, 1,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000564 VGIC_ACCESS_32bit),
565 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_ISENABLER,
Marc Zyngier41ee52e2020-04-09 13:05:26 +0100566 vgic_mmio_read_enable, vgic_mmio_write_senable,
567 NULL, vgic_uaccess_write_senable, 1,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000568 VGIC_ACCESS_32bit),
569 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_ICENABLER,
Marc Zyngier41ee52e2020-04-09 13:05:26 +0100570 vgic_mmio_read_enable, vgic_mmio_write_cenable,
571 NULL, vgic_uaccess_write_cenable, 1,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000572 VGIC_ACCESS_32bit),
573 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_ISPENDR,
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530574 vgic_mmio_read_pending, vgic_mmio_write_spending,
575 vgic_v3_uaccess_read_pending, vgic_v3_uaccess_write_pending, 1,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000576 VGIC_ACCESS_32bit),
577 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_ICPENDR,
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530578 vgic_mmio_read_pending, vgic_mmio_write_cpending,
Christoffer Dallc6e09172018-07-16 15:06:23 +0200579 vgic_mmio_read_raz, vgic_mmio_uaccess_write_wi, 1,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000580 VGIC_ACCESS_32bit),
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530581 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_ISACTIVER,
Christoffer Dall31971912017-05-16 09:44:39 +0200582 vgic_mmio_read_active, vgic_mmio_write_sactive,
Marc Zyngier9a50ebb2020-04-06 16:21:20 +0100583 vgic_uaccess_read_active, vgic_mmio_uaccess_write_sactive, 1,
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530584 VGIC_ACCESS_32bit),
585 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_ICACTIVER,
Christoffer Dall31971912017-05-16 09:44:39 +0200586 vgic_mmio_read_active, vgic_mmio_write_cactive,
Marc Zyngier9a50ebb2020-04-06 16:21:20 +0100587 vgic_uaccess_read_active, vgic_mmio_uaccess_write_cactive,
Christoffer Dall31971912017-05-16 09:44:39 +0200588 1, VGIC_ACCESS_32bit),
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530589 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_IPRIORITYR,
590 vgic_mmio_read_priority, vgic_mmio_write_priority, NULL, NULL,
591 8, VGIC_ACCESS_32bit | VGIC_ACCESS_8bit),
592 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_ITARGETSR,
593 vgic_mmio_read_raz, vgic_mmio_write_wi, NULL, NULL, 8,
594 VGIC_ACCESS_32bit | VGIC_ACCESS_8bit),
595 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_ICFGR,
596 vgic_mmio_read_config, vgic_mmio_write_config, NULL, NULL, 2,
597 VGIC_ACCESS_32bit),
598 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_IGRPMODR,
599 vgic_mmio_read_raz, vgic_mmio_write_wi, NULL, NULL, 1,
600 VGIC_ACCESS_32bit),
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000601 REGISTER_DESC_WITH_BITS_PER_IRQ_SHARED(GICD_IROUTER,
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530602 vgic_mmio_read_irouter, vgic_mmio_write_irouter, NULL, NULL, 64,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000603 VGIC_ACCESS_64bit | VGIC_ACCESS_32bit),
604 REGISTER_DESC_WITH_LENGTH(GICD_IDREGS,
Andre Przywara54f59d22016-01-22 18:18:52 +0000605 vgic_mmio_read_v3_idregs, vgic_mmio_write_wi, 48,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000606 VGIC_ACCESS_32bit),
607};
608
Eric Auger31097412019-08-23 19:33:30 +0200609static const struct vgic_register_region vgic_v3_rd_registers[] = {
610 /* RD_base registers */
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000611 REGISTER_DESC_WITH_LENGTH(GICR_CTLR,
Andre Przywara59c5ab42016-07-15 12:43:30 +0100612 vgic_mmio_read_v3r_ctlr, vgic_mmio_write_v3r_ctlr, 4,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000613 VGIC_ACCESS_32bit),
Vijaya Kumar K94574c92017-01-26 19:50:47 +0530614 REGISTER_DESC_WITH_LENGTH(GICR_STATUSR,
615 vgic_mmio_read_raz, vgic_mmio_write_wi, 4,
616 VGIC_ACCESS_32bit),
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000617 REGISTER_DESC_WITH_LENGTH(GICR_IIDR,
Andre Przywara741972d2016-01-27 14:54:46 +0000618 vgic_mmio_read_v3r_iidr, vgic_mmio_write_wi, 4,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000619 VGIC_ACCESS_32bit),
Zenghui Yu23bde342020-11-17 23:16:29 +0800620 REGISTER_DESC_WITH_LENGTH_UACCESS(GICR_TYPER,
621 vgic_mmio_read_v3r_typer, vgic_mmio_write_wi,
Eric Auger28e9d4b2021-04-05 18:39:40 +0200622 NULL, vgic_mmio_uaccess_write_wi, 8,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000623 VGIC_ACCESS_64bit | VGIC_ACCESS_32bit),
Vijaya Kumar K94574c92017-01-26 19:50:47 +0530624 REGISTER_DESC_WITH_LENGTH(GICR_WAKER,
625 vgic_mmio_read_raz, vgic_mmio_write_wi, 4,
626 VGIC_ACCESS_32bit),
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000627 REGISTER_DESC_WITH_LENGTH(GICR_PROPBASER,
Andre Przywara0aa1de52016-07-15 12:43:29 +0100628 vgic_mmio_read_propbase, vgic_mmio_write_propbase, 8,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000629 VGIC_ACCESS_64bit | VGIC_ACCESS_32bit),
630 REGISTER_DESC_WITH_LENGTH(GICR_PENDBASER,
Andre Przywara0aa1de52016-07-15 12:43:29 +0100631 vgic_mmio_read_pendbase, vgic_mmio_write_pendbase, 8,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000632 VGIC_ACCESS_64bit | VGIC_ACCESS_32bit),
633 REGISTER_DESC_WITH_LENGTH(GICR_IDREGS,
Andre Przywara54f59d22016-01-22 18:18:52 +0000634 vgic_mmio_read_v3_idregs, vgic_mmio_write_wi, 48,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000635 VGIC_ACCESS_32bit),
Eric Auger31097412019-08-23 19:33:30 +0200636 /* SGI_base registers */
637 REGISTER_DESC_WITH_LENGTH(SZ_64K + GICR_IGROUPR0,
Christoffer Dalld53c2c292018-07-16 15:06:25 +0200638 vgic_mmio_read_group, vgic_mmio_write_group, 4,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000639 VGIC_ACCESS_32bit),
Marc Zyngier41ee52e2020-04-09 13:05:26 +0100640 REGISTER_DESC_WITH_LENGTH_UACCESS(SZ_64K + GICR_ISENABLER0,
641 vgic_mmio_read_enable, vgic_mmio_write_senable,
642 NULL, vgic_uaccess_write_senable, 4,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000643 VGIC_ACCESS_32bit),
Marc Zyngier41ee52e2020-04-09 13:05:26 +0100644 REGISTER_DESC_WITH_LENGTH_UACCESS(SZ_64K + GICR_ICENABLER0,
645 vgic_mmio_read_enable, vgic_mmio_write_cenable,
646 NULL, vgic_uaccess_write_cenable, 4,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000647 VGIC_ACCESS_32bit),
Eric Auger31097412019-08-23 19:33:30 +0200648 REGISTER_DESC_WITH_LENGTH_UACCESS(SZ_64K + GICR_ISPENDR0,
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530649 vgic_mmio_read_pending, vgic_mmio_write_spending,
650 vgic_v3_uaccess_read_pending, vgic_v3_uaccess_write_pending, 4,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000651 VGIC_ACCESS_32bit),
Eric Auger31097412019-08-23 19:33:30 +0200652 REGISTER_DESC_WITH_LENGTH_UACCESS(SZ_64K + GICR_ICPENDR0,
Vijaya Kumar K2df903a2017-01-26 19:50:46 +0530653 vgic_mmio_read_pending, vgic_mmio_write_cpending,
Christoffer Dallc6e09172018-07-16 15:06:23 +0200654 vgic_mmio_read_raz, vgic_mmio_uaccess_write_wi, 4,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000655 VGIC_ACCESS_32bit),
Eric Auger31097412019-08-23 19:33:30 +0200656 REGISTER_DESC_WITH_LENGTH_UACCESS(SZ_64K + GICR_ISACTIVER0,
Christoffer Dall0710f9a62017-06-04 13:23:52 +0200657 vgic_mmio_read_active, vgic_mmio_write_sactive,
Marc Zyngier9a50ebb2020-04-06 16:21:20 +0100658 vgic_uaccess_read_active, vgic_mmio_uaccess_write_sactive, 4,
659 VGIC_ACCESS_32bit),
Eric Auger31097412019-08-23 19:33:30 +0200660 REGISTER_DESC_WITH_LENGTH_UACCESS(SZ_64K + GICR_ICACTIVER0,
Christoffer Dall0710f9a62017-06-04 13:23:52 +0200661 vgic_mmio_read_active, vgic_mmio_write_cactive,
Marc Zyngier9a50ebb2020-04-06 16:21:20 +0100662 vgic_uaccess_read_active, vgic_mmio_uaccess_write_cactive, 4,
663 VGIC_ACCESS_32bit),
Eric Auger31097412019-08-23 19:33:30 +0200664 REGISTER_DESC_WITH_LENGTH(SZ_64K + GICR_IPRIORITYR0,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000665 vgic_mmio_read_priority, vgic_mmio_write_priority, 32,
666 VGIC_ACCESS_32bit | VGIC_ACCESS_8bit),
Eric Auger31097412019-08-23 19:33:30 +0200667 REGISTER_DESC_WITH_LENGTH(SZ_64K + GICR_ICFGR0,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000668 vgic_mmio_read_config, vgic_mmio_write_config, 8,
669 VGIC_ACCESS_32bit),
Eric Auger31097412019-08-23 19:33:30 +0200670 REGISTER_DESC_WITH_LENGTH(SZ_64K + GICR_IGRPMODR0,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000671 vgic_mmio_read_raz, vgic_mmio_write_wi, 4,
672 VGIC_ACCESS_32bit),
Eric Auger31097412019-08-23 19:33:30 +0200673 REGISTER_DESC_WITH_LENGTH(SZ_64K + GICR_NSACR,
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000674 vgic_mmio_read_raz, vgic_mmio_write_wi, 4,
675 VGIC_ACCESS_32bit),
676};
677
678unsigned int vgic_v3_init_dist_iodev(struct vgic_io_device *dev)
679{
680 dev->regions = vgic_v3_dist_registers;
681 dev->nr_regions = ARRAY_SIZE(vgic_v3_dist_registers);
682
683 kvm_iodevice_init(&dev->dev, &kvm_io_gic_ops);
684
685 return SZ_64K;
686}
687
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200688/**
689 * vgic_register_redist_iodev - register a single redist iodev
690 * @vcpu: The VCPU to which the redistributor belongs
691 *
692 * Register a KVM iodev for this VCPU's redistributor using the address
693 * provided.
694 *
695 * Return 0 on success, -ERRNO otherwise.
696 */
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200697int vgic_register_redist_iodev(struct kvm_vcpu *vcpu)
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200698{
699 struct kvm *kvm = vcpu->kvm;
700 struct vgic_dist *vgic = &kvm->arch.vgic;
Eric Augerdbd97332018-05-22 09:55:08 +0200701 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200702 struct vgic_io_device *rd_dev = &vcpu->arch.vgic_cpu.rd_iodev;
Eric Augerdbd97332018-05-22 09:55:08 +0200703 struct vgic_redist_region *rdreg;
Eric Auger31097412019-08-23 19:33:30 +0200704 gpa_t rd_base;
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200705 int ret;
706
Eric Augerc011f4e2018-05-22 09:55:14 +0200707 if (!IS_VGIC_ADDR_UNDEF(vgic_cpu->rd_iodev.base_addr))
708 return 0;
709
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200710 /*
711 * We may be creating VCPUs before having set the base address for the
712 * redistributor region, in which case we will come back to this
713 * function for all VCPUs when the base address is set. Just return
714 * without doing any work for now.
715 */
Eric Augerdc524612018-05-22 09:55:09 +0200716 rdreg = vgic_v3_rdist_free_slot(&vgic->rd_regions);
Eric Augerdbd97332018-05-22 09:55:08 +0200717 if (!rdreg)
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200718 return 0;
719
720 if (!vgic_v3_check_base(kvm))
721 return -EINVAL;
722
Eric Augerdbd97332018-05-22 09:55:08 +0200723 vgic_cpu->rdreg = rdreg;
Eric Auger28e9d4b2021-04-05 18:39:40 +0200724 vgic_cpu->rdreg_index = rdreg->free_index;
Eric Augerdbd97332018-05-22 09:55:08 +0200725
726 rd_base = rdreg->base + rdreg->free_index * KVM_VGIC_V3_REDIST_SIZE;
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200727
728 kvm_iodevice_init(&rd_dev->dev, &kvm_io_gic_ops);
729 rd_dev->base_addr = rd_base;
730 rd_dev->iodev_type = IODEV_REDIST;
Eric Auger31097412019-08-23 19:33:30 +0200731 rd_dev->regions = vgic_v3_rd_registers;
732 rd_dev->nr_regions = ARRAY_SIZE(vgic_v3_rd_registers);
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200733 rd_dev->redist_vcpu = vcpu;
734
735 mutex_lock(&kvm->slots_lock);
736 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, rd_base,
Eric Auger31097412019-08-23 19:33:30 +0200737 2 * SZ_64K, &rd_dev->dev);
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200738 mutex_unlock(&kvm->slots_lock);
739
740 if (ret)
741 return ret;
742
Eric Augerdbd97332018-05-22 09:55:08 +0200743 rdreg->free_index++;
Eric Auger31097412019-08-23 19:33:30 +0200744 return 0;
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200745}
746
747static void vgic_unregister_redist_iodev(struct kvm_vcpu *vcpu)
748{
749 struct vgic_io_device *rd_dev = &vcpu->arch.vgic_cpu.rd_iodev;
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200750
751 kvm_io_bus_unregister_dev(vcpu->kvm, KVM_MMIO_BUS, &rd_dev->dev);
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200752}
753
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200754static int vgic_register_all_redist_iodevs(struct kvm *kvm)
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000755{
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000756 struct kvm_vcpu *vcpu;
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000757 int c, ret = 0;
758
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000759 kvm_for_each_vcpu(c, vcpu, kvm) {
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200760 ret = vgic_register_redist_iodev(vcpu);
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000761 if (ret)
762 break;
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000763 }
764
765 if (ret) {
766 /* The current c failed, so we start with the previous one. */
Christoffer Dallfa472fa2017-05-17 21:16:09 +0200767 mutex_lock(&kvm->slots_lock);
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000768 for (c--; c >= 0; c--) {
Andre Przywara8f6cdc12016-07-15 12:43:22 +0100769 vcpu = kvm_get_vcpu(kvm, c);
Christoffer Dall7fadcd32017-05-08 12:18:26 +0200770 vgic_unregister_redist_iodev(vcpu);
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000771 }
Christoffer Dallfa472fa2017-05-17 21:16:09 +0200772 mutex_unlock(&kvm->slots_lock);
Andre Przywaraed9b8ce2015-12-01 14:34:34 +0000773 }
774
775 return ret;
776}
Andre Przywara621ecd82016-01-26 15:31:15 +0000777
Eric Augerccc27bf2018-05-22 09:55:12 +0200778/**
Eric Augere5a35632021-04-05 18:39:39 +0200779 * vgic_v3_alloc_redist_region - Allocate a new redistributor region
Eric Augerccc27bf2018-05-22 09:55:12 +0200780 *
781 * Performs various checks before inserting the rdist region in the list.
782 * Those tests depend on whether the size of the rdist region is known
783 * (ie. count != 0). The list is sorted by rdist region index.
784 *
785 * @kvm: kvm handle
786 * @index: redist region index
787 * @base: base of the new rdist region
788 * @count: number of redistributors the region is made of (0 in the old style
789 * single region, whose size is induced from the number of vcpus)
790 *
791 * Return 0 on success, < 0 otherwise
792 */
Eric Augere5a35632021-04-05 18:39:39 +0200793static int vgic_v3_alloc_redist_region(struct kvm *kvm, uint32_t index,
794 gpa_t base, uint32_t count)
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200795{
Eric Augerccc27bf2018-05-22 09:55:12 +0200796 struct vgic_dist *d = &kvm->arch.vgic;
Eric Augerdbd97332018-05-22 09:55:08 +0200797 struct vgic_redist_region *rdreg;
Eric Augerccc27bf2018-05-22 09:55:12 +0200798 struct list_head *rd_regions = &d->rd_regions;
Ricardo Koller4612d982021-10-04 18:19:12 -0700799 int nr_vcpus = atomic_read(&kvm->online_vcpus);
800 size_t size = count ? count * KVM_VGIC_V3_REDIST_SIZE
801 : nr_vcpus * KVM_VGIC_V3_REDIST_SIZE;
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200802 int ret;
803
Eric Augerccc27bf2018-05-22 09:55:12 +0200804 /* cross the end of memory ? */
805 if (base + size < base)
806 return -EINVAL;
807
808 if (list_empty(rd_regions)) {
809 if (index != 0)
810 return -EINVAL;
811 } else {
812 rdreg = list_last_entry(rd_regions,
813 struct vgic_redist_region, list);
Eric Augerd9b201e2021-04-05 18:39:33 +0200814
815 /* Don't mix single region and discrete redist regions */
816 if (!count && rdreg->count)
Eric Augerccc27bf2018-05-22 09:55:12 +0200817 return -EINVAL;
818
Eric Augerd9b201e2021-04-05 18:39:33 +0200819 if (!count)
820 return -EEXIST;
821
822 if (index != rdreg->index + 1)
Eric Augerccc27bf2018-05-22 09:55:12 +0200823 return -EINVAL;
824 }
825
826 /*
827 * For legacy single-region redistributor regions (!count),
828 * check that the redistributor region does not overlap with the
829 * distributor's address space.
830 */
831 if (!count && !IS_VGIC_ADDR_UNDEF(d->vgic_dist_base) &&
832 vgic_dist_overlap(kvm, base, size))
833 return -EINVAL;
834
835 /* collision with any other rdist region? */
836 if (vgic_v3_rdist_overlap(kvm, base, size))
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200837 return -EINVAL;
Eric Augerdbd97332018-05-22 09:55:08 +0200838
Jia He3ef23162021-09-07 20:31:11 +0800839 rdreg = kzalloc(sizeof(*rdreg), GFP_KERNEL_ACCOUNT);
Eric Augerdbd97332018-05-22 09:55:08 +0200840 if (!rdreg)
841 return -ENOMEM;
842
843 rdreg->base = VGIC_ADDR_UNDEF;
844
Ricardo Koller4612d982021-10-04 18:19:12 -0700845 ret = vgic_check_iorange(kvm, rdreg->base, base, SZ_64K, size);
Eric Augerdbd97332018-05-22 09:55:08 +0200846 if (ret)
Eric Augerccc27bf2018-05-22 09:55:12 +0200847 goto free;
Eric Augerdbd97332018-05-22 09:55:08 +0200848
Eric Augerccc27bf2018-05-22 09:55:12 +0200849 rdreg->base = base;
850 rdreg->count = count;
851 rdreg->free_index = 0;
852 rdreg->index = index;
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200853
Eric Augerccc27bf2018-05-22 09:55:12 +0200854 list_add_tail(&rdreg->list, rd_regions);
855 return 0;
856free:
857 kfree(rdreg);
858 return ret;
859}
860
Eric Augere5a35632021-04-05 18:39:39 +0200861void vgic_v3_free_redist_region(struct vgic_redist_region *rdreg)
862{
863 list_del(&rdreg->list);
864 kfree(rdreg);
865}
866
Eric Auger04c11092018-05-22 09:55:17 +0200867int vgic_v3_set_redist_base(struct kvm *kvm, u32 index, u64 addr, u32 count)
Eric Augerccc27bf2018-05-22 09:55:12 +0200868{
869 int ret;
870
Eric Augere5a35632021-04-05 18:39:39 +0200871 ret = vgic_v3_alloc_redist_region(kvm, index, addr, count);
Eric Augerccc27bf2018-05-22 09:55:12 +0200872 if (ret)
873 return ret;
Eric Augerdbd97332018-05-22 09:55:08 +0200874
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200875 /*
876 * Register iodevs for each existing VCPU. Adding more VCPUs
877 * afterwards will register the iodevs when needed.
878 */
879 ret = vgic_register_all_redist_iodevs(kvm);
Eric Auger8542a8f2021-04-05 18:39:35 +0200880 if (ret) {
881 struct vgic_redist_region *rdreg;
882
883 rdreg = vgic_v3_rdist_region_from_index(kvm, index);
Eric Augere5a35632021-04-05 18:39:39 +0200884 vgic_v3_free_redist_region(rdreg);
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200885 return ret;
Eric Auger8542a8f2021-04-05 18:39:35 +0200886 }
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200887
888 return 0;
889}
890
Vijaya Kumar K94574c92017-01-26 19:50:47 +0530891int vgic_v3_has_attr_regs(struct kvm_device *dev, struct kvm_device_attr *attr)
892{
893 const struct vgic_register_region *region;
894 struct vgic_io_device iodev;
895 struct vgic_reg_attr reg_attr;
896 struct kvm_vcpu *vcpu;
897 gpa_t addr;
898 int ret;
899
900 ret = vgic_v3_parse_attr(dev, attr, &reg_attr);
901 if (ret)
902 return ret;
903
904 vcpu = reg_attr.vcpu;
905 addr = reg_attr.addr;
906
907 switch (attr->group) {
908 case KVM_DEV_ARM_VGIC_GRP_DIST_REGS:
909 iodev.regions = vgic_v3_dist_registers;
910 iodev.nr_regions = ARRAY_SIZE(vgic_v3_dist_registers);
911 iodev.base_addr = 0;
912 break;
913 case KVM_DEV_ARM_VGIC_GRP_REDIST_REGS:{
Eric Auger31097412019-08-23 19:33:30 +0200914 iodev.regions = vgic_v3_rd_registers;
915 iodev.nr_regions = ARRAY_SIZE(vgic_v3_rd_registers);
Vijaya Kumar K94574c92017-01-26 19:50:47 +0530916 iodev.base_addr = 0;
917 break;
918 }
Vijaya Kumar Kd017d7b2017-01-26 19:50:51 +0530919 case KVM_DEV_ARM_VGIC_GRP_CPU_SYSREGS: {
920 u64 reg, id;
921
922 id = (attr->attr & KVM_DEV_ARM_VGIC_SYSREG_INSTR_MASK);
923 return vgic_v3_has_cpu_sysregs_attr(vcpu, 0, id, &reg);
924 }
Vijaya Kumar K94574c92017-01-26 19:50:47 +0530925 default:
926 return -ENXIO;
927 }
928
929 /* We only support aligned 32-bit accesses. */
930 if (addr & 3)
931 return -ENXIO;
932
933 region = vgic_get_mmio_region(vcpu, &iodev, addr, sizeof(u32));
934 if (!region)
935 return -ENXIO;
936
937 return 0;
938}
Andre Przywara621ecd82016-01-26 15:31:15 +0000939/*
940 * Compare a given affinity (level 1-3 and a level 0 mask, from the SGI
941 * generation register ICC_SGI1R_EL1) with a given VCPU.
942 * If the VCPU's MPIDR matches, return the level0 affinity, otherwise
943 * return -1.
944 */
945static int match_mpidr(u64 sgi_aff, u16 sgi_cpu_mask, struct kvm_vcpu *vcpu)
946{
947 unsigned long affinity;
948 int level0;
949
950 /*
951 * Split the current VCPU's MPIDR into affinity level 0 and the
952 * rest as this is what we have to compare against.
953 */
954 affinity = kvm_vcpu_get_mpidr_aff(vcpu);
955 level0 = MPIDR_AFFINITY_LEVEL(affinity, 0);
956 affinity &= ~MPIDR_LEVEL_MASK;
957
958 /* bail out if the upper three levels don't match */
959 if (sgi_aff != affinity)
960 return -1;
961
962 /* Is this VCPU's bit set in the mask ? */
963 if (!(sgi_cpu_mask & BIT(level0)))
964 return -1;
965
966 return level0;
967}
968
969/*
970 * The ICC_SGI* registers encode the affinity differently from the MPIDR,
971 * so provide a wrapper to use the existing defines to isolate a certain
972 * affinity level.
973 */
974#define SGI_AFFINITY_LEVEL(reg, level) \
975 ((((reg) & ICC_SGI1R_AFFINITY_## level ##_MASK) \
976 >> ICC_SGI1R_AFFINITY_## level ##_SHIFT) << MPIDR_LEVEL_SHIFT(level))
977
978/**
979 * vgic_v3_dispatch_sgi - handle SGI requests from VCPUs
980 * @vcpu: The VCPU requesting a SGI
Marc Zyngier6249f2a2018-08-06 12:51:19 +0100981 * @reg: The value written into ICC_{ASGI1,SGI0,SGI1}R by that VCPU
982 * @allow_group1: Does the sysreg access allow generation of G1 SGIs
Andre Przywara621ecd82016-01-26 15:31:15 +0000983 *
984 * With GICv3 (and ARE=1) CPUs trigger SGIs by writing to a system register.
985 * This will trap in sys_regs.c and call this function.
986 * This ICC_SGI1R_EL1 register contains the upper three affinity levels of the
987 * target processors as well as a bitmask of 16 Aff0 CPUs.
988 * If the interrupt routing mode bit is not set, we iterate over all VCPUs to
989 * check for matching ones. If this bit is set, we signal all, but not the
990 * calling VCPU.
991 */
Marc Zyngier6249f2a2018-08-06 12:51:19 +0100992void vgic_v3_dispatch_sgi(struct kvm_vcpu *vcpu, u64 reg, bool allow_group1)
Andre Przywara621ecd82016-01-26 15:31:15 +0000993{
994 struct kvm *kvm = vcpu->kvm;
995 struct kvm_vcpu *c_vcpu;
996 u16 target_cpus;
997 u64 mpidr;
998 int sgi, c;
999 int vcpu_id = vcpu->vcpu_id;
1000 bool broadcast;
Christoffer Dall006df0f2016-10-16 22:19:11 +02001001 unsigned long flags;
Andre Przywara621ecd82016-01-26 15:31:15 +00001002
1003 sgi = (reg & ICC_SGI1R_SGI_ID_MASK) >> ICC_SGI1R_SGI_ID_SHIFT;
Vladimir Murzine533a372016-09-12 15:49:19 +01001004 broadcast = reg & BIT_ULL(ICC_SGI1R_IRQ_ROUTING_MODE_BIT);
Andre Przywara621ecd82016-01-26 15:31:15 +00001005 target_cpus = (reg & ICC_SGI1R_TARGET_LIST_MASK) >> ICC_SGI1R_TARGET_LIST_SHIFT;
1006 mpidr = SGI_AFFINITY_LEVEL(reg, 3);
1007 mpidr |= SGI_AFFINITY_LEVEL(reg, 2);
1008 mpidr |= SGI_AFFINITY_LEVEL(reg, 1);
1009
1010 /*
1011 * We iterate over all VCPUs to find the MPIDRs matching the request.
1012 * If we have handled one CPU, we clear its bit to detect early
1013 * if we are already finished. This avoids iterating through all
1014 * VCPUs when most of the times we just signal a single VCPU.
1015 */
1016 kvm_for_each_vcpu(c, c_vcpu, kvm) {
1017 struct vgic_irq *irq;
1018
1019 /* Exit early if we have dealt with all requested CPUs */
1020 if (!broadcast && target_cpus == 0)
1021 break;
1022
1023 /* Don't signal the calling VCPU */
1024 if (broadcast && c == vcpu_id)
1025 continue;
1026
1027 if (!broadcast) {
1028 int level0;
1029
1030 level0 = match_mpidr(mpidr, target_cpus, c_vcpu);
1031 if (level0 == -1)
1032 continue;
1033
1034 /* remove this matching VCPU from the mask */
1035 target_cpus &= ~BIT(level0);
1036 }
1037
1038 irq = vgic_get_irq(vcpu->kvm, c_vcpu, sgi);
1039
Julien Thierry8fa3adb2019-01-07 15:06:15 +00001040 raw_spin_lock_irqsave(&irq->irq_lock, flags);
Andre Przywara621ecd82016-01-26 15:31:15 +00001041
Marc Zyngier6249f2a2018-08-06 12:51:19 +01001042 /*
Xiaoming Niad14c192020-08-28 11:18:22 +08001043 * An access targeting Group0 SGIs can only generate
1044 * those, while an access targeting Group1 SGIs can
Marc Zyngier6249f2a2018-08-06 12:51:19 +01001045 * generate interrupts of either group.
1046 */
1047 if (!irq->group || allow_group1) {
Marc Zyngieref1820b2020-03-04 20:33:25 +00001048 if (!irq->hw) {
1049 irq->pending_latch = true;
1050 vgic_queue_irq_unlock(vcpu->kvm, irq, flags);
1051 } else {
1052 /* HW SGI? Ask the GIC to inject it */
1053 int err;
1054 err = irq_set_irqchip_state(irq->host_irq,
1055 IRQCHIP_STATE_PENDING,
1056 true);
1057 WARN_RATELIMIT(err, "IRQ %d", irq->host_irq);
1058 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
1059 }
Marc Zyngier6249f2a2018-08-06 12:51:19 +01001060 } else {
Julien Thierry8fa3adb2019-01-07 15:06:15 +00001061 raw_spin_unlock_irqrestore(&irq->irq_lock, flags);
Marc Zyngier6249f2a2018-08-06 12:51:19 +01001062 }
1063
Andre Przywara5dd4b922016-07-15 12:43:27 +01001064 vgic_put_irq(vcpu->kvm, irq);
Andre Przywara621ecd82016-01-26 15:31:15 +00001065 }
1066}
Vijaya Kumar K94574c92017-01-26 19:50:47 +05301067
1068int vgic_v3_dist_uaccess(struct kvm_vcpu *vcpu, bool is_write,
1069 int offset, u32 *val)
1070{
1071 struct vgic_io_device dev = {
1072 .regions = vgic_v3_dist_registers,
1073 .nr_regions = ARRAY_SIZE(vgic_v3_dist_registers),
1074 };
1075
1076 return vgic_uaccess(vcpu, &dev, is_write, offset, val);
1077}
1078
1079int vgic_v3_redist_uaccess(struct kvm_vcpu *vcpu, bool is_write,
1080 int offset, u32 *val)
1081{
1082 struct vgic_io_device rd_dev = {
Eric Auger31097412019-08-23 19:33:30 +02001083 .regions = vgic_v3_rd_registers,
1084 .nr_regions = ARRAY_SIZE(vgic_v3_rd_registers),
Vijaya Kumar K94574c92017-01-26 19:50:47 +05301085 };
1086
Eric Auger31097412019-08-23 19:33:30 +02001087 return vgic_uaccess(vcpu, &rd_dev, is_write, offset, val);
Vijaya Kumar K94574c92017-01-26 19:50:47 +05301088}
Vijaya Kumar Ke96a0062017-01-26 19:50:52 +05301089
1090int vgic_v3_line_level_info_uaccess(struct kvm_vcpu *vcpu, bool is_write,
1091 u32 intid, u64 *val)
1092{
1093 if (intid % 32)
1094 return -EINVAL;
1095
1096 if (is_write)
1097 vgic_write_irq_line_level_info(vcpu, intid, *val);
1098 else
1099 *val = vgic_read_irq_line_level_info(vcpu, intid);
1100
1101 return 0;
1102}