Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 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/uaccess.h> |
| 18 | #include <linux/interrupt.h> |
| 19 | #include <linux/cpu.h> |
| 20 | #include <linux/kvm_host.h> |
| 21 | #include <kvm/arm_vgic.h> |
| 22 | #include <asm/kvm_mmu.h> |
| 23 | #include "vgic.h" |
| 24 | |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 25 | /* |
| 26 | * Initialization rules: there are multiple stages to the vgic |
Christoffer Dall | 966e014 | 2017-03-18 13:40:37 +0100 | [diff] [blame] | 27 | * initialization, both for the distributor and the CPU interfaces. The basic |
| 28 | * idea is that even though the VGIC is not functional or not requested from |
| 29 | * user space, the critical path of the run loop can still call VGIC functions |
| 30 | * that just won't do anything, without them having to check additional |
| 31 | * initialization flags to ensure they don't look at uninitialized data |
| 32 | * structures. |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 33 | * |
| 34 | * Distributor: |
| 35 | * |
| 36 | * - kvm_vgic_early_init(): initialization of static data that doesn't |
| 37 | * depend on any sizing information or emulation type. No allocation |
| 38 | * is allowed there. |
| 39 | * |
| 40 | * - vgic_init(): allocation and initialization of the generic data |
| 41 | * structures that depend on sizing information (number of CPUs, |
| 42 | * number of interrupts). Also initializes the vcpu specific data |
| 43 | * structures. Can be executed lazily for GICv2. |
| 44 | * |
| 45 | * CPU Interface: |
| 46 | * |
Christoffer Dall | 966e014 | 2017-03-18 13:40:37 +0100 | [diff] [blame] | 47 | * - kvm_vgic_vcpu_early_init(): initialization of static data that |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 48 | * doesn't depend on any sizing information or emulation type. No |
| 49 | * allocation is allowed there. |
| 50 | */ |
| 51 | |
| 52 | /* EARLY INIT */ |
| 53 | |
Christoffer Dall | 966e014 | 2017-03-18 13:40:37 +0100 | [diff] [blame] | 54 | /** |
| 55 | * kvm_vgic_early_init() - Initialize static VGIC VCPU data structures |
| 56 | * @kvm: The VM whose VGIC districutor should be initialized |
| 57 | * |
| 58 | * Only do initialization of static structures that don't require any |
| 59 | * allocation or sizing information from userspace. vgic_init() called |
| 60 | * kvm_vgic_dist_init() which takes care of the rest. |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 61 | */ |
| 62 | void kvm_vgic_early_init(struct kvm *kvm) |
| 63 | { |
Christoffer Dall | 966e014 | 2017-03-18 13:40:37 +0100 | [diff] [blame] | 64 | struct vgic_dist *dist = &kvm->arch.vgic; |
| 65 | |
| 66 | INIT_LIST_HEAD(&dist->lpi_list_head); |
| 67 | spin_lock_init(&dist->lpi_list_lock); |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 68 | } |
| 69 | |
Christoffer Dall | 966e014 | 2017-03-18 13:40:37 +0100 | [diff] [blame] | 70 | /** |
| 71 | * kvm_vgic_vcpu_early_init() - Initialize static VGIC VCPU data structures |
| 72 | * @vcpu: The VCPU whose VGIC data structures whould be initialized |
| 73 | * |
| 74 | * Only do initialization, but do not actually enable the VGIC CPU interface |
| 75 | * yet. |
| 76 | */ |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 77 | void kvm_vgic_vcpu_early_init(struct kvm_vcpu *vcpu) |
| 78 | { |
Christoffer Dall | 966e014 | 2017-03-18 13:40:37 +0100 | [diff] [blame] | 79 | struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu; |
| 80 | int i; |
| 81 | |
| 82 | INIT_LIST_HEAD(&vgic_cpu->ap_list_head); |
| 83 | spin_lock_init(&vgic_cpu->ap_list_lock); |
| 84 | |
| 85 | /* |
| 86 | * Enable and configure all SGIs to be edge-triggered and |
| 87 | * configure all PPIs as level-triggered. |
| 88 | */ |
| 89 | for (i = 0; i < VGIC_NR_PRIVATE_IRQS; i++) { |
| 90 | struct vgic_irq *irq = &vgic_cpu->private_irqs[i]; |
| 91 | |
| 92 | INIT_LIST_HEAD(&irq->ap_list); |
| 93 | spin_lock_init(&irq->irq_lock); |
| 94 | irq->intid = i; |
| 95 | irq->vcpu = NULL; |
| 96 | irq->target_vcpu = vcpu; |
| 97 | irq->targets = 1U << vcpu->vcpu_id; |
| 98 | kref_init(&irq->refcount); |
| 99 | if (vgic_irq_is_sgi(i)) { |
| 100 | /* SGIs */ |
| 101 | irq->enabled = 1; |
| 102 | irq->config = VGIC_CONFIG_EDGE; |
| 103 | } else { |
| 104 | /* PPIs */ |
| 105 | irq->config = VGIC_CONFIG_LEVEL; |
| 106 | } |
| 107 | } |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 108 | } |
| 109 | |
Eric Auger | 5e6431d | 2015-12-21 14:50:50 +0100 | [diff] [blame] | 110 | /* CREATION */ |
| 111 | |
| 112 | /** |
| 113 | * kvm_vgic_create: triggered by the instantiation of the VGIC device by |
| 114 | * user space, either through the legacy KVM_CREATE_IRQCHIP ioctl (v2 only) |
| 115 | * or through the generic KVM_CREATE_DEVICE API ioctl. |
| 116 | * irqchip_in_kernel() tells you if this function succeeded or not. |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 117 | * @kvm: kvm struct pointer |
| 118 | * @type: KVM_DEV_TYPE_ARM_VGIC_V[23] |
Eric Auger | 5e6431d | 2015-12-21 14:50:50 +0100 | [diff] [blame] | 119 | */ |
| 120 | int kvm_vgic_create(struct kvm *kvm, u32 type) |
| 121 | { |
| 122 | int i, vcpu_lock_idx = -1, ret; |
| 123 | struct kvm_vcpu *vcpu; |
| 124 | |
Christoffer Dall | a28ebea | 2016-08-09 19:13:01 +0200 | [diff] [blame] | 125 | if (irqchip_in_kernel(kvm)) |
| 126 | return -EEXIST; |
Eric Auger | 5e6431d | 2015-12-21 14:50:50 +0100 | [diff] [blame] | 127 | |
| 128 | /* |
| 129 | * This function is also called by the KVM_CREATE_IRQCHIP handler, |
| 130 | * which had no chance yet to check the availability of the GICv2 |
| 131 | * emulation. So check this here again. KVM_CREATE_DEVICE does |
| 132 | * the proper checks already. |
| 133 | */ |
| 134 | if (type == KVM_DEV_TYPE_ARM_VGIC_V2 && |
Christoffer Dall | a28ebea | 2016-08-09 19:13:01 +0200 | [diff] [blame] | 135 | !kvm_vgic_global_state.can_emulate_gicv2) |
| 136 | return -ENODEV; |
Eric Auger | 5e6431d | 2015-12-21 14:50:50 +0100 | [diff] [blame] | 137 | |
| 138 | /* |
| 139 | * Any time a vcpu is run, vcpu_load is called which tries to grab the |
| 140 | * vcpu->mutex. By grabbing the vcpu->mutex of all VCPUs we ensure |
| 141 | * that no other VCPUs are run while we create the vgic. |
| 142 | */ |
| 143 | ret = -EBUSY; |
| 144 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 145 | if (!mutex_trylock(&vcpu->mutex)) |
| 146 | goto out_unlock; |
| 147 | vcpu_lock_idx = i; |
| 148 | } |
| 149 | |
| 150 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 151 | if (vcpu->arch.has_run_once) |
| 152 | goto out_unlock; |
| 153 | } |
| 154 | ret = 0; |
| 155 | |
| 156 | if (type == KVM_DEV_TYPE_ARM_VGIC_V2) |
| 157 | kvm->arch.max_vcpus = VGIC_V2_MAX_CPUS; |
| 158 | else |
| 159 | kvm->arch.max_vcpus = VGIC_V3_MAX_CPUS; |
| 160 | |
| 161 | if (atomic_read(&kvm->online_vcpus) > kvm->arch.max_vcpus) { |
| 162 | ret = -E2BIG; |
| 163 | goto out_unlock; |
| 164 | } |
| 165 | |
| 166 | kvm->arch.vgic.in_kernel = true; |
| 167 | kvm->arch.vgic.vgic_model = type; |
| 168 | |
Eric Auger | 5e6431d | 2015-12-21 14:50:50 +0100 | [diff] [blame] | 169 | kvm->arch.vgic.vgic_dist_base = VGIC_ADDR_UNDEF; |
| 170 | kvm->arch.vgic.vgic_cpu_base = VGIC_ADDR_UNDEF; |
| 171 | kvm->arch.vgic.vgic_redist_base = VGIC_ADDR_UNDEF; |
| 172 | |
| 173 | out_unlock: |
| 174 | for (; vcpu_lock_idx >= 0; vcpu_lock_idx--) { |
| 175 | vcpu = kvm_get_vcpu(kvm, vcpu_lock_idx); |
| 176 | mutex_unlock(&vcpu->mutex); |
| 177 | } |
Eric Auger | 5e6431d | 2015-12-21 14:50:50 +0100 | [diff] [blame] | 178 | return ret; |
| 179 | } |
| 180 | |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 181 | /* INIT/DESTROY */ |
| 182 | |
| 183 | /** |
| 184 | * kvm_vgic_dist_init: initialize the dist data structures |
| 185 | * @kvm: kvm struct pointer |
| 186 | * @nr_spis: number of spis, frozen by caller |
| 187 | */ |
| 188 | static int kvm_vgic_dist_init(struct kvm *kvm, unsigned int nr_spis) |
| 189 | { |
| 190 | struct vgic_dist *dist = &kvm->arch.vgic; |
| 191 | struct kvm_vcpu *vcpu0 = kvm_get_vcpu(kvm, 0); |
| 192 | int i; |
| 193 | |
| 194 | dist->spis = kcalloc(nr_spis, sizeof(struct vgic_irq), GFP_KERNEL); |
| 195 | if (!dist->spis) |
| 196 | return -ENOMEM; |
| 197 | |
| 198 | /* |
| 199 | * In the following code we do not take the irq struct lock since |
| 200 | * no other action on irq structs can happen while the VGIC is |
| 201 | * not initialized yet: |
| 202 | * If someone wants to inject an interrupt or does a MMIO access, we |
| 203 | * require prior initialization in case of a virtual GICv3 or trigger |
| 204 | * initialization when using a virtual GICv2. |
| 205 | */ |
| 206 | for (i = 0; i < nr_spis; i++) { |
| 207 | struct vgic_irq *irq = &dist->spis[i]; |
| 208 | |
| 209 | irq->intid = i + VGIC_NR_PRIVATE_IRQS; |
| 210 | INIT_LIST_HEAD(&irq->ap_list); |
| 211 | spin_lock_init(&irq->irq_lock); |
| 212 | irq->vcpu = NULL; |
| 213 | irq->target_vcpu = vcpu0; |
Andre Przywara | 5dd4b92 | 2016-07-15 12:43:27 +0100 | [diff] [blame] | 214 | kref_init(&irq->refcount); |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 215 | if (dist->vgic_model == KVM_DEV_TYPE_ARM_VGIC_V2) |
| 216 | irq->targets = 0; |
| 217 | else |
| 218 | irq->mpidr = 0; |
| 219 | } |
| 220 | return 0; |
| 221 | } |
| 222 | |
| 223 | /** |
Christoffer Dall | 1aab6f4 | 2017-05-08 12:30:24 +0200 | [diff] [blame] | 224 | * kvm_vgic_vcpu_init() - Register VCPU-specific KVM iodevs |
| 225 | * @vcpu: pointer to the VCPU being created and initialized |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 226 | */ |
Christoffer Dall | 1aab6f4 | 2017-05-08 12:30:24 +0200 | [diff] [blame] | 227 | int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu) |
| 228 | { |
| 229 | int ret = 0; |
| 230 | struct vgic_dist *dist = &vcpu->kvm->arch.vgic; |
| 231 | |
| 232 | if (!irqchip_in_kernel(vcpu->kvm)) |
| 233 | return 0; |
| 234 | |
| 235 | /* |
| 236 | * If we are creating a VCPU with a GICv3 we must also register the |
| 237 | * KVM io device for the redistributor that belongs to this VCPU. |
| 238 | */ |
Christoffer Dall | 552c9f4 | 2017-05-17 13:12:51 +0200 | [diff] [blame] | 239 | if (dist->vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3) { |
| 240 | mutex_lock(&vcpu->kvm->lock); |
Christoffer Dall | 1aab6f4 | 2017-05-08 12:30:24 +0200 | [diff] [blame] | 241 | ret = vgic_register_redist_iodev(vcpu); |
Christoffer Dall | 552c9f4 | 2017-05-17 13:12:51 +0200 | [diff] [blame] | 242 | mutex_unlock(&vcpu->kvm->lock); |
| 243 | } |
Christoffer Dall | 1aab6f4 | 2017-05-08 12:30:24 +0200 | [diff] [blame] | 244 | return ret; |
| 245 | } |
| 246 | |
Christoffer Dall | 443c3a9 | 2017-05-08 12:09:13 +0200 | [diff] [blame] | 247 | static void kvm_vgic_vcpu_enable(struct kvm_vcpu *vcpu) |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 248 | { |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 249 | if (kvm_vgic_global_state.type == VGIC_V2) |
| 250 | vgic_v2_enable(vcpu); |
| 251 | else |
| 252 | vgic_v3_enable(vcpu); |
| 253 | } |
| 254 | |
| 255 | /* |
| 256 | * vgic_init: allocates and initializes dist and vcpu data structures |
| 257 | * depending on two dimensioning parameters: |
| 258 | * - the number of spis |
| 259 | * - the number of vcpus |
| 260 | * The function is generally called when nr_spis has been explicitly set |
| 261 | * by the guest through the KVM DEVICE API. If not nr_spis is set to 256. |
| 262 | * vgic_initialized() returns true when this function has succeeded. |
| 263 | * Must be called with kvm->lock held! |
| 264 | */ |
| 265 | int vgic_init(struct kvm *kvm) |
| 266 | { |
| 267 | struct vgic_dist *dist = &kvm->arch.vgic; |
| 268 | struct kvm_vcpu *vcpu; |
| 269 | int ret = 0, i; |
| 270 | |
| 271 | if (vgic_initialized(kvm)) |
| 272 | return 0; |
| 273 | |
| 274 | /* freeze the number of spis */ |
| 275 | if (!dist->nr_spis) |
| 276 | dist->nr_spis = VGIC_NR_IRQS_LEGACY - VGIC_NR_PRIVATE_IRQS; |
| 277 | |
| 278 | ret = kvm_vgic_dist_init(kvm, dist->nr_spis); |
| 279 | if (ret) |
| 280 | goto out; |
| 281 | |
Christoffer Dall | f8f85dc | 2018-01-12 11:40:21 +0100 | [diff] [blame] | 282 | if (vgic_has_its(kvm)) { |
| 283 | ret = vgic_v4_init(kvm); |
| 284 | if (ret) |
| 285 | goto out; |
| 286 | } |
Marc Zyngier | 74fe55d | 2017-10-27 15:28:38 +0100 | [diff] [blame] | 287 | |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 288 | kvm_for_each_vcpu(i, vcpu, kvm) |
Christoffer Dall | 443c3a9 | 2017-05-08 12:09:13 +0200 | [diff] [blame] | 289 | kvm_vgic_vcpu_enable(vcpu); |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 290 | |
Eric Auger | 180ae7b | 2016-07-22 16:20:41 +0000 | [diff] [blame] | 291 | ret = kvm_vgic_setup_default_irq_routing(kvm); |
| 292 | if (ret) |
| 293 | goto out; |
| 294 | |
Christoffer Dall | 10f92c4 | 2017-01-17 23:09:13 +0100 | [diff] [blame] | 295 | vgic_debug_init(kvm); |
| 296 | |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 297 | dist->initialized = true; |
Christoffer Dall | 328e566 | 2016-03-24 11:21:04 +0100 | [diff] [blame] | 298 | |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 299 | out: |
| 300 | return ret; |
| 301 | } |
| 302 | |
| 303 | static void kvm_vgic_dist_destroy(struct kvm *kvm) |
| 304 | { |
| 305 | struct vgic_dist *dist = &kvm->arch.vgic; |
| 306 | |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 307 | dist->ready = false; |
| 308 | dist->initialized = false; |
| 309 | |
| 310 | kfree(dist->spis); |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 311 | dist->nr_spis = 0; |
Marc Zyngier | 74fe55d | 2017-10-27 15:28:38 +0100 | [diff] [blame] | 312 | |
| 313 | if (vgic_supports_direct_msis(kvm)) |
| 314 | vgic_v4_teardown(kvm); |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | void kvm_vgic_vcpu_destroy(struct kvm_vcpu *vcpu) |
| 318 | { |
| 319 | struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu; |
| 320 | |
| 321 | INIT_LIST_HEAD(&vgic_cpu->ap_list_head); |
| 322 | } |
| 323 | |
Marc Zyngier | 1193e6a | 2017-01-12 09:21:56 +0000 | [diff] [blame] | 324 | /* To be called with kvm->lock held */ |
| 325 | static void __kvm_vgic_destroy(struct kvm *kvm) |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 326 | { |
| 327 | struct kvm_vcpu *vcpu; |
| 328 | int i; |
| 329 | |
Christoffer Dall | 10f92c4 | 2017-01-17 23:09:13 +0100 | [diff] [blame] | 330 | vgic_debug_destroy(kvm); |
| 331 | |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 332 | kvm_vgic_dist_destroy(kvm); |
| 333 | |
| 334 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 335 | kvm_vgic_vcpu_destroy(vcpu); |
| 336 | } |
| 337 | |
Marc Zyngier | 1193e6a | 2017-01-12 09:21:56 +0000 | [diff] [blame] | 338 | void kvm_vgic_destroy(struct kvm *kvm) |
| 339 | { |
| 340 | mutex_lock(&kvm->lock); |
| 341 | __kvm_vgic_destroy(kvm); |
| 342 | mutex_unlock(&kvm->lock); |
| 343 | } |
| 344 | |
Eric Auger | ad275b8b | 2015-12-21 18:09:38 +0100 | [diff] [blame] | 345 | /** |
| 346 | * vgic_lazy_init: Lazy init is only allowed if the GIC exposed to the guest |
| 347 | * is a GICv2. A GICv3 must be explicitly initialized by the guest using the |
| 348 | * KVM_DEV_ARM_VGIC_GRP_CTRL KVM_DEVICE group. |
| 349 | * @kvm: kvm struct pointer |
| 350 | */ |
| 351 | int vgic_lazy_init(struct kvm *kvm) |
| 352 | { |
| 353 | int ret = 0; |
| 354 | |
| 355 | if (unlikely(!vgic_initialized(kvm))) { |
| 356 | /* |
| 357 | * We only provide the automatic initialization of the VGIC |
| 358 | * for the legacy case of a GICv2. Any other type must |
| 359 | * be explicitly initialized once setup with the respective |
| 360 | * KVM device call. |
| 361 | */ |
| 362 | if (kvm->arch.vgic.vgic_model != KVM_DEV_TYPE_ARM_VGIC_V2) |
| 363 | return -EBUSY; |
| 364 | |
| 365 | mutex_lock(&kvm->lock); |
| 366 | ret = vgic_init(kvm); |
| 367 | mutex_unlock(&kvm->lock); |
| 368 | } |
| 369 | |
| 370 | return ret; |
| 371 | } |
| 372 | |
Eric Auger | b0442ee | 2015-12-21 15:04:42 +0100 | [diff] [blame] | 373 | /* RESOURCE MAPPING */ |
| 374 | |
| 375 | /** |
| 376 | * Map the MMIO regions depending on the VGIC model exposed to the guest |
| 377 | * called on the first VCPU run. |
| 378 | * Also map the virtual CPU interface into the VM. |
| 379 | * v2/v3 derivatives call vgic_init if not already done. |
| 380 | * vgic_ready() returns true if this function has succeeded. |
| 381 | * @kvm: kvm struct pointer |
| 382 | */ |
| 383 | int kvm_vgic_map_resources(struct kvm *kvm) |
| 384 | { |
| 385 | struct vgic_dist *dist = &kvm->arch.vgic; |
| 386 | int ret = 0; |
| 387 | |
| 388 | mutex_lock(&kvm->lock); |
| 389 | if (!irqchip_in_kernel(kvm)) |
| 390 | goto out; |
| 391 | |
| 392 | if (dist->vgic_model == KVM_DEV_TYPE_ARM_VGIC_V2) |
| 393 | ret = vgic_v2_map_resources(kvm); |
| 394 | else |
| 395 | ret = vgic_v3_map_resources(kvm); |
Marc Zyngier | 1193e6a | 2017-01-12 09:21:56 +0000 | [diff] [blame] | 396 | |
| 397 | if (ret) |
| 398 | __kvm_vgic_destroy(kvm); |
| 399 | |
Eric Auger | b0442ee | 2015-12-21 15:04:42 +0100 | [diff] [blame] | 400 | out: |
| 401 | mutex_unlock(&kvm->lock); |
| 402 | return ret; |
| 403 | } |
| 404 | |
Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 405 | /* GENERIC PROBE */ |
| 406 | |
Anna-Maria Gleixner | 15d7e3d | 2016-07-13 17:17:02 +0000 | [diff] [blame] | 407 | static int vgic_init_cpu_starting(unsigned int cpu) |
Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 408 | { |
| 409 | enable_percpu_irq(kvm_vgic_global_state.maint_irq, 0); |
Anna-Maria Gleixner | 15d7e3d | 2016-07-13 17:17:02 +0000 | [diff] [blame] | 410 | return 0; |
Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 411 | } |
| 412 | |
Anna-Maria Gleixner | 15d7e3d | 2016-07-13 17:17:02 +0000 | [diff] [blame] | 413 | |
| 414 | static int vgic_init_cpu_dying(unsigned int cpu) |
Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 415 | { |
Anna-Maria Gleixner | 15d7e3d | 2016-07-13 17:17:02 +0000 | [diff] [blame] | 416 | disable_percpu_irq(kvm_vgic_global_state.maint_irq); |
| 417 | return 0; |
Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 418 | } |
| 419 | |
Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 420 | static irqreturn_t vgic_maintenance_handler(int irq, void *data) |
| 421 | { |
| 422 | /* |
| 423 | * We cannot rely on the vgic maintenance interrupt to be |
| 424 | * delivered synchronously. This means we can only use it to |
| 425 | * exit the VM, and we perform the handling of EOIed |
Valentin Schneider | c3616a07 | 2018-05-02 11:53:03 +0100 | [diff] [blame] | 426 | * interrupts on the exit path (see vgic_fold_lr_state). |
Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 427 | */ |
| 428 | return IRQ_HANDLED; |
| 429 | } |
| 430 | |
| 431 | /** |
Christoffer Dall | 5b0d2cc | 2017-03-18 13:56:56 +0100 | [diff] [blame] | 432 | * kvm_vgic_init_cpu_hardware - initialize the GIC VE hardware |
| 433 | * |
| 434 | * For a specific CPU, initialize the GIC VE hardware. |
| 435 | */ |
| 436 | void kvm_vgic_init_cpu_hardware(void) |
| 437 | { |
| 438 | BUG_ON(preemptible()); |
| 439 | |
| 440 | /* |
| 441 | * We want to make sure the list registers start out clear so that we |
| 442 | * only have the program the used registers. |
| 443 | */ |
| 444 | if (kvm_vgic_global_state.type == VGIC_V2) |
| 445 | vgic_v2_init_lrs(); |
| 446 | else |
| 447 | kvm_call_hyp(__vgic_v3_init_lrs); |
| 448 | } |
| 449 | |
| 450 | /** |
Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 451 | * kvm_vgic_hyp_init: populates the kvm_vgic_global_state variable |
| 452 | * according to the host GIC model. Accordingly calls either |
| 453 | * vgic_v2/v3_probe which registers the KVM_DEVICE that can be |
| 454 | * instantiated by a guest later on . |
| 455 | */ |
| 456 | int kvm_vgic_hyp_init(void) |
| 457 | { |
| 458 | const struct gic_kvm_info *gic_kvm_info; |
| 459 | int ret; |
| 460 | |
| 461 | gic_kvm_info = gic_get_kvm_info(); |
| 462 | if (!gic_kvm_info) |
| 463 | return -ENODEV; |
| 464 | |
| 465 | if (!gic_kvm_info->maint_irq) { |
| 466 | kvm_err("No vgic maintenance irq\n"); |
| 467 | return -ENXIO; |
| 468 | } |
| 469 | |
| 470 | switch (gic_kvm_info->type) { |
| 471 | case GIC_V2: |
| 472 | ret = vgic_v2_probe(gic_kvm_info); |
| 473 | break; |
| 474 | case GIC_V3: |
| 475 | ret = vgic_v3_probe(gic_kvm_info); |
Vladimir Murzin | 5a7a842 | 2016-09-12 15:49:15 +0100 | [diff] [blame] | 476 | if (!ret) { |
| 477 | static_branch_enable(&kvm_vgic_global_state.gicv3_cpuif); |
| 478 | kvm_info("GIC system register CPU interface enabled\n"); |
| 479 | } |
Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 480 | break; |
| 481 | default: |
| 482 | ret = -ENODEV; |
| 483 | }; |
| 484 | |
| 485 | if (ret) |
| 486 | return ret; |
| 487 | |
| 488 | kvm_vgic_global_state.maint_irq = gic_kvm_info->maint_irq; |
| 489 | ret = request_percpu_irq(kvm_vgic_global_state.maint_irq, |
| 490 | vgic_maintenance_handler, |
| 491 | "vgic", kvm_get_running_vcpus()); |
| 492 | if (ret) { |
| 493 | kvm_err("Cannot register interrupt %d\n", |
| 494 | kvm_vgic_global_state.maint_irq); |
| 495 | return ret; |
| 496 | } |
| 497 | |
Anna-Maria Gleixner | 15d7e3d | 2016-07-13 17:17:02 +0000 | [diff] [blame] | 498 | ret = cpuhp_setup_state(CPUHP_AP_KVM_ARM_VGIC_INIT_STARTING, |
Thomas Gleixner | 73c1b41 | 2016-12-21 20:19:54 +0100 | [diff] [blame] | 499 | "kvm/arm/vgic:starting", |
Anna-Maria Gleixner | 15d7e3d | 2016-07-13 17:17:02 +0000 | [diff] [blame] | 500 | vgic_init_cpu_starting, vgic_init_cpu_dying); |
Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 501 | if (ret) { |
| 502 | kvm_err("Cannot register vgic CPU notifier\n"); |
| 503 | goto out_free_irq; |
| 504 | } |
| 505 | |
Eric Auger | 9097773 | 2015-12-01 15:02:35 +0100 | [diff] [blame] | 506 | kvm_info("vgic interrupt IRQ%d\n", kvm_vgic_global_state.maint_irq); |
| 507 | return 0; |
| 508 | |
| 509 | out_free_irq: |
| 510 | free_percpu_irq(kvm_vgic_global_state.maint_irq, |
| 511 | kvm_get_running_vcpus()); |
| 512 | return ret; |
| 513 | } |