]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - virt/kvm/arm/vgic/vgic-v3.c
8fa737edde6f2f9458fc0a6a33faa4c8c9fa810e
[mirror_ubuntu-artful-kernel.git] / virt / kvm / arm / vgic / vgic-v3.c
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>
18 #include <kvm/arm_vgic.h>
19 #include <asm/kvm_mmu.h>
20 #include <asm/kvm_asm.h>
21
22 #include "vgic.h"
23
24 void vgic_v3_set_underflow(struct kvm_vcpu *vcpu)
25 {
26 struct vgic_v3_cpu_if *cpuif = &vcpu->arch.vgic_cpu.vgic_v3;
27
28 cpuif->vgic_hcr |= ICH_HCR_UIE;
29 }
30
31 static bool lr_signals_eoi_mi(u64 lr_val)
32 {
33 return !(lr_val & ICH_LR_STATE) && (lr_val & ICH_LR_EOI) &&
34 !(lr_val & ICH_LR_HW);
35 }
36
37 void vgic_v3_fold_lr_state(struct kvm_vcpu *vcpu)
38 {
39 struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
40 struct vgic_v3_cpu_if *cpuif = &vgic_cpu->vgic_v3;
41 u32 model = vcpu->kvm->arch.vgic.vgic_model;
42 int lr;
43
44 cpuif->vgic_hcr &= ~ICH_HCR_UIE;
45
46 for (lr = 0; lr < vgic_cpu->used_lrs; lr++) {
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;
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
61 irq = vgic_get_irq(vcpu->kvm, vcpu, intid);
62 if (!irq) /* An LPI could have been unmapped. */
63 continue;
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)) {
73 irq->pending_latch = true;
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
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))
90 irq->pending_latch = false;
91 }
92
93 spin_unlock(&irq->irq_lock);
94 vgic_put_irq(vcpu->kvm, irq);
95 }
96
97 vgic_cpu->used_lrs = 0;
98 }
99
100 /* Requires the irq to be locked already */
101 void 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
106 if (irq_is_pending(irq)) {
107 val |= ICH_LR_PENDING_BIT;
108
109 if (irq->config == VGIC_CONFIG_EDGE)
110 irq->pending_latch = false;
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)
120 irq->pending_latch = true;
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
147 void vgic_v3_clear_lr(struct kvm_vcpu *vcpu, int lr)
148 {
149 vcpu->arch.vgic_cpu.vgic_v3.vgic_lr[lr] = 0;
150 }
151
152 void vgic_v3_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcrp)
153 {
154 struct vgic_v3_cpu_if *cpu_if = &vcpu->arch.vgic_cpu.vgic_v3;
155 u32 vmcr;
156
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;
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;
167 vmcr |= (vmcrp->grpen0 << ICH_VMCR_ENG0_SHIFT) & ICH_VMCR_ENG0_MASK;
168 vmcr |= (vmcrp->grpen1 << ICH_VMCR_ENG1_SHIFT) & ICH_VMCR_ENG1_MASK;
169
170 cpu_if->vgic_vmcr = vmcr;
171 }
172
173 void vgic_v3_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcrp)
174 {
175 struct vgic_v3_cpu_if *cpu_if = &vcpu->arch.vgic_cpu.vgic_v3;
176 u32 vmcr;
177
178 vmcr = cpu_if->vgic_vmcr;
179
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;
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;
190 vmcrp->grpen0 = (vmcr & ICH_VMCR_ENG0_MASK) >> ICH_VMCR_ENG0_SHIFT;
191 vmcrp->grpen1 = (vmcr & ICH_VMCR_ENG1_MASK) >> ICH_VMCR_ENG1_SHIFT;
192 }
193
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
199 void vgic_v3_enable(struct kvm_vcpu *vcpu)
200 {
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.
214 * Also, we don't support any form of IRQ/FIQ bypass.
215 * This goes with the spec allowing the value to be RAO/WI.
216 */
217 if (vcpu->kvm->arch.vgic.vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3) {
218 vgic_v3->vgic_sre = (ICC_SRE_EL1_DIB |
219 ICC_SRE_EL1_DFB |
220 ICC_SRE_EL1_SRE);
221 vcpu->arch.vgic_cpu.pendbaser = INITIAL_PENDBASER_VALUE;
222 } else {
223 vgic_v3->vgic_sre = 0;
224 }
225
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
233 /* Get the show on the road... */
234 vgic_v3->vgic_hcr = ICH_HCR_EN;
235 }
236
237 int 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
246 retry:
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
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 */
285 int 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
332 /*
333 * Check for overlapping regions and for regions crossing the end of memory
334 * for base addresses which have already been set.
335 */
336 bool vgic_v3_check_base(struct kvm *kvm)
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
343 if (!IS_VGIC_ADDR_UNDEF(d->vgic_dist_base) &&
344 d->vgic_dist_base + KVM_VGIC_V3_DIST_SIZE < d->vgic_dist_base)
345 return false;
346
347 if (!IS_VGIC_ADDR_UNDEF(d->vgic_redist_base) &&
348 d->vgic_redist_base + redist_size < d->vgic_redist_base)
349 return false;
350
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
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
364 int 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
400 dist->ready = true;
401
402 out:
403 return ret;
404 }
405
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 */
412 int vgic_v3_probe(const struct gic_kvm_info *info)
413 {
414 u32 ich_vtr_el2 = kvm_call_hyp(__vgic_v3_get_ich_vtr_el2);
415 int ret;
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;
423 kvm_vgic_global_state.ich_vtr_el2 = ich_vtr_el2;
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;
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 }
445 kvm_info("vgic-v2@%llx\n", info->vcpu.start);
446 }
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
454 if (kvm_vgic_global_state.vcpu_base == 0)
455 kvm_info("disabling GICv2 emulation\n");
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 }
463
464 void vgic_v3_load(struct kvm_vcpu *vcpu)
465 {
466 struct vgic_v3_cpu_if *cpu_if = &vcpu->arch.vgic_cpu.vgic_v3;
467
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);
475 }
476
477 void vgic_v3_put(struct kvm_vcpu *vcpu)
478 {
479 struct vgic_v3_cpu_if *cpu_if = &vcpu->arch.vgic_cpu.vgic_v3;
480
481 if (likely(cpu_if->vgic_sre))
482 cpu_if->vgic_vmcr = kvm_call_hyp(__vgic_v3_read_vmcr);
483 }