]> git.karo-electronics.de Git - karo-tx-linux.git/blob - virt/kvm/arm/vgic/vgic-v2.c
Merge tag 'libnvdimm-for-4.12' of git://git.kernel.org/pub/scm/linux/kernel/git/nvdim...
[karo-tx-linux.git] / virt / kvm / arm / vgic / vgic-v2.c
1 /*
2  * Copyright (C) 2015, 2016 ARM Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  */
16
17 #include <linux/irqchip/arm-gic.h>
18 #include <linux/kvm.h>
19 #include <linux/kvm_host.h>
20 #include <kvm/arm_vgic.h>
21 #include <asm/kvm_mmu.h>
22
23 #include "vgic.h"
24
25 /*
26  * Call this function to convert a u64 value to an unsigned long * bitmask
27  * in a way that works on both 32-bit and 64-bit LE and BE platforms.
28  *
29  * Warning: Calling this function may modify *val.
30  */
31 static unsigned long *u64_to_bitmask(u64 *val)
32 {
33 #if defined(CONFIG_CPU_BIG_ENDIAN) && BITS_PER_LONG == 32
34         *val = (*val >> 32) | (*val << 32);
35 #endif
36         return (unsigned long *)val;
37 }
38
39 static inline void vgic_v2_write_lr(int lr, u32 val)
40 {
41         void __iomem *base = kvm_vgic_global_state.vctrl_base;
42
43         writel_relaxed(val, base + GICH_LR0 + (lr * 4));
44 }
45
46 void vgic_v2_init_lrs(void)
47 {
48         int i;
49
50         for (i = 0; i < kvm_vgic_global_state.nr_lr; i++)
51                 vgic_v2_write_lr(i, 0);
52 }
53
54 void vgic_v2_process_maintenance(struct kvm_vcpu *vcpu)
55 {
56         struct vgic_v2_cpu_if *cpuif = &vcpu->arch.vgic_cpu.vgic_v2;
57
58         if (cpuif->vgic_misr & GICH_MISR_EOI) {
59                 u64 eisr = cpuif->vgic_eisr;
60                 unsigned long *eisr_bmap = u64_to_bitmask(&eisr);
61                 int lr;
62
63                 for_each_set_bit(lr, eisr_bmap, kvm_vgic_global_state.nr_lr) {
64                         u32 intid = cpuif->vgic_lr[lr] & GICH_LR_VIRTUALID;
65
66                         WARN_ON(cpuif->vgic_lr[lr] & GICH_LR_STATE);
67
68                         /* Only SPIs require notification */
69                         if (vgic_valid_spi(vcpu->kvm, intid))
70                                 kvm_notify_acked_irq(vcpu->kvm, 0,
71                                                      intid - VGIC_NR_PRIVATE_IRQS);
72                 }
73         }
74
75         /* check and disable underflow maintenance IRQ */
76         cpuif->vgic_hcr &= ~GICH_HCR_UIE;
77
78         /*
79          * In the next iterations of the vcpu loop, if we sync the
80          * vgic state after flushing it, but before entering the guest
81          * (this happens for pending signals and vmid rollovers), then
82          * make sure we don't pick up any old maintenance interrupts
83          * here.
84          */
85         cpuif->vgic_eisr = 0;
86 }
87
88 void vgic_v2_set_underflow(struct kvm_vcpu *vcpu)
89 {
90         struct vgic_v2_cpu_if *cpuif = &vcpu->arch.vgic_cpu.vgic_v2;
91
92         cpuif->vgic_hcr |= GICH_HCR_UIE;
93 }
94
95 /*
96  * transfer the content of the LRs back into the corresponding ap_list:
97  * - active bit is transferred as is
98  * - pending bit is
99  *   - transferred as is in case of edge sensitive IRQs
100  *   - set to the line-level (resample time) for level sensitive IRQs
101  */
102 void vgic_v2_fold_lr_state(struct kvm_vcpu *vcpu)
103 {
104         struct vgic_v2_cpu_if *cpuif = &vcpu->arch.vgic_cpu.vgic_v2;
105         int lr;
106
107         for (lr = 0; lr < vcpu->arch.vgic_cpu.used_lrs; lr++) {
108                 u32 val = cpuif->vgic_lr[lr];
109                 u32 intid = val & GICH_LR_VIRTUALID;
110                 struct vgic_irq *irq;
111
112                 irq = vgic_get_irq(vcpu->kvm, vcpu, intid);
113
114                 spin_lock(&irq->irq_lock);
115
116                 /* Always preserve the active bit */
117                 irq->active = !!(val & GICH_LR_ACTIVE_BIT);
118
119                 /* Edge is the only case where we preserve the pending bit */
120                 if (irq->config == VGIC_CONFIG_EDGE &&
121                     (val & GICH_LR_PENDING_BIT)) {
122                         irq->pending_latch = true;
123
124                         if (vgic_irq_is_sgi(intid)) {
125                                 u32 cpuid = val & GICH_LR_PHYSID_CPUID;
126
127                                 cpuid >>= GICH_LR_PHYSID_CPUID_SHIFT;
128                                 irq->source |= (1 << cpuid);
129                         }
130                 }
131
132                 /*
133                  * Clear soft pending state when level irqs have been acked.
134                  * Always regenerate the pending state.
135                  */
136                 if (irq->config == VGIC_CONFIG_LEVEL) {
137                         if (!(val & GICH_LR_PENDING_BIT))
138                                 irq->pending_latch = false;
139                 }
140
141                 spin_unlock(&irq->irq_lock);
142                 vgic_put_irq(vcpu->kvm, irq);
143         }
144 }
145
146 /*
147  * Populates the particular LR with the state of a given IRQ:
148  * - for an edge sensitive IRQ the pending state is cleared in struct vgic_irq
149  * - for a level sensitive IRQ the pending state value is unchanged;
150  *   it is dictated directly by the input level
151  *
152  * If @irq describes an SGI with multiple sources, we choose the
153  * lowest-numbered source VCPU and clear that bit in the source bitmap.
154  *
155  * The irq_lock must be held by the caller.
156  */
157 void vgic_v2_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr)
158 {
159         u32 val = irq->intid;
160
161         if (irq_is_pending(irq)) {
162                 val |= GICH_LR_PENDING_BIT;
163
164                 if (irq->config == VGIC_CONFIG_EDGE)
165                         irq->pending_latch = false;
166
167                 if (vgic_irq_is_sgi(irq->intid)) {
168                         u32 src = ffs(irq->source);
169
170                         BUG_ON(!src);
171                         val |= (src - 1) << GICH_LR_PHYSID_CPUID_SHIFT;
172                         irq->source &= ~(1 << (src - 1));
173                         if (irq->source)
174                                 irq->pending_latch = true;
175                 }
176         }
177
178         if (irq->active)
179                 val |= GICH_LR_ACTIVE_BIT;
180
181         if (irq->hw) {
182                 val |= GICH_LR_HW;
183                 val |= irq->hwintid << GICH_LR_PHYSID_CPUID_SHIFT;
184         } else {
185                 if (irq->config == VGIC_CONFIG_LEVEL)
186                         val |= GICH_LR_EOI;
187         }
188
189         /* The GICv2 LR only holds five bits of priority. */
190         val |= (irq->priority >> 3) << GICH_LR_PRIORITY_SHIFT;
191
192         vcpu->arch.vgic_cpu.vgic_v2.vgic_lr[lr] = val;
193 }
194
195 void vgic_v2_clear_lr(struct kvm_vcpu *vcpu, int lr)
196 {
197         vcpu->arch.vgic_cpu.vgic_v2.vgic_lr[lr] = 0;
198 }
199
200 void vgic_v2_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcrp)
201 {
202         u32 vmcr;
203
204         vmcr  = (vmcrp->ctlr << GICH_VMCR_CTRL_SHIFT) & GICH_VMCR_CTRL_MASK;
205         vmcr |= (vmcrp->abpr << GICH_VMCR_ALIAS_BINPOINT_SHIFT) &
206                 GICH_VMCR_ALIAS_BINPOINT_MASK;
207         vmcr |= (vmcrp->bpr << GICH_VMCR_BINPOINT_SHIFT) &
208                 GICH_VMCR_BINPOINT_MASK;
209         vmcr |= ((vmcrp->pmr >> GICV_PMR_PRIORITY_SHIFT) <<
210                  GICH_VMCR_PRIMASK_SHIFT) & GICH_VMCR_PRIMASK_MASK;
211
212         vcpu->arch.vgic_cpu.vgic_v2.vgic_vmcr = vmcr;
213 }
214
215 void vgic_v2_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcrp)
216 {
217         u32 vmcr = vcpu->arch.vgic_cpu.vgic_v2.vgic_vmcr;
218
219         vmcrp->ctlr = (vmcr & GICH_VMCR_CTRL_MASK) >>
220                         GICH_VMCR_CTRL_SHIFT;
221         vmcrp->abpr = (vmcr & GICH_VMCR_ALIAS_BINPOINT_MASK) >>
222                         GICH_VMCR_ALIAS_BINPOINT_SHIFT;
223         vmcrp->bpr  = (vmcr & GICH_VMCR_BINPOINT_MASK) >>
224                         GICH_VMCR_BINPOINT_SHIFT;
225         vmcrp->pmr  = ((vmcr & GICH_VMCR_PRIMASK_MASK) >>
226                         GICH_VMCR_PRIMASK_SHIFT) << GICV_PMR_PRIORITY_SHIFT;
227 }
228
229 void vgic_v2_enable(struct kvm_vcpu *vcpu)
230 {
231         /*
232          * By forcing VMCR to zero, the GIC will restore the binary
233          * points to their reset values. Anything else resets to zero
234          * anyway.
235          */
236         vcpu->arch.vgic_cpu.vgic_v2.vgic_vmcr = 0;
237         vcpu->arch.vgic_cpu.vgic_v2.vgic_elrsr = ~0;
238
239         /* Get the show on the road... */
240         vcpu->arch.vgic_cpu.vgic_v2.vgic_hcr = GICH_HCR_EN;
241 }
242
243 /* check for overlapping regions and for regions crossing the end of memory */
244 static bool vgic_v2_check_base(gpa_t dist_base, gpa_t cpu_base)
245 {
246         if (dist_base + KVM_VGIC_V2_DIST_SIZE < dist_base)
247                 return false;
248         if (cpu_base + KVM_VGIC_V2_CPU_SIZE < cpu_base)
249                 return false;
250
251         if (dist_base + KVM_VGIC_V2_DIST_SIZE <= cpu_base)
252                 return true;
253         if (cpu_base + KVM_VGIC_V2_CPU_SIZE <= dist_base)
254                 return true;
255
256         return false;
257 }
258
259 int vgic_v2_map_resources(struct kvm *kvm)
260 {
261         struct vgic_dist *dist = &kvm->arch.vgic;
262         int ret = 0;
263
264         if (vgic_ready(kvm))
265                 goto out;
266
267         if (IS_VGIC_ADDR_UNDEF(dist->vgic_dist_base) ||
268             IS_VGIC_ADDR_UNDEF(dist->vgic_cpu_base)) {
269                 kvm_err("Need to set vgic cpu and dist addresses first\n");
270                 ret = -ENXIO;
271                 goto out;
272         }
273
274         if (!vgic_v2_check_base(dist->vgic_dist_base, dist->vgic_cpu_base)) {
275                 kvm_err("VGIC CPU and dist frames overlap\n");
276                 ret = -EINVAL;
277                 goto out;
278         }
279
280         /*
281          * Initialize the vgic if this hasn't already been done on demand by
282          * accessing the vgic state from userspace.
283          */
284         ret = vgic_init(kvm);
285         if (ret) {
286                 kvm_err("Unable to initialize VGIC dynamic data structures\n");
287                 goto out;
288         }
289
290         ret = vgic_register_dist_iodev(kvm, dist->vgic_dist_base, VGIC_V2);
291         if (ret) {
292                 kvm_err("Unable to register VGIC MMIO regions\n");
293                 goto out;
294         }
295
296         if (!static_branch_unlikely(&vgic_v2_cpuif_trap)) {
297                 ret = kvm_phys_addr_ioremap(kvm, dist->vgic_cpu_base,
298                                             kvm_vgic_global_state.vcpu_base,
299                                             KVM_VGIC_V2_CPU_SIZE, true);
300                 if (ret) {
301                         kvm_err("Unable to remap VGIC CPU to VCPU\n");
302                         goto out;
303                 }
304         }
305
306         dist->ready = true;
307
308 out:
309         return ret;
310 }
311
312 DEFINE_STATIC_KEY_FALSE(vgic_v2_cpuif_trap);
313
314 /**
315  * vgic_v2_probe - probe for a GICv2 compatible interrupt controller in DT
316  * @node:       pointer to the DT node
317  *
318  * Returns 0 if a GICv2 has been found, returns an error code otherwise
319  */
320 int vgic_v2_probe(const struct gic_kvm_info *info)
321 {
322         int ret;
323         u32 vtr;
324
325         if (!info->vctrl.start) {
326                 kvm_err("GICH not present in the firmware table\n");
327                 return -ENXIO;
328         }
329
330         if (!PAGE_ALIGNED(info->vcpu.start) ||
331             !PAGE_ALIGNED(resource_size(&info->vcpu))) {
332                 kvm_info("GICV region size/alignment is unsafe, using trapping (reduced performance)\n");
333                 kvm_vgic_global_state.vcpu_base_va = ioremap(info->vcpu.start,
334                                                              resource_size(&info->vcpu));
335                 if (!kvm_vgic_global_state.vcpu_base_va) {
336                         kvm_err("Cannot ioremap GICV\n");
337                         return -ENOMEM;
338                 }
339
340                 ret = create_hyp_io_mappings(kvm_vgic_global_state.vcpu_base_va,
341                                              kvm_vgic_global_state.vcpu_base_va + resource_size(&info->vcpu),
342                                              info->vcpu.start);
343                 if (ret) {
344                         kvm_err("Cannot map GICV into hyp\n");
345                         goto out;
346                 }
347
348                 static_branch_enable(&vgic_v2_cpuif_trap);
349         }
350
351         kvm_vgic_global_state.vctrl_base = ioremap(info->vctrl.start,
352                                                    resource_size(&info->vctrl));
353         if (!kvm_vgic_global_state.vctrl_base) {
354                 kvm_err("Cannot ioremap GICH\n");
355                 ret = -ENOMEM;
356                 goto out;
357         }
358
359         vtr = readl_relaxed(kvm_vgic_global_state.vctrl_base + GICH_VTR);
360         kvm_vgic_global_state.nr_lr = (vtr & 0x3f) + 1;
361
362         ret = create_hyp_io_mappings(kvm_vgic_global_state.vctrl_base,
363                                      kvm_vgic_global_state.vctrl_base +
364                                          resource_size(&info->vctrl),
365                                      info->vctrl.start);
366         if (ret) {
367                 kvm_err("Cannot map VCTRL into hyp\n");
368                 goto out;
369         }
370
371         ret = kvm_register_vgic_device(KVM_DEV_TYPE_ARM_VGIC_V2);
372         if (ret) {
373                 kvm_err("Cannot register GICv2 KVM device\n");
374                 goto out;
375         }
376
377         kvm_vgic_global_state.can_emulate_gicv2 = true;
378         kvm_vgic_global_state.vcpu_base = info->vcpu.start;
379         kvm_vgic_global_state.type = VGIC_V2;
380         kvm_vgic_global_state.max_gic_vcpus = VGIC_V2_MAX_CPUS;
381
382         kvm_info("vgic-v2@%llx\n", info->vctrl.start);
383
384         return 0;
385 out:
386         if (kvm_vgic_global_state.vctrl_base)
387                 iounmap(kvm_vgic_global_state.vctrl_base);
388         if (kvm_vgic_global_state.vcpu_base_va)
389                 iounmap(kvm_vgic_global_state.vcpu_base_va);
390
391         return ret;
392 }