]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - virt/kvm/arm/vgic/vgic-v3.c
KVM: arm/arm64: vgic-v2: Do not use Active+Pending state for a HW interrupt
[mirror_ubuntu-bionic-kernel.git] / virt / kvm / arm / vgic / vgic-v3.c
CommitLineData
59529f69
MZ
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License version 2 as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program. If not, see <http://www.gnu.org/licenses/>.
13 */
14
15#include <linux/irqchip/arm-gic-v3.h>
16#include <linux/kvm.h>
17#include <linux/kvm_host.h>
90977732
EA
18#include <kvm/arm_vgic.h>
19#include <asm/kvm_mmu.h>
20#include <asm/kvm_asm.h>
59529f69
MZ
21
22#include "vgic.h"
23
af061499 24void vgic_v3_set_underflow(struct kvm_vcpu *vcpu)
59529f69
MZ
25{
26 struct vgic_v3_cpu_if *cpuif = &vcpu->arch.vgic_cpu.vgic_v3;
59529f69 27
af061499 28 cpuif->vgic_hcr |= ICH_HCR_UIE;
59529f69
MZ
29}
30
af061499 31static bool lr_signals_eoi_mi(u64 lr_val)
59529f69 32{
af061499
CD
33 return !(lr_val & ICH_LR_STATE) && (lr_val & ICH_LR_EOI) &&
34 !(lr_val & ICH_LR_HW);
59529f69
MZ
35}
36
37void vgic_v3_fold_lr_state(struct kvm_vcpu *vcpu)
38{
8ac76ef4
CD
39 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
40 struct vgic_v3_cpu_if *cpuif = &vgic_cpu->vgic_v3;
59529f69
MZ
41 u32 model = vcpu->kvm->arch.vgic.vgic_model;
42 int lr;
43
af061499
CD
44 cpuif->vgic_hcr &= ~ICH_HCR_UIE;
45
8ac76ef4 46 for (lr = 0; lr < vgic_cpu->used_lrs; lr++) {
59529f69
MZ
47 u64 val = cpuif->vgic_lr[lr];
48 u32 intid;
49 struct vgic_irq *irq;
50
51 if (model == KVM_DEV_TYPE_ARM_VGIC_V3)
52 intid = val & ICH_LR_VIRTUAL_ID_MASK;
53 else
54 intid = val & GICH_LR_VIRTUALID;
af061499
CD
55
56 /* Notify fds when the guest EOI'ed a level-triggered IRQ */
57 if (lr_signals_eoi_mi(val) && vgic_valid_spi(vcpu->kvm, intid))
58 kvm_notify_acked_irq(vcpu->kvm, 0,
59 intid - VGIC_NR_PRIVATE_IRQS);
60
59529f69 61 irq = vgic_get_irq(vcpu->kvm, vcpu, intid);
3802411d
AP
62 if (!irq) /* An LPI could have been unmapped. */
63 continue;
59529f69
MZ
64
65 spin_lock(&irq->irq_lock);
66
67 /* Always preserve the active bit */
68 irq->active = !!(val & ICH_LR_ACTIVE_BIT);
69
70 /* Edge is the only case where we preserve the pending bit */
71 if (irq->config == VGIC_CONFIG_EDGE &&
72 (val & ICH_LR_PENDING_BIT)) {
8694e4da 73 irq->pending_latch = true;
59529f69
MZ
74
75 if (vgic_irq_is_sgi(intid) &&
76 model == KVM_DEV_TYPE_ARM_VGIC_V2) {
77 u32 cpuid = val & GICH_LR_PHYSID_CPUID;
78
79 cpuid >>= GICH_LR_PHYSID_CPUID_SHIFT;
80 irq->source |= (1 << cpuid);
81 }
82 }
83
637d122b
MZ
84 /*
85 * Clear soft pending state when level irqs have been acked.
86 * Always regenerate the pending state.
87 */
88 if (irq->config == VGIC_CONFIG_LEVEL) {
89 if (!(val & ICH_LR_PENDING_BIT))
8694e4da 90 irq->pending_latch = false;
59529f69
MZ
91 }
92
93 spin_unlock(&irq->irq_lock);
5dd4b924 94 vgic_put_irq(vcpu->kvm, irq);
59529f69 95 }
8ac76ef4
CD
96
97 vgic_cpu->used_lrs = 0;
59529f69
MZ
98}
99
100/* Requires the irq to be locked already */
101void vgic_v3_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr)
102{
103 u32 model = vcpu->kvm->arch.vgic.vgic_model;
104 u64 val = irq->intid;
105
8694e4da 106 if (irq_is_pending(irq)) {
59529f69
MZ
107 val |= ICH_LR_PENDING_BIT;
108
109 if (irq->config == VGIC_CONFIG_EDGE)
8694e4da 110 irq->pending_latch = false;
59529f69
MZ
111
112 if (vgic_irq_is_sgi(irq->intid) &&
113 model == KVM_DEV_TYPE_ARM_VGIC_V2) {
114 u32 src = ffs(irq->source);
115
116 BUG_ON(!src);
117 val |= (src - 1) << GICH_LR_PHYSID_CPUID_SHIFT;
118 irq->source &= ~(1 << (src - 1));
119 if (irq->source)
8694e4da 120 irq->pending_latch = true;
59529f69
MZ
121 }
122 }
123
124 if (irq->active)
125 val |= ICH_LR_ACTIVE_BIT;
126
127 if (irq->hw) {
128 val |= ICH_LR_HW;
129 val |= ((u64)irq->hwintid) << ICH_LR_PHYS_ID_SHIFT;
130 } else {
131 if (irq->config == VGIC_CONFIG_LEVEL)
132 val |= ICH_LR_EOI;
133 }
134
135 /*
136 * We currently only support Group1 interrupts, which is a
137 * known defect. This needs to be addressed at some point.
138 */
139 if (model == KVM_DEV_TYPE_ARM_VGIC_V3)
140 val |= ICH_LR_GROUP;
141
142 val |= (u64)irq->priority << ICH_LR_PRIORITY_SHIFT;
143
144 vcpu->arch.vgic_cpu.vgic_v3.vgic_lr[lr] = val;
145}
146
147void vgic_v3_clear_lr(struct kvm_vcpu *vcpu, int lr)
148{
149 vcpu->arch.vgic_cpu.vgic_v3.vgic_lr[lr] = 0;
150}
e4823a7a
AP
151
152void vgic_v3_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcrp)
153{
328e5664 154 struct vgic_v3_cpu_if *cpu_if = &vcpu->arch.vgic_cpu.vgic_v3;
e4823a7a
AP
155 u32 vmcr;
156
5fb247d7
VK
157 /*
158 * Ignore the FIQen bit, because GIC emulation always implies
159 * SRE=1 which means the vFIQEn bit is also RES1.
160 */
161 vmcr = ((vmcrp->ctlr >> ICC_CTLR_EL1_EOImode_SHIFT) <<
162 ICH_VMCR_EOIM_SHIFT) & ICH_VMCR_EOIM_MASK;
163 vmcr |= (vmcrp->ctlr << ICH_VMCR_CBPR_SHIFT) & ICH_VMCR_CBPR_MASK;
e4823a7a
AP
164 vmcr |= (vmcrp->abpr << ICH_VMCR_BPR1_SHIFT) & ICH_VMCR_BPR1_MASK;
165 vmcr |= (vmcrp->bpr << ICH_VMCR_BPR0_SHIFT) & ICH_VMCR_BPR0_MASK;
166 vmcr |= (vmcrp->pmr << ICH_VMCR_PMR_SHIFT) & ICH_VMCR_PMR_MASK;
5fb247d7
VK
167 vmcr |= (vmcrp->grpen0 << ICH_VMCR_ENG0_SHIFT) & ICH_VMCR_ENG0_MASK;
168 vmcr |= (vmcrp->grpen1 << ICH_VMCR_ENG1_SHIFT) & ICH_VMCR_ENG1_MASK;
e4823a7a 169
328e5664 170 cpu_if->vgic_vmcr = vmcr;
e4823a7a
AP
171}
172
173void vgic_v3_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcrp)
174{
328e5664
CD
175 struct vgic_v3_cpu_if *cpu_if = &vcpu->arch.vgic_cpu.vgic_v3;
176 u32 vmcr;
177
178 vmcr = cpu_if->vgic_vmcr;
e4823a7a 179
5fb247d7
VK
180 /*
181 * Ignore the FIQen bit, because GIC emulation always implies
182 * SRE=1 which means the vFIQEn bit is also RES1.
183 */
184 vmcrp->ctlr = ((vmcr >> ICH_VMCR_EOIM_SHIFT) <<
185 ICC_CTLR_EL1_EOImode_SHIFT) & ICC_CTLR_EL1_EOImode_MASK;
186 vmcrp->ctlr |= (vmcr & ICH_VMCR_CBPR_MASK) >> ICH_VMCR_CBPR_SHIFT;
e4823a7a
AP
187 vmcrp->abpr = (vmcr & ICH_VMCR_BPR1_MASK) >> ICH_VMCR_BPR1_SHIFT;
188 vmcrp->bpr = (vmcr & ICH_VMCR_BPR0_MASK) >> ICH_VMCR_BPR0_SHIFT;
189 vmcrp->pmr = (vmcr & ICH_VMCR_PMR_MASK) >> ICH_VMCR_PMR_SHIFT;
5fb247d7
VK
190 vmcrp->grpen0 = (vmcr & ICH_VMCR_ENG0_MASK) >> ICH_VMCR_ENG0_SHIFT;
191 vmcrp->grpen1 = (vmcr & ICH_VMCR_ENG1_MASK) >> ICH_VMCR_ENG1_SHIFT;
e4823a7a 192}
90977732 193
0aa1de57
AP
194#define INITIAL_PENDBASER_VALUE \
195 (GIC_BASER_CACHEABILITY(GICR_PENDBASER, INNER, RaWb) | \
196 GIC_BASER_CACHEABILITY(GICR_PENDBASER, OUTER, SameAsInner) | \
197 GIC_BASER_SHAREABILITY(GICR_PENDBASER, InnerShareable))
198
ad275b8b
EA
199void vgic_v3_enable(struct kvm_vcpu *vcpu)
200{
f7b6985c
EA
201 struct vgic_v3_cpu_if *vgic_v3 = &vcpu->arch.vgic_cpu.vgic_v3;
202
203 /*
204 * By forcing VMCR to zero, the GIC will restore the binary
205 * points to their reset values. Anything else resets to zero
206 * anyway.
207 */
208 vgic_v3->vgic_vmcr = 0;
209 vgic_v3->vgic_elrsr = ~0;
210
211 /*
212 * If we are emulating a GICv3, we do it in an non-GICv2-compatible
213 * way, so we force SRE to 1 to demonstrate this to the guest.
4dfc0505 214 * Also, we don't support any form of IRQ/FIQ bypass.
f7b6985c
EA
215 * This goes with the spec allowing the value to be RAO/WI.
216 */
0aa1de57 217 if (vcpu->kvm->arch.vgic.vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3) {
4dfc0505
MZ
218 vgic_v3->vgic_sre = (ICC_SRE_EL1_DIB |
219 ICC_SRE_EL1_DFB |
220 ICC_SRE_EL1_SRE);
0aa1de57
AP
221 vcpu->arch.vgic_cpu.pendbaser = INITIAL_PENDBASER_VALUE;
222 } else {
f7b6985c 223 vgic_v3->vgic_sre = 0;
0aa1de57 224 }
f7b6985c 225
d017d7b0
VK
226 vcpu->arch.vgic_cpu.num_id_bits = (kvm_vgic_global_state.ich_vtr_el2 &
227 ICH_VTR_ID_BITS_MASK) >>
228 ICH_VTR_ID_BITS_SHIFT;
229 vcpu->arch.vgic_cpu.num_pri_bits = ((kvm_vgic_global_state.ich_vtr_el2 &
230 ICH_VTR_PRI_BITS_MASK) >>
231 ICH_VTR_PRI_BITS_SHIFT) + 1;
232
f7b6985c
EA
233 /* Get the show on the road... */
234 vgic_v3->vgic_hcr = ICH_HCR_EN;
ad275b8b
EA
235}
236
44de9d68
EA
237int vgic_v3_lpi_sync_pending_status(struct kvm *kvm, struct vgic_irq *irq)
238{
239 struct kvm_vcpu *vcpu;
240 int byte_offset, bit_nr;
241 gpa_t pendbase, ptr;
242 bool status;
243 u8 val;
244 int ret;
245
246retry:
247 vcpu = irq->target_vcpu;
248 if (!vcpu)
249 return 0;
250
251 pendbase = GICR_PENDBASER_ADDRESS(vcpu->arch.vgic_cpu.pendbaser);
252
253 byte_offset = irq->intid / BITS_PER_BYTE;
254 bit_nr = irq->intid % BITS_PER_BYTE;
255 ptr = pendbase + byte_offset;
256
257 ret = kvm_read_guest(kvm, ptr, &val, 1);
258 if (ret)
259 return ret;
260
261 status = val & (1 << bit_nr);
262
263 spin_lock(&irq->irq_lock);
264 if (irq->target_vcpu != vcpu) {
265 spin_unlock(&irq->irq_lock);
266 goto retry;
267 }
268 irq->pending_latch = status;
269 vgic_queue_irq_unlock(vcpu->kvm, irq);
270
271 if (status) {
272 /* clear consumed data */
273 val &= ~(1 << bit_nr);
274 ret = kvm_write_guest(kvm, ptr, &val, 1);
275 if (ret)
276 return ret;
277 }
278 return 0;
279}
280
28077125
EA
281/**
282 * vgic_its_save_pending_tables - Save the pending tables into guest RAM
283 * kvm lock and all vcpu lock must be held
284 */
285int vgic_v3_save_pending_tables(struct kvm *kvm)
286{
287 struct vgic_dist *dist = &kvm->arch.vgic;
288 int last_byte_offset = -1;
289 struct vgic_irq *irq;
290 int ret;
291
292 list_for_each_entry(irq, &dist->lpi_list_head, lpi_list) {
293 int byte_offset, bit_nr;
294 struct kvm_vcpu *vcpu;
295 gpa_t pendbase, ptr;
296 bool stored;
297 u8 val;
298
299 vcpu = irq->target_vcpu;
300 if (!vcpu)
301 continue;
302
303 pendbase = GICR_PENDBASER_ADDRESS(vcpu->arch.vgic_cpu.pendbaser);
304
305 byte_offset = irq->intid / BITS_PER_BYTE;
306 bit_nr = irq->intid % BITS_PER_BYTE;
307 ptr = pendbase + byte_offset;
308
309 if (byte_offset != last_byte_offset) {
310 ret = kvm_read_guest(kvm, ptr, &val, 1);
311 if (ret)
312 return ret;
313 last_byte_offset = byte_offset;
314 }
315
316 stored = val & (1U << bit_nr);
317 if (stored == irq->pending_latch)
318 continue;
319
320 if (irq->pending_latch)
321 val |= 1 << bit_nr;
322 else
323 val &= ~(1 << bit_nr);
324
325 ret = kvm_write_guest(kvm, ptr, &val, 1);
326 if (ret)
327 return ret;
328 }
329 return 0;
330}
331
9a746d75
CD
332/*
333 * Check for overlapping regions and for regions crossing the end of memory
334 * for base addresses which have already been set.
335 */
336bool vgic_v3_check_base(struct kvm *kvm)
b0442ee2
EA
337{
338 struct vgic_dist *d = &kvm->arch.vgic;
339 gpa_t redist_size = KVM_VGIC_V3_REDIST_SIZE;
340
341 redist_size *= atomic_read(&kvm->online_vcpus);
342
9a746d75
CD
343 if (!IS_VGIC_ADDR_UNDEF(d->vgic_dist_base) &&
344 d->vgic_dist_base + KVM_VGIC_V3_DIST_SIZE < d->vgic_dist_base)
b0442ee2 345 return false;
9a746d75
CD
346
347 if (!IS_VGIC_ADDR_UNDEF(d->vgic_redist_base) &&
348 d->vgic_redist_base + redist_size < d->vgic_redist_base)
b0442ee2
EA
349 return false;
350
9a746d75
CD
351 /* Both base addresses must be set to check if they overlap */
352 if (IS_VGIC_ADDR_UNDEF(d->vgic_dist_base) ||
353 IS_VGIC_ADDR_UNDEF(d->vgic_redist_base))
354 return true;
355
b0442ee2
EA
356 if (d->vgic_dist_base + KVM_VGIC_V3_DIST_SIZE <= d->vgic_redist_base)
357 return true;
358 if (d->vgic_redist_base + redist_size <= d->vgic_dist_base)
359 return true;
360
361 return false;
362}
363
364int vgic_v3_map_resources(struct kvm *kvm)
365{
366 int ret = 0;
367 struct vgic_dist *dist = &kvm->arch.vgic;
368
369 if (vgic_ready(kvm))
370 goto out;
371
372 if (IS_VGIC_ADDR_UNDEF(dist->vgic_dist_base) ||
373 IS_VGIC_ADDR_UNDEF(dist->vgic_redist_base)) {
374 kvm_err("Need to set vgic distributor addresses first\n");
375 ret = -ENXIO;
376 goto out;
377 }
378
379 if (!vgic_v3_check_base(kvm)) {
380 kvm_err("VGIC redist and dist frames overlap\n");
381 ret = -EINVAL;
382 goto out;
383 }
384
385 /*
386 * For a VGICv3 we require the userland to explicitly initialize
387 * the VGIC before we need to use it.
388 */
389 if (!vgic_initialized(kvm)) {
390 ret = -EBUSY;
391 goto out;
392 }
393
394 ret = vgic_register_dist_iodev(kvm, dist->vgic_dist_base, VGIC_V3);
395 if (ret) {
396 kvm_err("Unable to register VGICv3 dist MMIO regions\n");
397 goto out;
398 }
399
b0442ee2
EA
400 dist->ready = true;
401
402out:
b0442ee2
EA
403 return ret;
404}
405
90977732
EA
406/**
407 * vgic_v3_probe - probe for a GICv3 compatible interrupt controller in DT
408 * @node: pointer to the DT node
409 *
410 * Returns 0 if a GICv3 has been found, returns an error code otherwise
411 */
412int vgic_v3_probe(const struct gic_kvm_info *info)
413{
414 u32 ich_vtr_el2 = kvm_call_hyp(__vgic_v3_get_ich_vtr_el2);
42c8870f 415 int ret;
90977732
EA
416
417 /*
418 * The ListRegs field is 5 bits, but there is a architectural
419 * maximum of 16 list registers. Just ignore bit 4...
420 */
421 kvm_vgic_global_state.nr_lr = (ich_vtr_el2 & 0xf) + 1;
422 kvm_vgic_global_state.can_emulate_gicv2 = false;
d017d7b0 423 kvm_vgic_global_state.ich_vtr_el2 = ich_vtr_el2;
90977732
EA
424
425 if (!info->vcpu.start) {
426 kvm_info("GICv3: no GICV resource entry\n");
427 kvm_vgic_global_state.vcpu_base = 0;
428 } else if (!PAGE_ALIGNED(info->vcpu.start)) {
429 pr_warn("GICV physical address 0x%llx not page aligned\n",
430 (unsigned long long)info->vcpu.start);
431 kvm_vgic_global_state.vcpu_base = 0;
432 } else if (!PAGE_ALIGNED(resource_size(&info->vcpu))) {
433 pr_warn("GICV size 0x%llx not a multiple of page size 0x%lx\n",
434 (unsigned long long)resource_size(&info->vcpu),
435 PAGE_SIZE);
436 kvm_vgic_global_state.vcpu_base = 0;
437 } else {
438 kvm_vgic_global_state.vcpu_base = info->vcpu.start;
439 kvm_vgic_global_state.can_emulate_gicv2 = true;
42c8870f
AP
440 ret = kvm_register_vgic_device(KVM_DEV_TYPE_ARM_VGIC_V2);
441 if (ret) {
442 kvm_err("Cannot register GICv2 KVM device.\n");
443 return ret;
444 }
90977732
EA
445 kvm_info("vgic-v2@%llx\n", info->vcpu.start);
446 }
42c8870f
AP
447 ret = kvm_register_vgic_device(KVM_DEV_TYPE_ARM_VGIC_V3);
448 if (ret) {
449 kvm_err("Cannot register GICv3 KVM device.\n");
450 kvm_unregister_device_ops(KVM_DEV_TYPE_ARM_VGIC_V2);
451 return ret;
452 }
453
90977732
EA
454 if (kvm_vgic_global_state.vcpu_base == 0)
455 kvm_info("disabling GICv2 emulation\n");
90977732
EA
456
457 kvm_vgic_global_state.vctrl_base = NULL;
458 kvm_vgic_global_state.type = VGIC_V3;
459 kvm_vgic_global_state.max_gic_vcpus = VGIC_V3_MAX_CPUS;
460
461 return 0;
462}
328e5664
CD
463
464void vgic_v3_load(struct kvm_vcpu *vcpu)
465{
466 struct vgic_v3_cpu_if *cpu_if = &vcpu->arch.vgic_cpu.vgic_v3;
467
ff567614
MZ
468 /*
469 * If dealing with a GICv2 emulation on GICv3, VMCR_EL2.VFIQen
470 * is dependent on ICC_SRE_EL1.SRE, and we have to perform the
471 * VMCR_EL2 save/restore in the world switch.
472 */
473 if (likely(cpu_if->vgic_sre))
474 kvm_call_hyp(__vgic_v3_write_vmcr, cpu_if->vgic_vmcr);
328e5664
CD
475}
476
477void vgic_v3_put(struct kvm_vcpu *vcpu)
478{
479 struct vgic_v3_cpu_if *cpu_if = &vcpu->arch.vgic_cpu.vgic_v3;
480
ff567614
MZ
481 if (likely(cpu_if->vgic_sre))
482 cpu_if->vgic_vmcr = kvm_call_hyp(__vgic_v3_read_vmcr);
328e5664 483}