blob: 1c0e9dbabe6d2b0cd37a2e4bea8d76dcb0730e29 [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
Marc Zyngier5fb66da2014-07-08 12:09:05 +010028#define VGIC_NR_IRQS_LEGACY 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 Zyngierc3c91832014-07-08 12:09:04 +010035#define VGIC_MAX_IRQS 1024
Andre Przywara3caa2d82014-06-02 16:26:01 +020036#define VGIC_V2_MAX_CPUS 8
Marc Zyngierb47ef922013-01-21 19:36:14 -050037
38/* Sanity checks... */
Marc Zyngierfc675e32014-07-08 12:09:03 +010039#if (KVM_MAX_VCPUS > 8)
Marc Zyngierb47ef922013-01-21 19:36:14 -050040#error Invalid number of CPU interfaces
41#endif
42
Marc Zyngier5fb66da2014-07-08 12:09:05 +010043#if (VGIC_NR_IRQS_LEGACY & 31)
Marc Zyngierb47ef922013-01-21 19:36:14 -050044#error "VGIC_NR_IRQS must be a multiple of 32"
45#endif
46
Marc Zyngier5fb66da2014-07-08 12:09:05 +010047#if (VGIC_NR_IRQS_LEGACY > VGIC_MAX_IRQS)
Marc Zyngierb47ef922013-01-21 19:36:14 -050048#error "VGIC_NR_IRQS must be <= 1024"
49#endif
50
51/*
52 * The GIC distributor registers describing interrupts have two parts:
53 * - 32 per-CPU interrupts (SGI + PPI)
54 * - a bunch of shared interrupts (SPI)
55 */
56struct vgic_bitmap {
Marc Zyngierc1bfb572014-07-08 12:09:01 +010057 /*
58 * - One UL per VCPU for private interrupts (assumes UL is at
59 * least 32 bits)
60 * - As many UL as necessary for shared interrupts.
61 *
62 * The private interrupts are accessed via the "private"
63 * field, one UL per vcpu (the state for vcpu n is in
64 * private[n]). The shared interrupts are accessed via the
65 * "shared" pointer (IRQn state is at bit n-32 in the bitmap).
66 */
67 unsigned long *private;
68 unsigned long *shared;
Marc Zyngierb47ef922013-01-21 19:36:14 -050069};
70
71struct vgic_bytemap {
Marc Zyngierc1bfb572014-07-08 12:09:01 +010072 /*
73 * - 8 u32 per VCPU for private interrupts
74 * - As many u32 as necessary for shared interrupts.
75 *
76 * The private interrupts are accessed via the "private"
77 * field, (the state for vcpu n is in private[n*8] to
78 * private[n*8 + 7]). The shared interrupts are accessed via
79 * the "shared" pointer (IRQn state is at byte (n-32)%4 of the
80 * shared[(n-32)/4] word).
81 */
82 u32 *private;
83 u32 *shared;
Marc Zyngierb47ef922013-01-21 19:36:14 -050084};
85
Marc Zyngier8d5c6b02013-06-03 15:55:02 +010086struct kvm_vcpu;
87
Marc Zyngier1a9b1302013-06-21 11:57:56 +010088enum vgic_type {
89 VGIC_V2, /* Good ol' GICv2 */
Marc Zyngierb2fb1c02013-07-12 15:15:23 +010090 VGIC_V3, /* New fancy GICv3 */
Marc Zyngier1a9b1302013-06-21 11:57:56 +010091};
92
Marc Zyngier8d5c6b02013-06-03 15:55:02 +010093#define LR_STATE_PENDING (1 << 0)
94#define LR_STATE_ACTIVE (1 << 1)
95#define LR_STATE_MASK (3 << 0)
96#define LR_EOI_INT (1 << 2)
97
98struct vgic_lr {
99 u16 irq;
100 u8 source;
101 u8 state;
102};
103
Marc Zyngierbeee38b2014-02-04 17:48:10 +0000104struct vgic_vmcr {
105 u32 ctlr;
106 u32 abpr;
107 u32 bpr;
108 u32 pmr;
109};
110
Marc Zyngier8d5c6b02013-06-03 15:55:02 +0100111struct vgic_ops {
112 struct vgic_lr (*get_lr)(const struct kvm_vcpu *, int);
113 void (*set_lr)(struct kvm_vcpu *, int, struct vgic_lr);
Marc Zyngier69bb2c92013-06-04 10:29:39 +0100114 void (*sync_lr_elrsr)(struct kvm_vcpu *, int, struct vgic_lr);
115 u64 (*get_elrsr)(const struct kvm_vcpu *vcpu);
Marc Zyngier8d6a0312013-06-04 10:33:43 +0100116 u64 (*get_eisr)(const struct kvm_vcpu *vcpu);
Marc Zyngier495dd852013-06-04 11:02:10 +0100117 u32 (*get_interrupt_status)(const struct kvm_vcpu *vcpu);
Marc Zyngier909d9b52013-06-04 11:24:17 +0100118 void (*enable_underflow)(struct kvm_vcpu *vcpu);
119 void (*disable_underflow)(struct kvm_vcpu *vcpu);
Marc Zyngierbeee38b2014-02-04 17:48:10 +0000120 void (*get_vmcr)(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
121 void (*set_vmcr)(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
Marc Zyngierda8dafd12013-06-04 11:36:38 +0100122 void (*enable)(struct kvm_vcpu *vcpu);
Marc Zyngier8d5c6b02013-06-03 15:55:02 +0100123};
124
Marc Zyngierca85f622013-06-18 19:17:28 +0100125struct vgic_params {
Marc Zyngier1a9b1302013-06-21 11:57:56 +0100126 /* vgic type */
127 enum vgic_type type;
Marc Zyngierca85f622013-06-18 19:17:28 +0100128 /* Physical address of vgic virtual cpu interface */
129 phys_addr_t vcpu_base;
130 /* Number of list registers */
131 u32 nr_lr;
132 /* Interrupt number */
133 unsigned int maint_irq;
134 /* Virtual control interface base address */
135 void __iomem *vctrl_base;
Andre Przywara3caa2d82014-06-02 16:26:01 +0200136 int max_gic_vcpus;
Marc Zyngierca85f622013-06-18 19:17:28 +0100137};
138
Andre Przywarab26e5fd2014-06-02 16:19:12 +0200139struct vgic_vm_ops {
140 bool (*handle_mmio)(struct kvm_vcpu *, struct kvm_run *,
141 struct kvm_exit_mmio *);
142 bool (*queue_sgi)(struct kvm_vcpu *, int irq);
143 void (*add_sgi_source)(struct kvm_vcpu *, int irq, int source);
144 int (*init_model)(struct kvm *);
145 int (*map_resources)(struct kvm *, const struct vgic_params *);
146};
147
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500148struct vgic_dist {
Marc Zyngierb47ef922013-01-21 19:36:14 -0500149#ifdef CONFIG_KVM_ARM_VGIC
150 spinlock_t lock;
Marc Zyngierf982cf42014-05-15 10:03:25 +0100151 bool in_kernel;
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500152 bool ready;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500153
Andre Przywara598921362014-06-03 09:33:10 +0200154 /* vGIC model the kernel emulates for the guest (GICv2 or GICv3) */
155 u32 vgic_model;
156
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100157 int nr_cpus;
158 int nr_irqs;
159
Marc Zyngierb47ef922013-01-21 19:36:14 -0500160 /* Virtual control interface mapping */
161 void __iomem *vctrl_base;
162
Christoffer Dall330690c2013-01-21 19:36:13 -0500163 /* Distributor and vcpu interface mapping in the guest */
164 phys_addr_t vgic_dist_base;
165 phys_addr_t vgic_cpu_base;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500166
167 /* Distributor enabled */
168 u32 enabled;
169
170 /* Interrupt enabled (one bit per IRQ) */
171 struct vgic_bitmap irq_enabled;
172
Christoffer Dallfaa1b462014-06-14 21:54:51 +0200173 /* Level-triggered interrupt external input is asserted */
174 struct vgic_bitmap irq_level;
175
176 /*
177 * Interrupt state is pending on the distributor
178 */
Christoffer Dall227844f2014-06-09 12:27:18 +0200179 struct vgic_bitmap irq_pending;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500180
Christoffer Dallfaa1b462014-06-14 21:54:51 +0200181 /*
182 * Tracks writes to GICD_ISPENDRn and GICD_ICPENDRn for level-triggered
183 * interrupts. Essentially holds the state of the flip-flop in
184 * Figure 4-10 on page 4-101 in ARM IHI 0048B.b.
185 * Once set, it is only cleared for level-triggered interrupts on
186 * guest ACKs (when we queue it) or writes to GICD_ICPENDRn.
187 */
188 struct vgic_bitmap irq_soft_pend;
189
Christoffer Dalldbf20f92014-06-09 12:55:13 +0200190 /* Level-triggered interrupt queued on VCPU interface */
191 struct vgic_bitmap irq_queued;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500192
193 /* Interrupt priority. Not used yet. */
194 struct vgic_bytemap irq_priority;
195
196 /* Level/edge triggered */
197 struct vgic_bitmap irq_cfg;
198
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100199 /*
200 * Source CPU per SGI and target CPU:
201 *
202 * Each byte represent a SGI observable on a VCPU, each bit of
203 * this byte indicating if the corresponding VCPU has
204 * generated this interrupt. This is a GICv2 feature only.
205 *
206 * For VCPUn (n < 8), irq_sgi_sources[n*16] to [n*16 + 15] are
207 * the SGIs observable on VCPUn.
208 */
209 u8 *irq_sgi_sources;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500210
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100211 /*
212 * Target CPU for each SPI:
213 *
214 * Array of available SPI, each byte indicating the target
215 * VCPU for SPI. IRQn (n >=32) is at irq_spi_cpu[n-32].
216 */
217 u8 *irq_spi_cpu;
218
219 /*
220 * Reverse lookup of irq_spi_cpu for faster compute pending:
221 *
222 * Array of bitmaps, one per VCPU, describing if IRQn is
223 * routed to a particular VCPU.
224 */
225 struct vgic_bitmap *irq_spi_target;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500226
227 /* Bitmap indicating which CPU has something pending */
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100228 unsigned long *irq_pending_on_cpu;
Andre Przywarab26e5fd2014-06-02 16:19:12 +0200229
230 struct vgic_vm_ops vm_ops;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500231#endif
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500232};
233
Marc Zyngiereede8212013-05-30 10:20:36 +0100234struct vgic_v2_cpu_if {
235 u32 vgic_hcr;
236 u32 vgic_vmcr;
237 u32 vgic_misr; /* Saved only */
Christoffer Dall2df36a52014-09-28 16:04:26 +0200238 u64 vgic_eisr; /* Saved only */
239 u64 vgic_elrsr; /* Saved only */
Marc Zyngiereede8212013-05-30 10:20:36 +0100240 u32 vgic_apr;
Marc Zyngier8f186d52014-02-04 18:13:03 +0000241 u32 vgic_lr[VGIC_V2_MAX_LRS];
Marc Zyngiereede8212013-05-30 10:20:36 +0100242};
243
Marc Zyngierb2fb1c02013-07-12 15:15:23 +0100244struct vgic_v3_cpu_if {
245#ifdef CONFIG_ARM_GIC_V3
246 u32 vgic_hcr;
247 u32 vgic_vmcr;
248 u32 vgic_misr; /* Saved only */
249 u32 vgic_eisr; /* Saved only */
250 u32 vgic_elrsr; /* Saved only */
251 u32 vgic_ap0r[4];
252 u32 vgic_ap1r[4];
253 u64 vgic_lr[VGIC_V3_MAX_LRS];
254#endif
255};
256
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500257struct vgic_cpu {
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500258#ifdef CONFIG_KVM_ARM_VGIC
259 /* per IRQ to LR mapping */
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100260 u8 *vgic_irq_lr_map;
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500261
262 /* Pending interrupts on this VCPU */
263 DECLARE_BITMAP( pending_percpu, VGIC_NR_PRIVATE_IRQS);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100264 unsigned long *pending_shared;
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500265
266 /* Bitmap of used/free list registers */
Marc Zyngier8f186d52014-02-04 18:13:03 +0000267 DECLARE_BITMAP( lr_used, VGIC_V2_MAX_LRS);
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500268
269 /* Number of list registers on this CPU */
270 int nr_lr;
271
272 /* CPU vif control registers for world switch */
Marc Zyngiereede8212013-05-30 10:20:36 +0100273 union {
274 struct vgic_v2_cpu_if vgic_v2;
Marc Zyngierb2fb1c02013-07-12 15:15:23 +0100275 struct vgic_v3_cpu_if vgic_v3;
Marc Zyngiereede8212013-05-30 10:20:36 +0100276 };
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500277#endif
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500278};
279
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500280#define LR_EMPTY 0xff
281
Marc Zyngier495dd852013-06-04 11:02:10 +0100282#define INT_STATUS_EOI (1 << 0)
283#define INT_STATUS_UNDERFLOW (1 << 1)
284
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500285struct kvm;
286struct kvm_vcpu;
287struct kvm_run;
288struct kvm_exit_mmio;
289
290#ifdef CONFIG_KVM_ARM_VGIC
Christoffer Dallce01e4e2013-09-23 14:55:56 -0700291int kvm_vgic_addr(struct kvm *kvm, unsigned long type, u64 *addr, bool write);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500292int kvm_vgic_hyp_init(void);
Peter Maydell6d3cfbe2014-12-04 15:02:24 +0000293int kvm_vgic_map_resources(struct kvm *kvm);
Andre Przywara3caa2d82014-06-02 16:26:01 +0200294int kvm_vgic_get_max_vcpus(void);
Andre Przywara598921362014-06-03 09:33:10 +0200295int kvm_vgic_create(struct kvm *kvm, u32 type);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100296void kvm_vgic_destroy(struct kvm *kvm);
Marc Zyngierc1bfb572014-07-08 12:09:01 +0100297void kvm_vgic_vcpu_destroy(struct kvm_vcpu *vcpu);
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500298void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu);
299void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu);
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500300int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid, unsigned int irq_num,
301 bool level);
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500302int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500303bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
304 struct kvm_exit_mmio *mmio);
305
Marc Zyngierf982cf42014-05-15 10:03:25 +0100306#define irqchip_in_kernel(k) (!!((k)->arch.vgic.in_kernel))
Christoffer Dall1f57be22014-12-09 14:30:36 +0100307#define vgic_initialized(k) (!!((k)->arch.vgic.nr_cpus))
Christoffer Dallc52edf52014-12-09 14:28:09 +0100308#define vgic_ready(k) ((k)->arch.vgic.ready)
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500309
Marc Zyngier8f186d52014-02-04 18:13:03 +0000310int vgic_v2_probe(struct device_node *vgic_node,
311 const struct vgic_ops **ops,
312 const struct vgic_params **params);
Marc Zyngierb2fb1c02013-07-12 15:15:23 +0100313#ifdef CONFIG_ARM_GIC_V3
314int vgic_v3_probe(struct device_node *vgic_node,
315 const struct vgic_ops **ops,
316 const struct vgic_params **params);
317#else
318static inline int vgic_v3_probe(struct device_node *vgic_node,
319 const struct vgic_ops **ops,
320 const struct vgic_params **params)
321{
322 return -ENODEV;
323}
324#endif
Marc Zyngier8f186d52014-02-04 18:13:03 +0000325
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500326#else
327static inline int kvm_vgic_hyp_init(void)
328{
329 return 0;
330}
331
Christoffer Dall330690c2013-01-21 19:36:13 -0500332static inline int kvm_vgic_set_addr(struct kvm *kvm, unsigned long type, u64 addr)
333{
334 return 0;
335}
336
Marc Zyngier6cbde822014-03-06 03:30:46 +0000337static inline int kvm_vgic_addr(struct kvm *kvm, unsigned long type, u64 *addr, bool write)
338{
339 return -ENXIO;
340}
341
Peter Maydell6d3cfbe2014-12-04 15:02:24 +0000342static inline int kvm_vgic_map_resources(struct kvm *kvm)
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500343{
344 return 0;
345}
346
Andre Przywara598921362014-06-03 09:33:10 +0200347static inline int kvm_vgic_create(struct kvm *kvm, u32 type)
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500348{
349 return 0;
350}
351
Arnd Bergmannb5e7a952014-09-30 13:38:20 +0200352static inline void kvm_vgic_destroy(struct kvm *kvm)
353{
354}
355
356static inline void kvm_vgic_vcpu_destroy(struct kvm_vcpu *vcpu)
357{
358}
359
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500360static inline int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu)
361{
362 return 0;
363}
364
365static inline void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu) {}
366static inline void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu) {}
367
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500368static inline int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid,
369 unsigned int irq_num, bool level)
370{
371 return 0;
372}
373
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500374static inline int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu)
375{
376 return 0;
377}
378
379static inline bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
380 struct kvm_exit_mmio *mmio)
381{
382 return false;
383}
384
385static inline int irqchip_in_kernel(struct kvm *kvm)
386{
387 return 0;
388}
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500389
Christoffer Dall1f57be22014-12-09 14:30:36 +0100390static inline bool vgic_initialized(struct kvm *kvm)
391{
392 return true;
393}
394
Christoffer Dallc52edf52014-12-09 14:28:09 +0100395static inline bool vgic_ready(struct kvm *kvm)
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500396{
397 return true;
398}
Andre Przywara3caa2d82014-06-02 16:26:01 +0200399
400static inline int kvm_vgic_get_max_vcpus(void)
401{
402 return KVM_MAX_VCPUS;
403}
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500404#endif
405
406#endif