blob: 3b73d7845124a6125b6f7cebdd406f1cfe14242d [file] [log] [blame]
Marc Zyngier1a89dd92013-01-21 19:36:12 -05001/*
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 Zyngierb47ef922013-01-21 19:36:14 -050022#include <linux/kernel.h>
23#include <linux/kvm.h>
Marc Zyngierb47ef922013-01-21 19:36:14 -050024#include <linux/irqreturn.h>
25#include <linux/spinlock.h>
26#include <linux/types.h>
Marc Zyngier1a89dd92013-01-21 19:36:12 -050027
Christoffer Dall9b2d2e02013-08-29 11:08:25 +010028#define VGIC_NR_IRQS 256
Marc Zyngierb47ef922013-01-21 19:36:14 -050029#define VGIC_NR_SGIS 16
30#define VGIC_NR_PPIS 16
31#define VGIC_NR_PRIVATE_IRQS (VGIC_NR_SGIS + VGIC_NR_PPIS)
Marc Zyngier8f186d52014-02-04 18:13:03 +000032
33#define VGIC_V2_MAX_LRS (1 << 6)
Marc Zyngierb2fb1c02013-07-12 15:15:23 +010034#define VGIC_V3_MAX_LRS 16
Marc Zyngierb47ef922013-01-21 19:36:14 -050035
36/* Sanity checks... */
Marc Zyngierfc675e32014-07-08 12:09:03 +010037#if (KVM_MAX_VCPUS > 8)
Marc Zyngierb47ef922013-01-21 19:36:14 -050038#error Invalid number of CPU interfaces
39#endif
40
41#if (VGIC_NR_IRQS & 31)
42#error "VGIC_NR_IRQS must be a multiple of 32"
43#endif
44
45#if (VGIC_NR_IRQS > 1024)
46#error "VGIC_NR_IRQS must be <= 1024"
47#endif
48
49/*
50 * The GIC distributor registers describing interrupts have two parts:
51 * - 32 per-CPU interrupts (SGI + PPI)
52 * - a bunch of shared interrupts (SPI)
53 */
54struct vgic_bitmap {
Marc Zyngierc1bfb572014-07-08 12:09:01 +010055 /*
56 * - One UL per VCPU for private interrupts (assumes UL is at
57 * least 32 bits)
58 * - As many UL as necessary for shared interrupts.
59 *
60 * The private interrupts are accessed via the "private"
61 * field, one UL per vcpu (the state for vcpu n is in
62 * private[n]). The shared interrupts are accessed via the
63 * "shared" pointer (IRQn state is at bit n-32 in the bitmap).
64 */
65 unsigned long *private;
66 unsigned long *shared;
Marc Zyngierb47ef922013-01-21 19:36:14 -050067};
68
69struct vgic_bytemap {
Marc Zyngierc1bfb572014-07-08 12:09:01 +010070 /*
71 * - 8 u32 per VCPU for private interrupts
72 * - As many u32 as necessary for shared interrupts.
73 *
74 * The private interrupts are accessed via the "private"
75 * field, (the state for vcpu n is in private[n*8] to
76 * private[n*8 + 7]). The shared interrupts are accessed via
77 * the "shared" pointer (IRQn state is at byte (n-32)%4 of the
78 * shared[(n-32)/4] word).
79 */
80 u32 *private;
81 u32 *shared;
Marc Zyngierb47ef922013-01-21 19:36:14 -050082};
83
Marc Zyngier8d5c6b02013-06-03 15:55:02 +010084struct kvm_vcpu;
85
Marc Zyngier1a9b1302013-06-21 11:57:56 +010086enum vgic_type {
87 VGIC_V2, /* Good ol' GICv2 */
Marc Zyngierb2fb1c02013-07-12 15:15:23 +010088 VGIC_V3, /* New fancy GICv3 */
Marc Zyngier1a9b1302013-06-21 11:57:56 +010089};
90
Marc Zyngier8d5c6b02013-06-03 15:55:02 +010091#define LR_STATE_PENDING (1 << 0)
92#define LR_STATE_ACTIVE (1 << 1)
93#define LR_STATE_MASK (3 << 0)
94#define LR_EOI_INT (1 << 2)
95
96struct vgic_lr {
97 u16 irq;
98 u8 source;
99 u8 state;
100};
101
Marc Zyngierbeee38b2014-02-04 17:48:10 +0000102struct vgic_vmcr {
103 u32 ctlr;
104 u32 abpr;
105 u32 bpr;
106 u32 pmr;
107};
108
Marc Zyngier8d5c6b02013-06-03 15:55:02 +0100109struct vgic_ops {
110 struct vgic_lr (*get_lr)(const struct kvm_vcpu *, int);
111 void (*set_lr)(struct kvm_vcpu *, int, struct vgic_lr);
Marc Zyngier69bb2c92013-06-04 10:29:39 +0100112 void (*sync_lr_elrsr)(struct kvm_vcpu *, int, struct vgic_lr);
113 u64 (*get_elrsr)(const struct kvm_vcpu *vcpu);
Marc Zyngier8d6a0312013-06-04 10:33:43 +0100114 u64 (*get_eisr)(const struct kvm_vcpu *vcpu);
Marc Zyngier495dd852013-06-04 11:02:10 +0100115 u32 (*get_interrupt_status)(const struct kvm_vcpu *vcpu);
Marc Zyngier909d9b52013-06-04 11:24:17 +0100116 void (*enable_underflow)(struct kvm_vcpu *vcpu);
117 void (*disable_underflow)(struct kvm_vcpu *vcpu);
Marc Zyngierbeee38b2014-02-04 17:48:10 +0000118 void (*get_vmcr)(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
119 void (*set_vmcr)(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
Marc Zyngierda8dafd12013-06-04 11:36:38 +0100120 void (*enable)(struct kvm_vcpu *vcpu);
Marc Zyngier8d5c6b02013-06-03 15:55:02 +0100121};
122
Marc Zyngierca85f622013-06-18 19:17:28 +0100123struct vgic_params {
Marc Zyngier1a9b1302013-06-21 11:57:56 +0100124 /* vgic type */
125 enum vgic_type type;
Marc Zyngierca85f622013-06-18 19:17:28 +0100126 /* Physical address of vgic virtual cpu interface */
127 phys_addr_t vcpu_base;
128 /* Number of list registers */
129 u32 nr_lr;
130 /* Interrupt number */
131 unsigned int maint_irq;
132 /* Virtual control interface base address */
133 void __iomem *vctrl_base;
134};
135
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500136struct vgic_dist {
Marc Zyngierb47ef922013-01-21 19:36:14 -0500137#ifdef CONFIG_KVM_ARM_VGIC
138 spinlock_t lock;
Marc Zyngierf982cf42014-05-15 10:03:25 +0100139 bool in_kernel;
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500140 bool ready;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500141
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100142 int nr_cpus;
143 int nr_irqs;
144
Marc Zyngierb47ef922013-01-21 19:36:14 -0500145 /* Virtual control interface mapping */
146 void __iomem *vctrl_base;
147
Christoffer Dall330690c2013-01-21 19:36:13 -0500148 /* Distributor and vcpu interface mapping in the guest */
149 phys_addr_t vgic_dist_base;
150 phys_addr_t vgic_cpu_base;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500151
152 /* Distributor enabled */
153 u32 enabled;
154
155 /* Interrupt enabled (one bit per IRQ) */
156 struct vgic_bitmap irq_enabled;
157
Christoffer Dallfaa1b462014-06-14 21:54:51 +0200158 /* Level-triggered interrupt external input is asserted */
159 struct vgic_bitmap irq_level;
160
161 /*
162 * Interrupt state is pending on the distributor
163 */
Christoffer Dall227844f2014-06-09 12:27:18 +0200164 struct vgic_bitmap irq_pending;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500165
Christoffer Dallfaa1b462014-06-14 21:54:51 +0200166 /*
167 * Tracks writes to GICD_ISPENDRn and GICD_ICPENDRn for level-triggered
168 * interrupts. Essentially holds the state of the flip-flop in
169 * Figure 4-10 on page 4-101 in ARM IHI 0048B.b.
170 * Once set, it is only cleared for level-triggered interrupts on
171 * guest ACKs (when we queue it) or writes to GICD_ICPENDRn.
172 */
173 struct vgic_bitmap irq_soft_pend;
174
Christoffer Dalldbf20f92014-06-09 12:55:13 +0200175 /* Level-triggered interrupt queued on VCPU interface */
176 struct vgic_bitmap irq_queued;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500177
178 /* Interrupt priority. Not used yet. */
179 struct vgic_bytemap irq_priority;
180
181 /* Level/edge triggered */
182 struct vgic_bitmap irq_cfg;
183
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100184 /*
185 * Source CPU per SGI and target CPU:
186 *
187 * Each byte represent a SGI observable on a VCPU, each bit of
188 * this byte indicating if the corresponding VCPU has
189 * generated this interrupt. This is a GICv2 feature only.
190 *
191 * For VCPUn (n < 8), irq_sgi_sources[n*16] to [n*16 + 15] are
192 * the SGIs observable on VCPUn.
193 */
194 u8 *irq_sgi_sources;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500195
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100196 /*
197 * Target CPU for each SPI:
198 *
199 * Array of available SPI, each byte indicating the target
200 * VCPU for SPI. IRQn (n >=32) is at irq_spi_cpu[n-32].
201 */
202 u8 *irq_spi_cpu;
203
204 /*
205 * Reverse lookup of irq_spi_cpu for faster compute pending:
206 *
207 * Array of bitmaps, one per VCPU, describing if IRQn is
208 * routed to a particular VCPU.
209 */
210 struct vgic_bitmap *irq_spi_target;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500211
212 /* Bitmap indicating which CPU has something pending */
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100213 unsigned long *irq_pending_on_cpu;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500214#endif
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500215};
216
Marc Zyngiereede8212013-05-30 10:20:36 +0100217struct vgic_v2_cpu_if {
218 u32 vgic_hcr;
219 u32 vgic_vmcr;
220 u32 vgic_misr; /* Saved only */
221 u32 vgic_eisr[2]; /* Saved only */
222 u32 vgic_elrsr[2]; /* Saved only */
223 u32 vgic_apr;
Marc Zyngier8f186d52014-02-04 18:13:03 +0000224 u32 vgic_lr[VGIC_V2_MAX_LRS];
Marc Zyngiereede8212013-05-30 10:20:36 +0100225};
226
Marc Zyngierb2fb1c02013-07-12 15:15:23 +0100227struct vgic_v3_cpu_if {
228#ifdef CONFIG_ARM_GIC_V3
229 u32 vgic_hcr;
230 u32 vgic_vmcr;
231 u32 vgic_misr; /* Saved only */
232 u32 vgic_eisr; /* Saved only */
233 u32 vgic_elrsr; /* Saved only */
234 u32 vgic_ap0r[4];
235 u32 vgic_ap1r[4];
236 u64 vgic_lr[VGIC_V3_MAX_LRS];
237#endif
238};
239
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500240struct vgic_cpu {
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500241#ifdef CONFIG_KVM_ARM_VGIC
242 /* per IRQ to LR mapping */
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100243 u8 *vgic_irq_lr_map;
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500244
245 /* Pending interrupts on this VCPU */
246 DECLARE_BITMAP( pending_percpu, VGIC_NR_PRIVATE_IRQS);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100247 unsigned long *pending_shared;
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500248
249 /* Bitmap of used/free list registers */
Marc Zyngier8f186d52014-02-04 18:13:03 +0000250 DECLARE_BITMAP( lr_used, VGIC_V2_MAX_LRS);
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500251
252 /* Number of list registers on this CPU */
253 int nr_lr;
254
255 /* CPU vif control registers for world switch */
Marc Zyngiereede8212013-05-30 10:20:36 +0100256 union {
257 struct vgic_v2_cpu_if vgic_v2;
Marc Zyngierb2fb1c02013-07-12 15:15:23 +0100258 struct vgic_v3_cpu_if vgic_v3;
Marc Zyngiereede8212013-05-30 10:20:36 +0100259 };
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500260#endif
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500261};
262
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500263#define LR_EMPTY 0xff
264
Marc Zyngier495dd852013-06-04 11:02:10 +0100265#define INT_STATUS_EOI (1 << 0)
266#define INT_STATUS_UNDERFLOW (1 << 1)
267
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500268struct kvm;
269struct kvm_vcpu;
270struct kvm_run;
271struct kvm_exit_mmio;
272
273#ifdef CONFIG_KVM_ARM_VGIC
Christoffer Dallce01e4e2013-09-23 14:55:56 -0700274int kvm_vgic_addr(struct kvm *kvm, unsigned long type, u64 *addr, bool write);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500275int kvm_vgic_hyp_init(void);
276int kvm_vgic_init(struct kvm *kvm);
277int kvm_vgic_create(struct kvm *kvm);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100278void kvm_vgic_destroy(struct kvm *kvm);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500279int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100280void kvm_vgic_vcpu_destroy(struct kvm_vcpu *vcpu);
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500281void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu);
282void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu);
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500283int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid, unsigned int irq_num,
284 bool level);
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500285int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500286bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
287 struct kvm_exit_mmio *mmio);
288
Marc Zyngierf982cf42014-05-15 10:03:25 +0100289#define irqchip_in_kernel(k) (!!((k)->arch.vgic.in_kernel))
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500290#define vgic_initialized(k) ((k)->arch.vgic.ready)
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500291
Marc Zyngier8f186d52014-02-04 18:13:03 +0000292int vgic_v2_probe(struct device_node *vgic_node,
293 const struct vgic_ops **ops,
294 const struct vgic_params **params);
Marc Zyngierb2fb1c02013-07-12 15:15:23 +0100295#ifdef CONFIG_ARM_GIC_V3
296int vgic_v3_probe(struct device_node *vgic_node,
297 const struct vgic_ops **ops,
298 const struct vgic_params **params);
299#else
300static inline int vgic_v3_probe(struct device_node *vgic_node,
301 const struct vgic_ops **ops,
302 const struct vgic_params **params)
303{
304 return -ENODEV;
305}
306#endif
Marc Zyngier8f186d52014-02-04 18:13:03 +0000307
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500308#else
309static inline int kvm_vgic_hyp_init(void)
310{
311 return 0;
312}
313
Christoffer Dall330690c2013-01-21 19:36:13 -0500314static inline int kvm_vgic_set_addr(struct kvm *kvm, unsigned long type, u64 addr)
315{
316 return 0;
317}
318
Marc Zyngier6cbde822014-03-06 03:30:46 +0000319static inline int kvm_vgic_addr(struct kvm *kvm, unsigned long type, u64 *addr, bool write)
320{
321 return -ENXIO;
322}
323
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500324static inline int kvm_vgic_init(struct kvm *kvm)
325{
326 return 0;
327}
328
329static inline int kvm_vgic_create(struct kvm *kvm)
330{
331 return 0;
332}
333
334static inline int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu)
335{
336 return 0;
337}
338
339static inline void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu) {}
340static inline void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu) {}
341
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500342static inline int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid,
343 unsigned int irq_num, bool level)
344{
345 return 0;
346}
347
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500348static inline int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu)
349{
350 return 0;
351}
352
353static inline bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
354 struct kvm_exit_mmio *mmio)
355{
356 return false;
357}
358
359static inline int irqchip_in_kernel(struct kvm *kvm)
360{
361 return 0;
362}
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500363
364static inline bool vgic_initialized(struct kvm *kvm)
365{
366 return true;
367}
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500368#endif
369
370#endif