Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 1 | /* |
| 2 | * VGIC MMIO handling functions |
| 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 | |
| 14 | #include <linux/bitops.h> |
| 15 | #include <linux/bsearch.h> |
| 16 | #include <linux/kvm.h> |
| 17 | #include <linux/kvm_host.h> |
| 18 | #include <kvm/iodev.h> |
| 19 | #include <kvm/arm_vgic.h> |
| 20 | |
| 21 | #include "vgic.h" |
| 22 | #include "vgic-mmio.h" |
| 23 | |
| 24 | unsigned long vgic_mmio_read_raz(struct kvm_vcpu *vcpu, |
| 25 | gpa_t addr, unsigned int len) |
| 26 | { |
| 27 | return 0; |
| 28 | } |
| 29 | |
| 30 | unsigned long vgic_mmio_read_rao(struct kvm_vcpu *vcpu, |
| 31 | gpa_t addr, unsigned int len) |
| 32 | { |
| 33 | return -1UL; |
| 34 | } |
| 35 | |
| 36 | void vgic_mmio_write_wi(struct kvm_vcpu *vcpu, gpa_t addr, |
| 37 | unsigned int len, unsigned long val) |
| 38 | { |
| 39 | /* Ignore */ |
| 40 | } |
| 41 | |
Andre Przywara | fd122e6 | 2015-12-01 14:33:05 +0000 | [diff] [blame] | 42 | /* |
| 43 | * Read accesses to both GICD_ICENABLER and GICD_ISENABLER return the value |
| 44 | * of the enabled bit, so there is only one function for both here. |
| 45 | */ |
| 46 | unsigned long vgic_mmio_read_enable(struct kvm_vcpu *vcpu, |
| 47 | gpa_t addr, unsigned int len) |
| 48 | { |
| 49 | u32 intid = VGIC_ADDR_TO_INTID(addr, 1); |
| 50 | u32 value = 0; |
| 51 | int i; |
| 52 | |
| 53 | /* Loop over all IRQs affected by this read */ |
| 54 | for (i = 0; i < len * 8; i++) { |
| 55 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 56 | |
| 57 | if (irq->enabled) |
| 58 | value |= (1U << i); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 59 | |
| 60 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | fd122e6 | 2015-12-01 14:33:05 +0000 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | return value; |
| 64 | } |
| 65 | |
| 66 | void vgic_mmio_write_senable(struct kvm_vcpu *vcpu, |
| 67 | gpa_t addr, unsigned int len, |
| 68 | unsigned long val) |
| 69 | { |
| 70 | u32 intid = VGIC_ADDR_TO_INTID(addr, 1); |
| 71 | int i; |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 72 | unsigned long flags; |
Andre Przywara | fd122e6 | 2015-12-01 14:33:05 +0000 | [diff] [blame] | 73 | |
| 74 | for_each_set_bit(i, &val, len * 8) { |
| 75 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 76 | |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 77 | spin_lock_irqsave(&irq->irq_lock, flags); |
Andre Przywara | fd122e6 | 2015-12-01 14:33:05 +0000 | [diff] [blame] | 78 | irq->enabled = true; |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 79 | vgic_queue_irq_unlock(vcpu->kvm, irq, flags); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 80 | |
| 81 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | fd122e6 | 2015-12-01 14:33:05 +0000 | [diff] [blame] | 82 | } |
| 83 | } |
| 84 | |
| 85 | void vgic_mmio_write_cenable(struct kvm_vcpu *vcpu, |
| 86 | gpa_t addr, unsigned int len, |
| 87 | unsigned long val) |
| 88 | { |
| 89 | u32 intid = VGIC_ADDR_TO_INTID(addr, 1); |
| 90 | int i; |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 91 | unsigned long flags; |
Andre Przywara | fd122e6 | 2015-12-01 14:33:05 +0000 | [diff] [blame] | 92 | |
| 93 | for_each_set_bit(i, &val, len * 8) { |
| 94 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 95 | |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 96 | spin_lock_irqsave(&irq->irq_lock, flags); |
Andre Przywara | fd122e6 | 2015-12-01 14:33:05 +0000 | [diff] [blame] | 97 | |
| 98 | irq->enabled = false; |
| 99 | |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 100 | spin_unlock_irqrestore(&irq->irq_lock, flags); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 101 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | fd122e6 | 2015-12-01 14:33:05 +0000 | [diff] [blame] | 102 | } |
| 103 | } |
| 104 | |
Andre Przywara | 96b2980 | 2015-12-01 14:33:41 +0000 | [diff] [blame] | 105 | unsigned long vgic_mmio_read_pending(struct kvm_vcpu *vcpu, |
| 106 | gpa_t addr, unsigned int len) |
| 107 | { |
| 108 | u32 intid = VGIC_ADDR_TO_INTID(addr, 1); |
| 109 | u32 value = 0; |
| 110 | int i; |
| 111 | |
| 112 | /* Loop over all IRQs affected by this read */ |
| 113 | for (i = 0; i < len * 8; i++) { |
| 114 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 115 | |
Christoffer Dall | 8694e4d | 2017-01-23 14:07:18 +0100 | [diff] [blame] | 116 | if (irq_is_pending(irq)) |
Andre Przywara | 96b2980 | 2015-12-01 14:33:41 +0000 | [diff] [blame] | 117 | value |= (1U << i); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 118 | |
| 119 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | 96b2980 | 2015-12-01 14:33:41 +0000 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | return value; |
| 123 | } |
| 124 | |
Christoffer Dall | 6c1b7521 | 2017-09-14 11:08:45 -0700 | [diff] [blame^] | 125 | /* |
| 126 | * This function will return the VCPU that performed the MMIO access and |
| 127 | * trapped from within the VM, and will return NULL if this is a userspace |
| 128 | * access. |
| 129 | * |
| 130 | * We can disable preemption locally around accessing the per-CPU variable, |
| 131 | * and use the resolved vcpu pointer after enabling preemption again, because |
| 132 | * even if the current thread is migrated to another CPU, reading the per-CPU |
| 133 | * value later will give us the same value as we update the per-CPU variable |
| 134 | * in the preempt notifier handlers. |
| 135 | */ |
| 136 | static struct kvm_vcpu *vgic_get_mmio_requester_vcpu(void) |
| 137 | { |
| 138 | struct kvm_vcpu *vcpu; |
| 139 | |
| 140 | preempt_disable(); |
| 141 | vcpu = kvm_arm_get_running_vcpu(); |
| 142 | preempt_enable(); |
| 143 | return vcpu; |
| 144 | } |
| 145 | |
Andre Przywara | 96b2980 | 2015-12-01 14:33:41 +0000 | [diff] [blame] | 146 | void vgic_mmio_write_spending(struct kvm_vcpu *vcpu, |
| 147 | gpa_t addr, unsigned int len, |
| 148 | unsigned long val) |
| 149 | { |
| 150 | u32 intid = VGIC_ADDR_TO_INTID(addr, 1); |
| 151 | int i; |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 152 | unsigned long flags; |
Andre Przywara | 96b2980 | 2015-12-01 14:33:41 +0000 | [diff] [blame] | 153 | |
| 154 | for_each_set_bit(i, &val, len * 8) { |
| 155 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 156 | |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 157 | spin_lock_irqsave(&irq->irq_lock, flags); |
Christoffer Dall | 8694e4d | 2017-01-23 14:07:18 +0100 | [diff] [blame] | 158 | irq->pending_latch = true; |
Andre Przywara | 96b2980 | 2015-12-01 14:33:41 +0000 | [diff] [blame] | 159 | |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 160 | vgic_queue_irq_unlock(vcpu->kvm, irq, flags); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 161 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | 96b2980 | 2015-12-01 14:33:41 +0000 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | |
| 165 | void vgic_mmio_write_cpending(struct kvm_vcpu *vcpu, |
| 166 | gpa_t addr, unsigned int len, |
| 167 | unsigned long val) |
| 168 | { |
| 169 | u32 intid = VGIC_ADDR_TO_INTID(addr, 1); |
| 170 | int i; |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 171 | unsigned long flags; |
Andre Przywara | 96b2980 | 2015-12-01 14:33:41 +0000 | [diff] [blame] | 172 | |
| 173 | for_each_set_bit(i, &val, len * 8) { |
| 174 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 175 | |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 176 | spin_lock_irqsave(&irq->irq_lock, flags); |
Andre Przywara | 96b2980 | 2015-12-01 14:33:41 +0000 | [diff] [blame] | 177 | |
Christoffer Dall | 8694e4d | 2017-01-23 14:07:18 +0100 | [diff] [blame] | 178 | irq->pending_latch = false; |
Andre Przywara | 96b2980 | 2015-12-01 14:33:41 +0000 | [diff] [blame] | 179 | |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 180 | spin_unlock_irqrestore(&irq->irq_lock, flags); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 181 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | 96b2980 | 2015-12-01 14:33:41 +0000 | [diff] [blame] | 182 | } |
| 183 | } |
| 184 | |
Andre Przywara | 69b6fe0 | 2015-12-01 12:40:58 +0000 | [diff] [blame] | 185 | unsigned long vgic_mmio_read_active(struct kvm_vcpu *vcpu, |
| 186 | gpa_t addr, unsigned int len) |
| 187 | { |
| 188 | u32 intid = VGIC_ADDR_TO_INTID(addr, 1); |
| 189 | u32 value = 0; |
| 190 | int i; |
| 191 | |
| 192 | /* Loop over all IRQs affected by this read */ |
| 193 | for (i = 0; i < len * 8; i++) { |
| 194 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 195 | |
| 196 | if (irq->active) |
| 197 | value |= (1U << i); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 198 | |
| 199 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | 69b6fe0 | 2015-12-01 12:40:58 +0000 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | return value; |
| 203 | } |
| 204 | |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 205 | static void vgic_mmio_change_active(struct kvm_vcpu *vcpu, struct vgic_irq *irq, |
| 206 | bool new_active_state) |
| 207 | { |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 208 | unsigned long flags; |
Christoffer Dall | 6c1b7521 | 2017-09-14 11:08:45 -0700 | [diff] [blame^] | 209 | struct kvm_vcpu *requester_vcpu = vgic_get_mmio_requester_vcpu(); |
Jintack Lim | 370a0ec | 2017-03-06 05:42:37 -0800 | [diff] [blame] | 210 | |
Christoffer Dall | 6c1b7521 | 2017-09-14 11:08:45 -0700 | [diff] [blame^] | 211 | spin_lock_irqsave(&irq->irq_lock, flags); |
Jintack Lim | 370a0ec | 2017-03-06 05:42:37 -0800 | [diff] [blame] | 212 | |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 213 | /* |
| 214 | * If this virtual IRQ was written into a list register, we |
| 215 | * have to make sure the CPU that runs the VCPU thread has |
Jintack Lim | 370a0ec | 2017-03-06 05:42:37 -0800 | [diff] [blame] | 216 | * synced back the LR state to the struct vgic_irq. |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 217 | * |
Jintack Lim | 370a0ec | 2017-03-06 05:42:37 -0800 | [diff] [blame] | 218 | * As long as the conditions below are true, we know the VCPU thread |
| 219 | * may be on its way back from the guest (we kicked the VCPU thread in |
| 220 | * vgic_change_active_prepare) and still has to sync back this IRQ, |
| 221 | * so we release and re-acquire the spin_lock to let the other thread |
| 222 | * sync back the IRQ. |
Christoffer Dall | 6c1b7521 | 2017-09-14 11:08:45 -0700 | [diff] [blame^] | 223 | * |
| 224 | * When accessing VGIC state from user space, requester_vcpu is |
| 225 | * NULL, which is fine, because we guarantee that no VCPUs are running |
| 226 | * when accessing VGIC state from user space so irq->vcpu->cpu is |
| 227 | * always -1. |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 228 | */ |
| 229 | while (irq->vcpu && /* IRQ may have state in an LR somewhere */ |
Jintack Lim | 370a0ec | 2017-03-06 05:42:37 -0800 | [diff] [blame] | 230 | irq->vcpu != requester_vcpu && /* Current thread is not the VCPU thread */ |
Marc Zyngier | 05fb05a | 2016-06-02 09:24:06 +0100 | [diff] [blame] | 231 | irq->vcpu->cpu != -1) /* VCPU thread is running */ |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 232 | cond_resched_lock(&irq->irq_lock); |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 233 | |
| 234 | irq->active = new_active_state; |
| 235 | if (new_active_state) |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 236 | vgic_queue_irq_unlock(vcpu->kvm, irq, flags); |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 237 | else |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 238 | spin_unlock_irqrestore(&irq->irq_lock, flags); |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | /* |
| 242 | * If we are fiddling with an IRQ's active state, we have to make sure the IRQ |
| 243 | * is not queued on some running VCPU's LRs, because then the change to the |
| 244 | * active state can be overwritten when the VCPU's state is synced coming back |
| 245 | * from the guest. |
| 246 | * |
| 247 | * For shared interrupts, we have to stop all the VCPUs because interrupts can |
| 248 | * be migrated while we don't hold the IRQ locks and we don't want to be |
| 249 | * chasing moving targets. |
| 250 | * |
Christoffer Dall | abd7229 | 2017-05-06 20:01:24 +0200 | [diff] [blame] | 251 | * For private interrupts we don't have to do anything because userspace |
| 252 | * accesses to the VGIC state already require all VCPUs to be stopped, and |
| 253 | * only the VCPU itself can modify its private interrupts active state, which |
| 254 | * guarantees that the VCPU is not running. |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 255 | */ |
| 256 | static void vgic_change_active_prepare(struct kvm_vcpu *vcpu, u32 intid) |
| 257 | { |
Christoffer Dall | abd7229 | 2017-05-06 20:01:24 +0200 | [diff] [blame] | 258 | if (intid > VGIC_NR_PRIVATE_IRQS) |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 259 | kvm_arm_halt_guest(vcpu->kvm); |
| 260 | } |
| 261 | |
| 262 | /* See vgic_change_active_prepare */ |
| 263 | static void vgic_change_active_finish(struct kvm_vcpu *vcpu, u32 intid) |
| 264 | { |
Christoffer Dall | abd7229 | 2017-05-06 20:01:24 +0200 | [diff] [blame] | 265 | if (intid > VGIC_NR_PRIVATE_IRQS) |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 266 | kvm_arm_resume_guest(vcpu->kvm); |
| 267 | } |
| 268 | |
Christoffer Dall | 3197191 | 2017-05-16 09:44:39 +0200 | [diff] [blame] | 269 | static void __vgic_mmio_write_cactive(struct kvm_vcpu *vcpu, |
| 270 | gpa_t addr, unsigned int len, |
| 271 | unsigned long val) |
Andre Przywara | 69b6fe0 | 2015-12-01 12:40:58 +0000 | [diff] [blame] | 272 | { |
| 273 | u32 intid = VGIC_ADDR_TO_INTID(addr, 1); |
| 274 | int i; |
| 275 | |
Andre Przywara | 69b6fe0 | 2015-12-01 12:40:58 +0000 | [diff] [blame] | 276 | for_each_set_bit(i, &val, len * 8) { |
| 277 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 278 | vgic_mmio_change_active(vcpu, irq, false); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 279 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | 69b6fe0 | 2015-12-01 12:40:58 +0000 | [diff] [blame] | 280 | } |
Christoffer Dall | 3197191 | 2017-05-16 09:44:39 +0200 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | void vgic_mmio_write_cactive(struct kvm_vcpu *vcpu, |
| 284 | gpa_t addr, unsigned int len, |
| 285 | unsigned long val) |
| 286 | { |
| 287 | u32 intid = VGIC_ADDR_TO_INTID(addr, 1); |
| 288 | |
Christoffer Dall | abd7229 | 2017-05-06 20:01:24 +0200 | [diff] [blame] | 289 | mutex_lock(&vcpu->kvm->lock); |
Christoffer Dall | 3197191 | 2017-05-16 09:44:39 +0200 | [diff] [blame] | 290 | vgic_change_active_prepare(vcpu, intid); |
| 291 | |
| 292 | __vgic_mmio_write_cactive(vcpu, addr, len, val); |
| 293 | |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 294 | vgic_change_active_finish(vcpu, intid); |
Christoffer Dall | abd7229 | 2017-05-06 20:01:24 +0200 | [diff] [blame] | 295 | mutex_unlock(&vcpu->kvm->lock); |
Andre Przywara | 69b6fe0 | 2015-12-01 12:40:58 +0000 | [diff] [blame] | 296 | } |
| 297 | |
Christoffer Dall | 3197191 | 2017-05-16 09:44:39 +0200 | [diff] [blame] | 298 | void vgic_mmio_uaccess_write_cactive(struct kvm_vcpu *vcpu, |
| 299 | gpa_t addr, unsigned int len, |
| 300 | unsigned long val) |
| 301 | { |
| 302 | __vgic_mmio_write_cactive(vcpu, addr, len, val); |
| 303 | } |
| 304 | |
| 305 | static void __vgic_mmio_write_sactive(struct kvm_vcpu *vcpu, |
| 306 | gpa_t addr, unsigned int len, |
| 307 | unsigned long val) |
| 308 | { |
| 309 | u32 intid = VGIC_ADDR_TO_INTID(addr, 1); |
| 310 | int i; |
| 311 | |
| 312 | for_each_set_bit(i, &val, len * 8) { |
| 313 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 314 | vgic_mmio_change_active(vcpu, irq, true); |
| 315 | vgic_put_irq(vcpu->kvm, irq); |
| 316 | } |
| 317 | } |
| 318 | |
Andre Przywara | 69b6fe0 | 2015-12-01 12:40:58 +0000 | [diff] [blame] | 319 | void vgic_mmio_write_sactive(struct kvm_vcpu *vcpu, |
| 320 | gpa_t addr, unsigned int len, |
| 321 | unsigned long val) |
| 322 | { |
| 323 | u32 intid = VGIC_ADDR_TO_INTID(addr, 1); |
Andre Przywara | 69b6fe0 | 2015-12-01 12:40:58 +0000 | [diff] [blame] | 324 | |
Christoffer Dall | abd7229 | 2017-05-06 20:01:24 +0200 | [diff] [blame] | 325 | mutex_lock(&vcpu->kvm->lock); |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 326 | vgic_change_active_prepare(vcpu, intid); |
Christoffer Dall | 3197191 | 2017-05-16 09:44:39 +0200 | [diff] [blame] | 327 | |
| 328 | __vgic_mmio_write_sactive(vcpu, addr, len, val); |
| 329 | |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 330 | vgic_change_active_finish(vcpu, intid); |
Christoffer Dall | abd7229 | 2017-05-06 20:01:24 +0200 | [diff] [blame] | 331 | mutex_unlock(&vcpu->kvm->lock); |
Andre Przywara | 69b6fe0 | 2015-12-01 12:40:58 +0000 | [diff] [blame] | 332 | } |
| 333 | |
Christoffer Dall | 3197191 | 2017-05-16 09:44:39 +0200 | [diff] [blame] | 334 | void vgic_mmio_uaccess_write_sactive(struct kvm_vcpu *vcpu, |
| 335 | gpa_t addr, unsigned int len, |
| 336 | unsigned long val) |
| 337 | { |
| 338 | __vgic_mmio_write_sactive(vcpu, addr, len, val); |
| 339 | } |
| 340 | |
Andre Przywara | 055658b | 2015-12-01 14:34:02 +0000 | [diff] [blame] | 341 | unsigned long vgic_mmio_read_priority(struct kvm_vcpu *vcpu, |
| 342 | gpa_t addr, unsigned int len) |
| 343 | { |
| 344 | u32 intid = VGIC_ADDR_TO_INTID(addr, 8); |
| 345 | int i; |
| 346 | u64 val = 0; |
| 347 | |
| 348 | for (i = 0; i < len; i++) { |
| 349 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 350 | |
| 351 | val |= (u64)irq->priority << (i * 8); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 352 | |
| 353 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | 055658b | 2015-12-01 14:34:02 +0000 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | return val; |
| 357 | } |
| 358 | |
| 359 | /* |
| 360 | * We currently don't handle changing the priority of an interrupt that |
| 361 | * is already pending on a VCPU. If there is a need for this, we would |
| 362 | * need to make this VCPU exit and re-evaluate the priorities, potentially |
| 363 | * leading to this interrupt getting presented now to the guest (if it has |
| 364 | * been masked by the priority mask before). |
| 365 | */ |
| 366 | void vgic_mmio_write_priority(struct kvm_vcpu *vcpu, |
| 367 | gpa_t addr, unsigned int len, |
| 368 | unsigned long val) |
| 369 | { |
| 370 | u32 intid = VGIC_ADDR_TO_INTID(addr, 8); |
| 371 | int i; |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 372 | unsigned long flags; |
Andre Przywara | 055658b | 2015-12-01 14:34:02 +0000 | [diff] [blame] | 373 | |
| 374 | for (i = 0; i < len; i++) { |
| 375 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 376 | |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 377 | spin_lock_irqsave(&irq->irq_lock, flags); |
Andre Przywara | 055658b | 2015-12-01 14:34:02 +0000 | [diff] [blame] | 378 | /* Narrow the priority range to what we actually support */ |
| 379 | irq->priority = (val >> (i * 8)) & GENMASK(7, 8 - VGIC_PRI_BITS); |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 380 | spin_unlock_irqrestore(&irq->irq_lock, flags); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 381 | |
| 382 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | 055658b | 2015-12-01 14:34:02 +0000 | [diff] [blame] | 383 | } |
| 384 | } |
| 385 | |
Andre Przywara | 79717e4 | 2015-12-01 12:41:31 +0000 | [diff] [blame] | 386 | unsigned long vgic_mmio_read_config(struct kvm_vcpu *vcpu, |
| 387 | gpa_t addr, unsigned int len) |
| 388 | { |
| 389 | u32 intid = VGIC_ADDR_TO_INTID(addr, 2); |
| 390 | u32 value = 0; |
| 391 | int i; |
| 392 | |
| 393 | for (i = 0; i < len * 4; i++) { |
| 394 | struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 395 | |
| 396 | if (irq->config == VGIC_CONFIG_EDGE) |
| 397 | value |= (2U << (i * 2)); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 398 | |
| 399 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | 79717e4 | 2015-12-01 12:41:31 +0000 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | return value; |
| 403 | } |
| 404 | |
| 405 | void vgic_mmio_write_config(struct kvm_vcpu *vcpu, |
| 406 | gpa_t addr, unsigned int len, |
| 407 | unsigned long val) |
| 408 | { |
| 409 | u32 intid = VGIC_ADDR_TO_INTID(addr, 2); |
| 410 | int i; |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 411 | unsigned long flags; |
Andre Przywara | 79717e4 | 2015-12-01 12:41:31 +0000 | [diff] [blame] | 412 | |
| 413 | for (i = 0; i < len * 4; i++) { |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 414 | struct vgic_irq *irq; |
Andre Przywara | 79717e4 | 2015-12-01 12:41:31 +0000 | [diff] [blame] | 415 | |
| 416 | /* |
| 417 | * The configuration cannot be changed for SGIs in general, |
| 418 | * for PPIs this is IMPLEMENTATION DEFINED. The arch timer |
| 419 | * code relies on PPIs being level triggered, so we also |
| 420 | * make them read-only here. |
| 421 | */ |
| 422 | if (intid + i < VGIC_NR_PRIVATE_IRQS) |
| 423 | continue; |
| 424 | |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 425 | irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 426 | spin_lock_irqsave(&irq->irq_lock, flags); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 427 | |
Christoffer Dall | 8694e4d | 2017-01-23 14:07:18 +0100 | [diff] [blame] | 428 | if (test_bit(i * 2 + 1, &val)) |
Andre Przywara | 79717e4 | 2015-12-01 12:41:31 +0000 | [diff] [blame] | 429 | irq->config = VGIC_CONFIG_EDGE; |
Christoffer Dall | 8694e4d | 2017-01-23 14:07:18 +0100 | [diff] [blame] | 430 | else |
Andre Przywara | 79717e4 | 2015-12-01 12:41:31 +0000 | [diff] [blame] | 431 | irq->config = VGIC_CONFIG_LEVEL; |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 432 | |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 433 | spin_unlock_irqrestore(&irq->irq_lock, flags); |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 434 | vgic_put_irq(vcpu->kvm, irq); |
Andre Przywara | 79717e4 | 2015-12-01 12:41:31 +0000 | [diff] [blame] | 435 | } |
| 436 | } |
| 437 | |
Vijaya Kumar K | e96a006 | 2017-01-26 19:50:52 +0530 | [diff] [blame] | 438 | u64 vgic_read_irq_line_level_info(struct kvm_vcpu *vcpu, u32 intid) |
| 439 | { |
| 440 | int i; |
| 441 | u64 val = 0; |
| 442 | int nr_irqs = vcpu->kvm->arch.vgic.nr_spis + VGIC_NR_PRIVATE_IRQS; |
| 443 | |
| 444 | for (i = 0; i < 32; i++) { |
| 445 | struct vgic_irq *irq; |
| 446 | |
| 447 | if ((intid + i) < VGIC_NR_SGIS || (intid + i) >= nr_irqs) |
| 448 | continue; |
| 449 | |
| 450 | irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 451 | if (irq->config == VGIC_CONFIG_LEVEL && irq->line_level) |
| 452 | val |= (1U << i); |
| 453 | |
| 454 | vgic_put_irq(vcpu->kvm, irq); |
| 455 | } |
| 456 | |
| 457 | return val; |
| 458 | } |
| 459 | |
| 460 | void vgic_write_irq_line_level_info(struct kvm_vcpu *vcpu, u32 intid, |
| 461 | const u64 val) |
| 462 | { |
| 463 | int i; |
| 464 | int nr_irqs = vcpu->kvm->arch.vgic.nr_spis + VGIC_NR_PRIVATE_IRQS; |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 465 | unsigned long flags; |
Vijaya Kumar K | e96a006 | 2017-01-26 19:50:52 +0530 | [diff] [blame] | 466 | |
| 467 | for (i = 0; i < 32; i++) { |
| 468 | struct vgic_irq *irq; |
| 469 | bool new_level; |
| 470 | |
| 471 | if ((intid + i) < VGIC_NR_SGIS || (intid + i) >= nr_irqs) |
| 472 | continue; |
| 473 | |
| 474 | irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); |
| 475 | |
| 476 | /* |
| 477 | * Line level is set irrespective of irq type |
| 478 | * (level or edge) to avoid dependency that VM should |
| 479 | * restore irq config before line level. |
| 480 | */ |
| 481 | new_level = !!(val & (1U << i)); |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 482 | spin_lock_irqsave(&irq->irq_lock, flags); |
Vijaya Kumar K | e96a006 | 2017-01-26 19:50:52 +0530 | [diff] [blame] | 483 | irq->line_level = new_level; |
| 484 | if (new_level) |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 485 | vgic_queue_irq_unlock(vcpu->kvm, irq, flags); |
Vijaya Kumar K | e96a006 | 2017-01-26 19:50:52 +0530 | [diff] [blame] | 486 | else |
Christoffer Dall | 006df0f | 2016-10-16 22:19:11 +0200 | [diff] [blame] | 487 | spin_unlock_irqrestore(&irq->irq_lock, flags); |
Vijaya Kumar K | e96a006 | 2017-01-26 19:50:52 +0530 | [diff] [blame] | 488 | |
| 489 | vgic_put_irq(vcpu->kvm, irq); |
| 490 | } |
| 491 | } |
| 492 | |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 493 | static int match_region(const void *key, const void *elt) |
| 494 | { |
| 495 | const unsigned int offset = (unsigned long)key; |
| 496 | const struct vgic_register_region *region = elt; |
| 497 | |
| 498 | if (offset < region->reg_offset) |
| 499 | return -1; |
| 500 | |
| 501 | if (offset >= region->reg_offset + region->len) |
| 502 | return 1; |
| 503 | |
| 504 | return 0; |
| 505 | } |
| 506 | |
Eric Auger | 4b7171a | 2016-12-20 09:20:00 +0100 | [diff] [blame] | 507 | const struct vgic_register_region * |
| 508 | vgic_find_mmio_region(const struct vgic_register_region *regions, |
| 509 | int nr_regions, unsigned int offset) |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 510 | { |
Eric Auger | 4b7171a | 2016-12-20 09:20:00 +0100 | [diff] [blame] | 511 | return bsearch((void *)(uintptr_t)offset, regions, nr_regions, |
| 512 | sizeof(regions[0]), match_region); |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 513 | } |
| 514 | |
Vijaya Kumar K | 5fb247d | 2017-01-26 19:50:50 +0530 | [diff] [blame] | 515 | void vgic_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr) |
| 516 | { |
| 517 | if (kvm_vgic_global_state.type == VGIC_V2) |
| 518 | vgic_v2_set_vmcr(vcpu, vmcr); |
| 519 | else |
| 520 | vgic_v3_set_vmcr(vcpu, vmcr); |
| 521 | } |
| 522 | |
| 523 | void vgic_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr) |
| 524 | { |
| 525 | if (kvm_vgic_global_state.type == VGIC_V2) |
| 526 | vgic_v2_get_vmcr(vcpu, vmcr); |
| 527 | else |
| 528 | vgic_v3_get_vmcr(vcpu, vmcr); |
| 529 | } |
| 530 | |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 531 | /* |
| 532 | * kvm_mmio_read_buf() returns a value in a format where it can be converted |
| 533 | * to a byte array and be directly observed as the guest wanted it to appear |
| 534 | * in memory if it had done the store itself, which is LE for the GIC, as the |
| 535 | * guest knows the GIC is always LE. |
| 536 | * |
| 537 | * We convert this value to the CPUs native format to deal with it as a data |
| 538 | * value. |
| 539 | */ |
| 540 | unsigned long vgic_data_mmio_bus_to_host(const void *val, unsigned int len) |
| 541 | { |
| 542 | unsigned long data = kvm_mmio_read_buf(val, len); |
| 543 | |
| 544 | switch (len) { |
| 545 | case 1: |
| 546 | return data; |
| 547 | case 2: |
| 548 | return le16_to_cpu(data); |
| 549 | case 4: |
| 550 | return le32_to_cpu(data); |
| 551 | default: |
| 552 | return le64_to_cpu(data); |
| 553 | } |
| 554 | } |
| 555 | |
| 556 | /* |
| 557 | * kvm_mmio_write_buf() expects a value in a format such that if converted to |
| 558 | * a byte array it is observed as the guest would see it if it could perform |
| 559 | * the load directly. Since the GIC is LE, and the guest knows this, the |
| 560 | * guest expects a value in little endian format. |
| 561 | * |
| 562 | * We convert the data value from the CPUs native format to LE so that the |
| 563 | * value is returned in the proper format. |
| 564 | */ |
| 565 | void vgic_data_host_to_mmio_bus(void *buf, unsigned int len, |
| 566 | unsigned long data) |
| 567 | { |
| 568 | switch (len) { |
| 569 | case 1: |
| 570 | break; |
| 571 | case 2: |
| 572 | data = cpu_to_le16(data); |
| 573 | break; |
| 574 | case 4: |
| 575 | data = cpu_to_le32(data); |
| 576 | break; |
| 577 | default: |
| 578 | data = cpu_to_le64(data); |
| 579 | } |
| 580 | |
| 581 | kvm_mmio_write_buf(buf, len, data); |
| 582 | } |
| 583 | |
| 584 | static |
| 585 | struct vgic_io_device *kvm_to_vgic_iodev(const struct kvm_io_device *dev) |
| 586 | { |
| 587 | return container_of(dev, struct vgic_io_device, dev); |
| 588 | } |
| 589 | |
Andre Przywara | 112b0b8 | 2016-11-01 18:00:08 +0000 | [diff] [blame] | 590 | static bool check_region(const struct kvm *kvm, |
| 591 | const struct vgic_register_region *region, |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 592 | gpa_t addr, int len) |
| 593 | { |
Andre Przywara | 112b0b8 | 2016-11-01 18:00:08 +0000 | [diff] [blame] | 594 | int flags, nr_irqs = kvm->arch.vgic.nr_spis + VGIC_NR_PRIVATE_IRQS; |
| 595 | |
| 596 | switch (len) { |
| 597 | case sizeof(u8): |
| 598 | flags = VGIC_ACCESS_8bit; |
| 599 | break; |
| 600 | case sizeof(u32): |
| 601 | flags = VGIC_ACCESS_32bit; |
| 602 | break; |
| 603 | case sizeof(u64): |
| 604 | flags = VGIC_ACCESS_64bit; |
| 605 | break; |
| 606 | default: |
| 607 | return false; |
| 608 | } |
| 609 | |
| 610 | if ((region->access_flags & flags) && IS_ALIGNED(addr, len)) { |
| 611 | if (!region->bits_per_irq) |
| 612 | return true; |
| 613 | |
| 614 | /* Do we access a non-allocated IRQ? */ |
| 615 | return VGIC_ADDR_TO_INTID(addr, region->bits_per_irq) < nr_irqs; |
| 616 | } |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 617 | |
| 618 | return false; |
| 619 | } |
| 620 | |
Vijaya Kumar K | 94574c9 | 2017-01-26 19:50:47 +0530 | [diff] [blame] | 621 | const struct vgic_register_region * |
Vijaya Kumar K | 2df903a | 2017-01-26 19:50:46 +0530 | [diff] [blame] | 622 | vgic_get_mmio_region(struct kvm_vcpu *vcpu, struct vgic_io_device *iodev, |
| 623 | gpa_t addr, int len) |
| 624 | { |
| 625 | const struct vgic_register_region *region; |
| 626 | |
| 627 | region = vgic_find_mmio_region(iodev->regions, iodev->nr_regions, |
| 628 | addr - iodev->base_addr); |
| 629 | if (!region || !check_region(vcpu->kvm, region, addr, len)) |
| 630 | return NULL; |
| 631 | |
| 632 | return region; |
| 633 | } |
| 634 | |
| 635 | static int vgic_uaccess_read(struct kvm_vcpu *vcpu, struct kvm_io_device *dev, |
| 636 | gpa_t addr, u32 *val) |
| 637 | { |
| 638 | struct vgic_io_device *iodev = kvm_to_vgic_iodev(dev); |
| 639 | const struct vgic_register_region *region; |
| 640 | struct kvm_vcpu *r_vcpu; |
| 641 | |
| 642 | region = vgic_get_mmio_region(vcpu, iodev, addr, sizeof(u32)); |
| 643 | if (!region) { |
| 644 | *val = 0; |
| 645 | return 0; |
| 646 | } |
| 647 | |
| 648 | r_vcpu = iodev->redist_vcpu ? iodev->redist_vcpu : vcpu; |
| 649 | if (region->uaccess_read) |
| 650 | *val = region->uaccess_read(r_vcpu, addr, sizeof(u32)); |
| 651 | else |
| 652 | *val = region->read(r_vcpu, addr, sizeof(u32)); |
| 653 | |
| 654 | return 0; |
| 655 | } |
| 656 | |
| 657 | static int vgic_uaccess_write(struct kvm_vcpu *vcpu, struct kvm_io_device *dev, |
| 658 | gpa_t addr, const u32 *val) |
| 659 | { |
| 660 | struct vgic_io_device *iodev = kvm_to_vgic_iodev(dev); |
| 661 | const struct vgic_register_region *region; |
| 662 | struct kvm_vcpu *r_vcpu; |
| 663 | |
| 664 | region = vgic_get_mmio_region(vcpu, iodev, addr, sizeof(u32)); |
| 665 | if (!region) |
| 666 | return 0; |
| 667 | |
| 668 | r_vcpu = iodev->redist_vcpu ? iodev->redist_vcpu : vcpu; |
| 669 | if (region->uaccess_write) |
| 670 | region->uaccess_write(r_vcpu, addr, sizeof(u32), *val); |
| 671 | else |
| 672 | region->write(r_vcpu, addr, sizeof(u32), *val); |
| 673 | |
| 674 | return 0; |
| 675 | } |
| 676 | |
| 677 | /* |
| 678 | * Userland access to VGIC registers. |
| 679 | */ |
| 680 | int vgic_uaccess(struct kvm_vcpu *vcpu, struct vgic_io_device *dev, |
| 681 | bool is_write, int offset, u32 *val) |
| 682 | { |
| 683 | if (is_write) |
| 684 | return vgic_uaccess_write(vcpu, &dev->dev, offset, val); |
| 685 | else |
| 686 | return vgic_uaccess_read(vcpu, &dev->dev, offset, val); |
| 687 | } |
| 688 | |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 689 | static int dispatch_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *dev, |
| 690 | gpa_t addr, int len, void *val) |
| 691 | { |
| 692 | struct vgic_io_device *iodev = kvm_to_vgic_iodev(dev); |
| 693 | const struct vgic_register_region *region; |
Andre Przywara | 59c5ab4 | 2016-07-15 12:43:30 +0100 | [diff] [blame] | 694 | unsigned long data = 0; |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 695 | |
Vijaya Kumar K | 2df903a | 2017-01-26 19:50:46 +0530 | [diff] [blame] | 696 | region = vgic_get_mmio_region(vcpu, iodev, addr, len); |
| 697 | if (!region) { |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 698 | memset(val, 0, len); |
| 699 | return 0; |
| 700 | } |
| 701 | |
Andre Przywara | 59c5ab4 | 2016-07-15 12:43:30 +0100 | [diff] [blame] | 702 | switch (iodev->iodev_type) { |
| 703 | case IODEV_CPUIF: |
Eric Auger | 9d5fcb9 | 2016-07-18 10:57:36 +0000 | [diff] [blame] | 704 | data = region->read(vcpu, addr, len); |
| 705 | break; |
Andre Przywara | 59c5ab4 | 2016-07-15 12:43:30 +0100 | [diff] [blame] | 706 | case IODEV_DIST: |
| 707 | data = region->read(vcpu, addr, len); |
| 708 | break; |
| 709 | case IODEV_REDIST: |
| 710 | data = region->read(iodev->redist_vcpu, addr, len); |
| 711 | break; |
| 712 | case IODEV_ITS: |
| 713 | data = region->its_read(vcpu->kvm, iodev->its, addr, len); |
| 714 | break; |
| 715 | } |
| 716 | |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 717 | vgic_data_host_to_mmio_bus(val, len, data); |
| 718 | return 0; |
| 719 | } |
| 720 | |
| 721 | static int dispatch_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *dev, |
| 722 | gpa_t addr, int len, const void *val) |
| 723 | { |
| 724 | struct vgic_io_device *iodev = kvm_to_vgic_iodev(dev); |
| 725 | const struct vgic_register_region *region; |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 726 | unsigned long data = vgic_data_mmio_bus_to_host(val, len); |
| 727 | |
Vijaya Kumar K | 2df903a | 2017-01-26 19:50:46 +0530 | [diff] [blame] | 728 | region = vgic_get_mmio_region(vcpu, iodev, addr, len); |
| 729 | if (!region) |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 730 | return 0; |
| 731 | |
Andre Przywara | 59c5ab4 | 2016-07-15 12:43:30 +0100 | [diff] [blame] | 732 | switch (iodev->iodev_type) { |
| 733 | case IODEV_CPUIF: |
Eric Auger | 9d5fcb9 | 2016-07-18 10:57:36 +0000 | [diff] [blame] | 734 | region->write(vcpu, addr, len, data); |
Andre Przywara | 59c5ab4 | 2016-07-15 12:43:30 +0100 | [diff] [blame] | 735 | break; |
| 736 | case IODEV_DIST: |
| 737 | region->write(vcpu, addr, len, data); |
| 738 | break; |
| 739 | case IODEV_REDIST: |
| 740 | region->write(iodev->redist_vcpu, addr, len, data); |
| 741 | break; |
| 742 | case IODEV_ITS: |
| 743 | region->its_write(vcpu->kvm, iodev->its, addr, len, data); |
| 744 | break; |
| 745 | } |
| 746 | |
Marc Zyngier | 4493b1c | 2016-04-26 11:06:12 +0100 | [diff] [blame] | 747 | return 0; |
| 748 | } |
| 749 | |
| 750 | struct kvm_io_device_ops kvm_io_gic_ops = { |
| 751 | .read = dispatch_mmio_read, |
| 752 | .write = dispatch_mmio_write, |
| 753 | }; |
Andre Przywara | fb848db | 2016-04-26 21:32:49 +0100 | [diff] [blame] | 754 | |
| 755 | int vgic_register_dist_iodev(struct kvm *kvm, gpa_t dist_base_address, |
| 756 | enum vgic_type type) |
| 757 | { |
| 758 | struct vgic_io_device *io_device = &kvm->arch.vgic.dist_iodev; |
| 759 | int ret = 0; |
| 760 | unsigned int len; |
| 761 | |
| 762 | switch (type) { |
| 763 | case VGIC_V2: |
| 764 | len = vgic_v2_init_dist_iodev(io_device); |
| 765 | break; |
Andre Przywara | ed9b8ce | 2015-12-01 14:34:34 +0000 | [diff] [blame] | 766 | case VGIC_V3: |
| 767 | len = vgic_v3_init_dist_iodev(io_device); |
| 768 | break; |
Andre Przywara | fb848db | 2016-04-26 21:32:49 +0100 | [diff] [blame] | 769 | default: |
| 770 | BUG_ON(1); |
| 771 | } |
| 772 | |
| 773 | io_device->base_addr = dist_base_address; |
Andre Przywara | 59c5ab4 | 2016-07-15 12:43:30 +0100 | [diff] [blame] | 774 | io_device->iodev_type = IODEV_DIST; |
Andre Przywara | fb848db | 2016-04-26 21:32:49 +0100 | [diff] [blame] | 775 | io_device->redist_vcpu = NULL; |
| 776 | |
| 777 | mutex_lock(&kvm->slots_lock); |
| 778 | ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, dist_base_address, |
| 779 | len, &io_device->dev); |
| 780 | mutex_unlock(&kvm->slots_lock); |
| 781 | |
| 782 | return ret; |
| 783 | } |