blob: 17bbe51b79a120801927ba751ffae62ea7c51b3d [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#include <linux/irqchip/arm-gic.h>
28
Christoffer Dall9b2d2e02013-08-29 11:08:25 +010029#define VGIC_NR_IRQS 256
Marc Zyngierb47ef922013-01-21 19:36:14 -050030#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 Zyngier9d949dc2013-01-21 19:36:14 -050035#define VGIC_MAX_LRS (1 << 6)
Marc Zyngierb47ef922013-01-21 19:36:14 -050036
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 */
55struct 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
66struct vgic_bytemap {
67 u32 percpu[VGIC_MAX_CPUS][VGIC_NR_PRIVATE_IRQS / 4];
68 u32 shared[VGIC_NR_SHARED_IRQS / 4];
69};
70
Marc Zyngier8d5c6b02013-06-03 15:55:02 +010071struct 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
78struct vgic_lr {
79 u16 irq;
80 u8 source;
81 u8 state;
82};
83
84struct vgic_ops {
85 struct vgic_lr (*get_lr)(const struct kvm_vcpu *, int);
86 void (*set_lr)(struct kvm_vcpu *, int, struct vgic_lr);
87};
88
Marc Zyngier1a89dd92013-01-21 19:36:12 -050089struct vgic_dist {
Marc Zyngierb47ef922013-01-21 19:36:14 -050090#ifdef CONFIG_KVM_ARM_VGIC
91 spinlock_t lock;
Marc Zyngier01ac5e32013-01-21 19:36:16 -050092 bool ready;
Marc Zyngierb47ef922013-01-21 19:36:14 -050093
94 /* Virtual control interface mapping */
95 void __iomem *vctrl_base;
96
Christoffer Dall330690c2013-01-21 19:36:13 -050097 /* Distributor and vcpu interface mapping in the guest */
98 phys_addr_t vgic_dist_base;
99 phys_addr_t vgic_cpu_base;
Marc Zyngierb47ef922013-01-21 19:36:14 -0500100
101 /* Distributor enabled */
102 u32 enabled;
103
104 /* Interrupt enabled (one bit per IRQ) */
105 struct vgic_bitmap irq_enabled;
106
107 /* Interrupt 'pin' level */
108 struct vgic_bitmap irq_state;
109
110 /* Level-triggered interrupt in progress */
111 struct vgic_bitmap irq_active;
112
113 /* Interrupt priority. Not used yet. */
114 struct vgic_bytemap irq_priority;
115
116 /* Level/edge triggered */
117 struct vgic_bitmap irq_cfg;
118
119 /* Source CPU per SGI and target CPU */
120 u8 irq_sgi_sources[VGIC_MAX_CPUS][VGIC_NR_SGIS];
121
122 /* Target CPU for each IRQ */
123 u8 irq_spi_cpu[VGIC_NR_SHARED_IRQS];
124 struct vgic_bitmap irq_spi_target[VGIC_MAX_CPUS];
125
126 /* Bitmap indicating which CPU has something pending */
127 unsigned long irq_pending_on_cpu;
128#endif
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500129};
130
Marc Zyngiereede8212013-05-30 10:20:36 +0100131struct vgic_v2_cpu_if {
132 u32 vgic_hcr;
133 u32 vgic_vmcr;
134 u32 vgic_misr; /* Saved only */
135 u32 vgic_eisr[2]; /* Saved only */
136 u32 vgic_elrsr[2]; /* Saved only */
137 u32 vgic_apr;
138 u32 vgic_lr[VGIC_MAX_LRS];
139};
140
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500141struct vgic_cpu {
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500142#ifdef CONFIG_KVM_ARM_VGIC
143 /* per IRQ to LR mapping */
144 u8 vgic_irq_lr_map[VGIC_NR_IRQS];
145
146 /* Pending interrupts on this VCPU */
147 DECLARE_BITMAP( pending_percpu, VGIC_NR_PRIVATE_IRQS);
148 DECLARE_BITMAP( pending_shared, VGIC_NR_SHARED_IRQS);
149
150 /* Bitmap of used/free list registers */
151 DECLARE_BITMAP( lr_used, VGIC_MAX_LRS);
152
153 /* Number of list registers on this CPU */
154 int nr_lr;
155
156 /* CPU vif control registers for world switch */
Marc Zyngiereede8212013-05-30 10:20:36 +0100157 union {
158 struct vgic_v2_cpu_if vgic_v2;
159 };
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500160#endif
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500161};
162
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500163#define LR_EMPTY 0xff
164
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500165struct kvm;
166struct kvm_vcpu;
167struct kvm_run;
168struct kvm_exit_mmio;
169
170#ifdef CONFIG_KVM_ARM_VGIC
Christoffer Dallce01e4e2013-09-23 14:55:56 -0700171int kvm_vgic_addr(struct kvm *kvm, unsigned long type, u64 *addr, bool write);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500172int kvm_vgic_hyp_init(void);
173int kvm_vgic_init(struct kvm *kvm);
174int kvm_vgic_create(struct kvm *kvm);
175int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu);
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500176void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu);
177void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu);
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500178int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid, unsigned int irq_num,
179 bool level);
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500180int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500181bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
182 struct kvm_exit_mmio *mmio);
183
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500184#define irqchip_in_kernel(k) (!!((k)->arch.vgic.vctrl_base))
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500185#define vgic_initialized(k) ((k)->arch.vgic.ready)
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500186
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500187#else
188static inline int kvm_vgic_hyp_init(void)
189{
190 return 0;
191}
192
Christoffer Dall330690c2013-01-21 19:36:13 -0500193static inline int kvm_vgic_set_addr(struct kvm *kvm, unsigned long type, u64 addr)
194{
195 return 0;
196}
197
Marc Zyngier6cbde822014-03-06 03:30:46 +0000198static inline int kvm_vgic_addr(struct kvm *kvm, unsigned long type, u64 *addr, bool write)
199{
200 return -ENXIO;
201}
202
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500203static inline int kvm_vgic_init(struct kvm *kvm)
204{
205 return 0;
206}
207
208static inline int kvm_vgic_create(struct kvm *kvm)
209{
210 return 0;
211}
212
213static inline int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu)
214{
215 return 0;
216}
217
218static inline void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu) {}
219static inline void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu) {}
220
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500221static inline int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid,
222 unsigned int irq_num, bool level)
223{
224 return 0;
225}
226
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500227static inline int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu)
228{
229 return 0;
230}
231
232static inline bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
233 struct kvm_exit_mmio *mmio)
234{
235 return false;
236}
237
238static inline int irqchip_in_kernel(struct kvm *kvm)
239{
240 return 0;
241}
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500242
243static inline bool vgic_initialized(struct kvm *kvm)
244{
245 return true;
246}
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500247#endif
248
249#endif