Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 ARM Ltd. |
| 3 | * Author: Marc Zyngier <marc.zyngier@arm.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | */ |
| 18 | |
| 19 | #ifndef __ASM_ARM_KVM_VGIC_H |
| 20 | #define __ASM_ARM_KVM_VGIC_H |
| 21 | |
Marc Zyngier | b47ef92 | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 22 | #include <linux/kernel.h> |
| 23 | #include <linux/kvm.h> |
Marc Zyngier | b47ef92 | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 24 | #include <linux/irqreturn.h> |
| 25 | #include <linux/spinlock.h> |
| 26 | #include <linux/types.h> |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 27 | #include <linux/irqchip/arm-gic.h> |
| 28 | |
Christoffer Dall | 9b2d2e0 | 2013-08-29 11:08:25 +0100 | [diff] [blame] | 29 | #define VGIC_NR_IRQS 256 |
Marc Zyngier | b47ef92 | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 30 | #define VGIC_NR_SGIS 16 |
| 31 | #define VGIC_NR_PPIS 16 |
| 32 | #define VGIC_NR_PRIVATE_IRQS (VGIC_NR_SGIS + VGIC_NR_PPIS) |
| 33 | #define VGIC_NR_SHARED_IRQS (VGIC_NR_IRQS - VGIC_NR_PRIVATE_IRQS) |
| 34 | #define VGIC_MAX_CPUS KVM_MAX_VCPUS |
Marc Zyngier | 9d949dc | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 35 | #define VGIC_MAX_LRS (1 << 6) |
Marc Zyngier | b47ef92 | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 36 | |
| 37 | /* Sanity checks... */ |
| 38 | #if (VGIC_MAX_CPUS > 8) |
| 39 | #error Invalid number of CPU interfaces |
| 40 | #endif |
| 41 | |
| 42 | #if (VGIC_NR_IRQS & 31) |
| 43 | #error "VGIC_NR_IRQS must be a multiple of 32" |
| 44 | #endif |
| 45 | |
| 46 | #if (VGIC_NR_IRQS > 1024) |
| 47 | #error "VGIC_NR_IRQS must be <= 1024" |
| 48 | #endif |
| 49 | |
| 50 | /* |
| 51 | * The GIC distributor registers describing interrupts have two parts: |
| 52 | * - 32 per-CPU interrupts (SGI + PPI) |
| 53 | * - a bunch of shared interrupts (SPI) |
| 54 | */ |
| 55 | struct vgic_bitmap { |
| 56 | union { |
| 57 | u32 reg[VGIC_NR_PRIVATE_IRQS / 32]; |
| 58 | DECLARE_BITMAP(reg_ul, VGIC_NR_PRIVATE_IRQS); |
| 59 | } percpu[VGIC_MAX_CPUS]; |
| 60 | union { |
| 61 | u32 reg[VGIC_NR_SHARED_IRQS / 32]; |
| 62 | DECLARE_BITMAP(reg_ul, VGIC_NR_SHARED_IRQS); |
| 63 | } shared; |
| 64 | }; |
| 65 | |
| 66 | struct vgic_bytemap { |
| 67 | u32 percpu[VGIC_MAX_CPUS][VGIC_NR_PRIVATE_IRQS / 4]; |
| 68 | u32 shared[VGIC_NR_SHARED_IRQS / 4]; |
| 69 | }; |
| 70 | |
Marc Zyngier | 8d5c6b0 | 2013-06-03 15:55:02 +0100 | [diff] [blame] | 71 | struct kvm_vcpu; |
| 72 | |
| 73 | #define LR_STATE_PENDING (1 << 0) |
| 74 | #define LR_STATE_ACTIVE (1 << 1) |
| 75 | #define LR_STATE_MASK (3 << 0) |
| 76 | #define LR_EOI_INT (1 << 2) |
| 77 | |
| 78 | struct vgic_lr { |
| 79 | u16 irq; |
| 80 | u8 source; |
| 81 | u8 state; |
| 82 | }; |
| 83 | |
Marc Zyngier | beee38b | 2014-02-04 17:48:10 +0000 | [diff] [blame^] | 84 | struct vgic_vmcr { |
| 85 | u32 ctlr; |
| 86 | u32 abpr; |
| 87 | u32 bpr; |
| 88 | u32 pmr; |
| 89 | }; |
| 90 | |
Marc Zyngier | 8d5c6b0 | 2013-06-03 15:55:02 +0100 | [diff] [blame] | 91 | struct vgic_ops { |
| 92 | struct vgic_lr (*get_lr)(const struct kvm_vcpu *, int); |
| 93 | void (*set_lr)(struct kvm_vcpu *, int, struct vgic_lr); |
Marc Zyngier | 69bb2c9 | 2013-06-04 10:29:39 +0100 | [diff] [blame] | 94 | void (*sync_lr_elrsr)(struct kvm_vcpu *, int, struct vgic_lr); |
| 95 | u64 (*get_elrsr)(const struct kvm_vcpu *vcpu); |
Marc Zyngier | 8d6a031 | 2013-06-04 10:33:43 +0100 | [diff] [blame] | 96 | u64 (*get_eisr)(const struct kvm_vcpu *vcpu); |
Marc Zyngier | 495dd85 | 2013-06-04 11:02:10 +0100 | [diff] [blame] | 97 | u32 (*get_interrupt_status)(const struct kvm_vcpu *vcpu); |
Marc Zyngier | 909d9b5 | 2013-06-04 11:24:17 +0100 | [diff] [blame] | 98 | void (*enable_underflow)(struct kvm_vcpu *vcpu); |
| 99 | void (*disable_underflow)(struct kvm_vcpu *vcpu); |
Marc Zyngier | beee38b | 2014-02-04 17:48:10 +0000 | [diff] [blame^] | 100 | void (*get_vmcr)(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr); |
| 101 | void (*set_vmcr)(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr); |
Marc Zyngier | 8d5c6b0 | 2013-06-03 15:55:02 +0100 | [diff] [blame] | 102 | }; |
| 103 | |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 104 | struct vgic_dist { |
Marc Zyngier | b47ef92 | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 105 | #ifdef CONFIG_KVM_ARM_VGIC |
| 106 | spinlock_t lock; |
Marc Zyngier | 01ac5e3 | 2013-01-21 19:36:16 -0500 | [diff] [blame] | 107 | bool ready; |
Marc Zyngier | b47ef92 | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 108 | |
| 109 | /* Virtual control interface mapping */ |
| 110 | void __iomem *vctrl_base; |
| 111 | |
Christoffer Dall | 330690c | 2013-01-21 19:36:13 -0500 | [diff] [blame] | 112 | /* Distributor and vcpu interface mapping in the guest */ |
| 113 | phys_addr_t vgic_dist_base; |
| 114 | phys_addr_t vgic_cpu_base; |
Marc Zyngier | b47ef92 | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 115 | |
| 116 | /* Distributor enabled */ |
| 117 | u32 enabled; |
| 118 | |
| 119 | /* Interrupt enabled (one bit per IRQ) */ |
| 120 | struct vgic_bitmap irq_enabled; |
| 121 | |
| 122 | /* Interrupt 'pin' level */ |
| 123 | struct vgic_bitmap irq_state; |
| 124 | |
| 125 | /* Level-triggered interrupt in progress */ |
| 126 | struct vgic_bitmap irq_active; |
| 127 | |
| 128 | /* Interrupt priority. Not used yet. */ |
| 129 | struct vgic_bytemap irq_priority; |
| 130 | |
| 131 | /* Level/edge triggered */ |
| 132 | struct vgic_bitmap irq_cfg; |
| 133 | |
| 134 | /* Source CPU per SGI and target CPU */ |
| 135 | u8 irq_sgi_sources[VGIC_MAX_CPUS][VGIC_NR_SGIS]; |
| 136 | |
| 137 | /* Target CPU for each IRQ */ |
| 138 | u8 irq_spi_cpu[VGIC_NR_SHARED_IRQS]; |
| 139 | struct vgic_bitmap irq_spi_target[VGIC_MAX_CPUS]; |
| 140 | |
| 141 | /* Bitmap indicating which CPU has something pending */ |
| 142 | unsigned long irq_pending_on_cpu; |
| 143 | #endif |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 144 | }; |
| 145 | |
Marc Zyngier | eede821 | 2013-05-30 10:20:36 +0100 | [diff] [blame] | 146 | struct vgic_v2_cpu_if { |
| 147 | u32 vgic_hcr; |
| 148 | u32 vgic_vmcr; |
| 149 | u32 vgic_misr; /* Saved only */ |
| 150 | u32 vgic_eisr[2]; /* Saved only */ |
| 151 | u32 vgic_elrsr[2]; /* Saved only */ |
| 152 | u32 vgic_apr; |
| 153 | u32 vgic_lr[VGIC_MAX_LRS]; |
| 154 | }; |
| 155 | |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 156 | struct vgic_cpu { |
Marc Zyngier | 9d949dc | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 157 | #ifdef CONFIG_KVM_ARM_VGIC |
| 158 | /* per IRQ to LR mapping */ |
| 159 | u8 vgic_irq_lr_map[VGIC_NR_IRQS]; |
| 160 | |
| 161 | /* Pending interrupts on this VCPU */ |
| 162 | DECLARE_BITMAP( pending_percpu, VGIC_NR_PRIVATE_IRQS); |
| 163 | DECLARE_BITMAP( pending_shared, VGIC_NR_SHARED_IRQS); |
| 164 | |
| 165 | /* Bitmap of used/free list registers */ |
| 166 | DECLARE_BITMAP( lr_used, VGIC_MAX_LRS); |
| 167 | |
| 168 | /* Number of list registers on this CPU */ |
| 169 | int nr_lr; |
| 170 | |
| 171 | /* CPU vif control registers for world switch */ |
Marc Zyngier | eede821 | 2013-05-30 10:20:36 +0100 | [diff] [blame] | 172 | union { |
| 173 | struct vgic_v2_cpu_if vgic_v2; |
| 174 | }; |
Marc Zyngier | 9d949dc | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 175 | #endif |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 176 | }; |
| 177 | |
Marc Zyngier | 9d949dc | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 178 | #define LR_EMPTY 0xff |
| 179 | |
Marc Zyngier | 495dd85 | 2013-06-04 11:02:10 +0100 | [diff] [blame] | 180 | #define INT_STATUS_EOI (1 << 0) |
| 181 | #define INT_STATUS_UNDERFLOW (1 << 1) |
| 182 | |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 183 | struct kvm; |
| 184 | struct kvm_vcpu; |
| 185 | struct kvm_run; |
| 186 | struct kvm_exit_mmio; |
| 187 | |
| 188 | #ifdef CONFIG_KVM_ARM_VGIC |
Christoffer Dall | ce01e4e | 2013-09-23 14:55:56 -0700 | [diff] [blame] | 189 | int kvm_vgic_addr(struct kvm *kvm, unsigned long type, u64 *addr, bool write); |
Marc Zyngier | 01ac5e3 | 2013-01-21 19:36:16 -0500 | [diff] [blame] | 190 | int kvm_vgic_hyp_init(void); |
| 191 | int kvm_vgic_init(struct kvm *kvm); |
| 192 | int kvm_vgic_create(struct kvm *kvm); |
| 193 | int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu); |
Marc Zyngier | 9d949dc | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 194 | void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu); |
| 195 | void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu); |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 196 | int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid, unsigned int irq_num, |
| 197 | bool level); |
Marc Zyngier | 9d949dc | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 198 | int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu); |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 199 | bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run, |
| 200 | struct kvm_exit_mmio *mmio); |
| 201 | |
Marc Zyngier | 9d949dc | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 202 | #define irqchip_in_kernel(k) (!!((k)->arch.vgic.vctrl_base)) |
Marc Zyngier | 01ac5e3 | 2013-01-21 19:36:16 -0500 | [diff] [blame] | 203 | #define vgic_initialized(k) ((k)->arch.vgic.ready) |
Marc Zyngier | 9d949dc | 2013-01-21 19:36:14 -0500 | [diff] [blame] | 204 | |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 205 | #else |
| 206 | static inline int kvm_vgic_hyp_init(void) |
| 207 | { |
| 208 | return 0; |
| 209 | } |
| 210 | |
Christoffer Dall | 330690c | 2013-01-21 19:36:13 -0500 | [diff] [blame] | 211 | static inline int kvm_vgic_set_addr(struct kvm *kvm, unsigned long type, u64 addr) |
| 212 | { |
| 213 | return 0; |
| 214 | } |
| 215 | |
Marc Zyngier | 6cbde82 | 2014-03-06 03:30:46 +0000 | [diff] [blame] | 216 | static inline int kvm_vgic_addr(struct kvm *kvm, unsigned long type, u64 *addr, bool write) |
| 217 | { |
| 218 | return -ENXIO; |
| 219 | } |
| 220 | |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 221 | static inline int kvm_vgic_init(struct kvm *kvm) |
| 222 | { |
| 223 | return 0; |
| 224 | } |
| 225 | |
| 226 | static inline int kvm_vgic_create(struct kvm *kvm) |
| 227 | { |
| 228 | return 0; |
| 229 | } |
| 230 | |
| 231 | static inline int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu) |
| 232 | { |
| 233 | return 0; |
| 234 | } |
| 235 | |
| 236 | static inline void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu) {} |
| 237 | static inline void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu) {} |
| 238 | |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 239 | static inline int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid, |
| 240 | unsigned int irq_num, bool level) |
| 241 | { |
| 242 | return 0; |
| 243 | } |
| 244 | |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 245 | static inline int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu) |
| 246 | { |
| 247 | return 0; |
| 248 | } |
| 249 | |
| 250 | static inline bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run, |
| 251 | struct kvm_exit_mmio *mmio) |
| 252 | { |
| 253 | return false; |
| 254 | } |
| 255 | |
| 256 | static inline int irqchip_in_kernel(struct kvm *kvm) |
| 257 | { |
| 258 | return 0; |
| 259 | } |
Marc Zyngier | 01ac5e3 | 2013-01-21 19:36:16 -0500 | [diff] [blame] | 260 | |
| 261 | static inline bool vgic_initialized(struct kvm *kvm) |
| 262 | { |
| 263 | return true; |
| 264 | } |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 265 | #endif |
| 266 | |
| 267 | #endif |