2 * Copyright (C) 2012 ARM Ltd.
3 * Author: Marc Zyngier <marc.zyngier@arm.com>
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.
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.
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
19 #ifndef __ASM_ARM_KVM_VGIC_H
20 #define __ASM_ARM_KVM_VGIC_H
22 #include <linux/kernel.h>
23 #include <linux/kvm.h>
24 #include <linux/irqreturn.h>
25 #include <linux/spinlock.h>
26 #include <linux/types.h>
28 #define VGIC_NR_IRQS_LEGACY 256
29 #define VGIC_NR_SGIS 16
30 #define VGIC_NR_PPIS 16
31 #define VGIC_NR_PRIVATE_IRQS (VGIC_NR_SGIS + VGIC_NR_PPIS)
33 #define VGIC_V2_MAX_LRS (1 << 6)
34 #define VGIC_V3_MAX_LRS 16
35 #define VGIC_MAX_IRQS 1024
37 /* Sanity checks... */
38 #if (KVM_MAX_VCPUS > 8)
39 #error Invalid number of CPU interfaces
42 #if (VGIC_NR_IRQS_LEGACY & 31)
43 #error "VGIC_NR_IRQS must be a multiple of 32"
46 #if (VGIC_NR_IRQS_LEGACY > VGIC_MAX_IRQS)
47 #error "VGIC_NR_IRQS must be <= 1024"
51 * The GIC distributor registers describing interrupts have two parts:
52 * - 32 per-CPU interrupts (SGI + PPI)
53 * - a bunch of shared interrupts (SPI)
57 * - One UL per VCPU for private interrupts (assumes UL is at
59 * - As many UL as necessary for shared interrupts.
61 * The private interrupts are accessed via the "private"
62 * field, one UL per vcpu (the state for vcpu n is in
63 * private[n]). The shared interrupts are accessed via the
64 * "shared" pointer (IRQn state is at bit n-32 in the bitmap).
66 unsigned long *private;
67 unsigned long *shared
;
72 * - 8 u32 per VCPU for private interrupts
73 * - As many u32 as necessary for shared interrupts.
75 * The private interrupts are accessed via the "private"
76 * field, (the state for vcpu n is in private[n*8] to
77 * private[n*8 + 7]). The shared interrupts are accessed via
78 * the "shared" pointer (IRQn state is at byte (n-32)%4 of the
79 * shared[(n-32)/4] word).
88 VGIC_V2
, /* Good ol' GICv2 */
89 VGIC_V3
, /* New fancy GICv3 */
92 #define LR_STATE_PENDING (1 << 0)
93 #define LR_STATE_ACTIVE (1 << 1)
94 #define LR_STATE_MASK (3 << 0)
95 #define LR_EOI_INT (1 << 2)
111 struct vgic_lr (*get_lr
)(const struct kvm_vcpu
*, int);
112 void (*set_lr
)(struct kvm_vcpu
*, int, struct vgic_lr
);
113 void (*sync_lr_elrsr
)(struct kvm_vcpu
*, int, struct vgic_lr
);
114 u64 (*get_elrsr
)(const struct kvm_vcpu
*vcpu
);
115 u64 (*get_eisr
)(const struct kvm_vcpu
*vcpu
);
116 u32 (*get_interrupt_status
)(const struct kvm_vcpu
*vcpu
);
117 void (*enable_underflow
)(struct kvm_vcpu
*vcpu
);
118 void (*disable_underflow
)(struct kvm_vcpu
*vcpu
);
119 void (*get_vmcr
)(struct kvm_vcpu
*vcpu
, struct vgic_vmcr
*vmcr
);
120 void (*set_vmcr
)(struct kvm_vcpu
*vcpu
, struct vgic_vmcr
*vmcr
);
121 void (*enable
)(struct kvm_vcpu
*vcpu
);
127 /* Physical address of vgic virtual cpu interface */
128 phys_addr_t vcpu_base
;
129 /* Number of list registers */
131 /* Interrupt number */
132 unsigned int maint_irq
;
133 /* Virtual control interface base address */
134 void __iomem
*vctrl_base
;
138 #ifdef CONFIG_KVM_ARM_VGIC
146 /* Virtual control interface mapping */
147 void __iomem
*vctrl_base
;
149 /* Distributor and vcpu interface mapping in the guest */
150 phys_addr_t vgic_dist_base
;
151 phys_addr_t vgic_cpu_base
;
153 /* Distributor enabled */
156 /* Interrupt enabled (one bit per IRQ) */
157 struct vgic_bitmap irq_enabled
;
159 /* Level-triggered interrupt external input is asserted */
160 struct vgic_bitmap irq_level
;
163 * Interrupt state is pending on the distributor
165 struct vgic_bitmap irq_pending
;
168 * Tracks writes to GICD_ISPENDRn and GICD_ICPENDRn for level-triggered
169 * interrupts. Essentially holds the state of the flip-flop in
170 * Figure 4-10 on page 4-101 in ARM IHI 0048B.b.
171 * Once set, it is only cleared for level-triggered interrupts on
172 * guest ACKs (when we queue it) or writes to GICD_ICPENDRn.
174 struct vgic_bitmap irq_soft_pend
;
176 /* Level-triggered interrupt queued on VCPU interface */
177 struct vgic_bitmap irq_queued
;
179 /* Interrupt priority. Not used yet. */
180 struct vgic_bytemap irq_priority
;
182 /* Level/edge triggered */
183 struct vgic_bitmap irq_cfg
;
186 * Source CPU per SGI and target CPU:
188 * Each byte represent a SGI observable on a VCPU, each bit of
189 * this byte indicating if the corresponding VCPU has
190 * generated this interrupt. This is a GICv2 feature only.
192 * For VCPUn (n < 8), irq_sgi_sources[n*16] to [n*16 + 15] are
193 * the SGIs observable on VCPUn.
198 * Target CPU for each SPI:
200 * Array of available SPI, each byte indicating the target
201 * VCPU for SPI. IRQn (n >=32) is at irq_spi_cpu[n-32].
206 * Reverse lookup of irq_spi_cpu for faster compute pending:
208 * Array of bitmaps, one per VCPU, describing if IRQn is
209 * routed to a particular VCPU.
211 struct vgic_bitmap
*irq_spi_target
;
213 /* Bitmap indicating which CPU has something pending */
214 unsigned long *irq_pending_on_cpu
;
218 struct vgic_v2_cpu_if
{
221 u32 vgic_misr
; /* Saved only */
222 u64 vgic_eisr
; /* Saved only */
223 u64 vgic_elrsr
; /* Saved only */
225 u32 vgic_lr
[VGIC_V2_MAX_LRS
];
228 struct vgic_v3_cpu_if
{
229 #ifdef CONFIG_ARM_GIC_V3
232 u32 vgic_misr
; /* Saved only */
233 u32 vgic_eisr
; /* Saved only */
234 u32 vgic_elrsr
; /* Saved only */
237 u64 vgic_lr
[VGIC_V3_MAX_LRS
];
242 #ifdef CONFIG_KVM_ARM_VGIC
243 /* per IRQ to LR mapping */
246 /* Pending interrupts on this VCPU */
247 DECLARE_BITMAP( pending_percpu
, VGIC_NR_PRIVATE_IRQS
);
248 unsigned long *pending_shared
;
250 /* Bitmap of used/free list registers */
251 DECLARE_BITMAP( lr_used
, VGIC_V2_MAX_LRS
);
253 /* Number of list registers on this CPU */
256 /* CPU vif control registers for world switch */
258 struct vgic_v2_cpu_if vgic_v2
;
259 struct vgic_v3_cpu_if vgic_v3
;
264 #define LR_EMPTY 0xff
266 #define INT_STATUS_EOI (1 << 0)
267 #define INT_STATUS_UNDERFLOW (1 << 1)
272 struct kvm_exit_mmio
;
274 #ifdef CONFIG_KVM_ARM_VGIC
275 int kvm_vgic_addr(struct kvm
*kvm
, unsigned long type
, u64
*addr
, bool write
);
276 int kvm_vgic_hyp_init(void);
277 int kvm_vgic_map_resources(struct kvm
*kvm
);
278 int kvm_vgic_create(struct kvm
*kvm
);
279 void kvm_vgic_destroy(struct kvm
*kvm
);
280 void kvm_vgic_vcpu_destroy(struct kvm_vcpu
*vcpu
);
281 void kvm_vgic_flush_hwstate(struct kvm_vcpu
*vcpu
);
282 void kvm_vgic_sync_hwstate(struct kvm_vcpu
*vcpu
);
283 int kvm_vgic_inject_irq(struct kvm
*kvm
, int cpuid
, unsigned int irq_num
,
285 int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu
*vcpu
);
286 bool vgic_handle_mmio(struct kvm_vcpu
*vcpu
, struct kvm_run
*run
,
287 struct kvm_exit_mmio
*mmio
);
289 #define irqchip_in_kernel(k) (!!((k)->arch.vgic.in_kernel))
290 #define vgic_initialized(k) (!!((k)->arch.vgic.nr_cpus))
291 #define vgic_ready(k) ((k)->arch.vgic.ready)
293 int vgic_v2_probe(struct device_node
*vgic_node
,
294 const struct vgic_ops
**ops
,
295 const struct vgic_params
**params
);
296 #ifdef CONFIG_ARM_GIC_V3
297 int vgic_v3_probe(struct device_node
*vgic_node
,
298 const struct vgic_ops
**ops
,
299 const struct vgic_params
**params
);
301 static inline int vgic_v3_probe(struct device_node
*vgic_node
,
302 const struct vgic_ops
**ops
,
303 const struct vgic_params
**params
)
310 static inline int kvm_vgic_hyp_init(void)
315 static inline int kvm_vgic_set_addr(struct kvm
*kvm
, unsigned long type
, u64 addr
)
320 static inline int kvm_vgic_addr(struct kvm
*kvm
, unsigned long type
, u64
*addr
, bool write
)
325 static inline int kvm_vgic_map_resources(struct kvm
*kvm
)
330 static inline int kvm_vgic_create(struct kvm
*kvm
)
335 static inline void kvm_vgic_destroy(struct kvm
*kvm
)
339 static inline void kvm_vgic_vcpu_destroy(struct kvm_vcpu
*vcpu
)
343 static inline int kvm_vgic_vcpu_init(struct kvm_vcpu
*vcpu
)
348 static inline void kvm_vgic_flush_hwstate(struct kvm_vcpu
*vcpu
) {}
349 static inline void kvm_vgic_sync_hwstate(struct kvm_vcpu
*vcpu
) {}
351 static inline int kvm_vgic_inject_irq(struct kvm
*kvm
, int cpuid
,
352 unsigned int irq_num
, bool level
)
357 static inline int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu
*vcpu
)
362 static inline bool vgic_handle_mmio(struct kvm_vcpu
*vcpu
, struct kvm_run
*run
,
363 struct kvm_exit_mmio
*mmio
)
368 static inline int irqchip_in_kernel(struct kvm
*kvm
)
373 static inline bool vgic_initialized(struct kvm
*kvm
)
378 static inline bool vgic_ready(struct kvm
*kvm
)