KVM: ARM: vgic: introduce vgic_enable
[deliverable/linux.git] / include / kvm / arm_vgic.h
CommitLineData
1a89dd91
MZ
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
b47ef92a
MZ
22#include <linux/kernel.h>
23#include <linux/kvm.h>
b47ef92a
MZ
24#include <linux/irqreturn.h>
25#include <linux/spinlock.h>
26#include <linux/types.h>
1a89dd91
MZ
27#include <linux/irqchip/arm-gic.h>
28
9b2d2e0d 29#define VGIC_NR_IRQS 256
b47ef92a
MZ
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
9d949dce 35#define VGIC_MAX_LRS (1 << 6)
b47ef92a
MZ
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 */
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
8d5c6b06
MZ
71struct 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
beee38b9
MZ
84struct vgic_vmcr {
85 u32 ctlr;
86 u32 abpr;
87 u32 bpr;
88 u32 pmr;
89};
90
8d5c6b06
MZ
91struct vgic_ops {
92 struct vgic_lr (*get_lr)(const struct kvm_vcpu *, int);
93 void (*set_lr)(struct kvm_vcpu *, int, struct vgic_lr);
69bb2c9f
MZ
94 void (*sync_lr_elrsr)(struct kvm_vcpu *, int, struct vgic_lr);
95 u64 (*get_elrsr)(const struct kvm_vcpu *vcpu);
8d6a0313 96 u64 (*get_eisr)(const struct kvm_vcpu *vcpu);
495dd859 97 u32 (*get_interrupt_status)(const struct kvm_vcpu *vcpu);
909d9b50
MZ
98 void (*enable_underflow)(struct kvm_vcpu *vcpu);
99 void (*disable_underflow)(struct kvm_vcpu *vcpu);
beee38b9
MZ
100 void (*get_vmcr)(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
101 void (*set_vmcr)(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
da8dafd1 102 void (*enable)(struct kvm_vcpu *vcpu);
8d5c6b06
MZ
103};
104
1a89dd91 105struct vgic_dist {
b47ef92a
MZ
106#ifdef CONFIG_KVM_ARM_VGIC
107 spinlock_t lock;
01ac5e34 108 bool ready;
b47ef92a
MZ
109
110 /* Virtual control interface mapping */
111 void __iomem *vctrl_base;
112
330690cd
CD
113 /* Distributor and vcpu interface mapping in the guest */
114 phys_addr_t vgic_dist_base;
115 phys_addr_t vgic_cpu_base;
b47ef92a
MZ
116
117 /* Distributor enabled */
118 u32 enabled;
119
120 /* Interrupt enabled (one bit per IRQ) */
121 struct vgic_bitmap irq_enabled;
122
123 /* Interrupt 'pin' level */
124 struct vgic_bitmap irq_state;
125
126 /* Level-triggered interrupt in progress */
127 struct vgic_bitmap irq_active;
128
129 /* Interrupt priority. Not used yet. */
130 struct vgic_bytemap irq_priority;
131
132 /* Level/edge triggered */
133 struct vgic_bitmap irq_cfg;
134
135 /* Source CPU per SGI and target CPU */
136 u8 irq_sgi_sources[VGIC_MAX_CPUS][VGIC_NR_SGIS];
137
138 /* Target CPU for each IRQ */
139 u8 irq_spi_cpu[VGIC_NR_SHARED_IRQS];
140 struct vgic_bitmap irq_spi_target[VGIC_MAX_CPUS];
141
142 /* Bitmap indicating which CPU has something pending */
143 unsigned long irq_pending_on_cpu;
144#endif
1a89dd91
MZ
145};
146
eede821d
MZ
147struct vgic_v2_cpu_if {
148 u32 vgic_hcr;
149 u32 vgic_vmcr;
150 u32 vgic_misr; /* Saved only */
151 u32 vgic_eisr[2]; /* Saved only */
152 u32 vgic_elrsr[2]; /* Saved only */
153 u32 vgic_apr;
154 u32 vgic_lr[VGIC_MAX_LRS];
155};
156
1a89dd91 157struct vgic_cpu {
9d949dce
MZ
158#ifdef CONFIG_KVM_ARM_VGIC
159 /* per IRQ to LR mapping */
160 u8 vgic_irq_lr_map[VGIC_NR_IRQS];
161
162 /* Pending interrupts on this VCPU */
163 DECLARE_BITMAP( pending_percpu, VGIC_NR_PRIVATE_IRQS);
164 DECLARE_BITMAP( pending_shared, VGIC_NR_SHARED_IRQS);
165
166 /* Bitmap of used/free list registers */
167 DECLARE_BITMAP( lr_used, VGIC_MAX_LRS);
168
169 /* Number of list registers on this CPU */
170 int nr_lr;
171
172 /* CPU vif control registers for world switch */
eede821d
MZ
173 union {
174 struct vgic_v2_cpu_if vgic_v2;
175 };
9d949dce 176#endif
1a89dd91
MZ
177};
178
9d949dce
MZ
179#define LR_EMPTY 0xff
180
495dd859
MZ
181#define INT_STATUS_EOI (1 << 0)
182#define INT_STATUS_UNDERFLOW (1 << 1)
183
1a89dd91
MZ
184struct kvm;
185struct kvm_vcpu;
186struct kvm_run;
187struct kvm_exit_mmio;
188
189#ifdef CONFIG_KVM_ARM_VGIC
ce01e4e8 190int kvm_vgic_addr(struct kvm *kvm, unsigned long type, u64 *addr, bool write);
01ac5e34
MZ
191int kvm_vgic_hyp_init(void);
192int kvm_vgic_init(struct kvm *kvm);
193int kvm_vgic_create(struct kvm *kvm);
194int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu);
9d949dce
MZ
195void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu);
196void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu);
5863c2ce
MZ
197int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid, unsigned int irq_num,
198 bool level);
9d949dce 199int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu);
1a89dd91
MZ
200bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
201 struct kvm_exit_mmio *mmio);
202
9d949dce 203#define irqchip_in_kernel(k) (!!((k)->arch.vgic.vctrl_base))
01ac5e34 204#define vgic_initialized(k) ((k)->arch.vgic.ready)
9d949dce 205
1a89dd91
MZ
206#else
207static inline int kvm_vgic_hyp_init(void)
208{
209 return 0;
210}
211
330690cd
CD
212static inline int kvm_vgic_set_addr(struct kvm *kvm, unsigned long type, u64 addr)
213{
214 return 0;
215}
216
6cbde825
MZ
217static inline int kvm_vgic_addr(struct kvm *kvm, unsigned long type, u64 *addr, bool write)
218{
219 return -ENXIO;
220}
221
1a89dd91
MZ
222static inline int kvm_vgic_init(struct kvm *kvm)
223{
224 return 0;
225}
226
227static inline int kvm_vgic_create(struct kvm *kvm)
228{
229 return 0;
230}
231
232static inline int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu)
233{
234 return 0;
235}
236
237static inline void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu) {}
238static inline void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu) {}
239
5863c2ce
MZ
240static inline int kvm_vgic_inject_irq(struct kvm *kvm, int cpuid,
241 unsigned int irq_num, bool level)
242{
243 return 0;
244}
245
1a89dd91
MZ
246static inline int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu)
247{
248 return 0;
249}
250
251static inline bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
252 struct kvm_exit_mmio *mmio)
253{
254 return false;
255}
256
257static inline int irqchip_in_kernel(struct kvm *kvm)
258{
259 return 0;
260}
01ac5e34
MZ
261
262static inline bool vgic_initialized(struct kvm *kvm)
263{
264 return true;
265}
1a89dd91
MZ
266#endif
267
268#endif
This page took 0.080295 seconds and 5 git commands to generate.