blob: c2dc8574ea3a75d65f37b8cc5b8e249e5fbc13c8 [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>
24#include <linux/kvm_host.h>
25#include <linux/irqreturn.h>
26#include <linux/spinlock.h>
27#include <linux/types.h>
Marc Zyngier1a89dd92013-01-21 19:36:12 -050028#include <linux/irqchip/arm-gic.h>
29
Marc Zyngierb47ef922013-01-21 19:36:14 -050030#define VGIC_NR_IRQS 128
31#define VGIC_NR_SGIS 16
32#define VGIC_NR_PPIS 16
33#define VGIC_NR_PRIVATE_IRQS (VGIC_NR_SGIS + VGIC_NR_PPIS)
34#define VGIC_NR_SHARED_IRQS (VGIC_NR_IRQS - VGIC_NR_PRIVATE_IRQS)
35#define VGIC_MAX_CPUS KVM_MAX_VCPUS
Marc Zyngier9d949dc2013-01-21 19:36:14 -050036#define VGIC_MAX_LRS (1 << 6)
Marc Zyngierb47ef922013-01-21 19:36:14 -050037
38/* Sanity checks... */
39#if (VGIC_MAX_CPUS > 8)
40#error Invalid number of CPU interfaces
41#endif
42
43#if (VGIC_NR_IRQS & 31)
44#error "VGIC_NR_IRQS must be a multiple of 32"
45#endif
46
47#if (VGIC_NR_IRQS > 1024)
48#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 {
57 union {
58 u32 reg[VGIC_NR_PRIVATE_IRQS / 32];
59 DECLARE_BITMAP(reg_ul, VGIC_NR_PRIVATE_IRQS);
60 } percpu[VGIC_MAX_CPUS];
61 union {
62 u32 reg[VGIC_NR_SHARED_IRQS / 32];
63 DECLARE_BITMAP(reg_ul, VGIC_NR_SHARED_IRQS);
64 } shared;
65};
66
67struct vgic_bytemap {
68 u32 percpu[VGIC_MAX_CPUS][VGIC_NR_PRIVATE_IRQS / 4];
69 u32 shared[VGIC_NR_SHARED_IRQS / 4];
70};
71
Marc Zyngier1a89dd92013-01-21 19:36:12 -050072struct vgic_dist {
Marc Zyngierb47ef922013-01-21 19:36:14 -050073#ifdef CONFIG_KVM_ARM_VGIC
74 spinlock_t lock;
75
76 /* Virtual control interface mapping */
77 void __iomem *vctrl_base;
78
Christoffer Dall330690c2013-01-21 19:36:13 -050079 /* Distributor and vcpu interface mapping in the guest */
80 phys_addr_t vgic_dist_base;
81 phys_addr_t vgic_cpu_base;
Marc Zyngierb47ef922013-01-21 19:36:14 -050082
83 /* Distributor enabled */
84 u32 enabled;
85
86 /* Interrupt enabled (one bit per IRQ) */
87 struct vgic_bitmap irq_enabled;
88
89 /* Interrupt 'pin' level */
90 struct vgic_bitmap irq_state;
91
92 /* Level-triggered interrupt in progress */
93 struct vgic_bitmap irq_active;
94
95 /* Interrupt priority. Not used yet. */
96 struct vgic_bytemap irq_priority;
97
98 /* Level/edge triggered */
99 struct vgic_bitmap irq_cfg;
100
101 /* Source CPU per SGI and target CPU */
102 u8 irq_sgi_sources[VGIC_MAX_CPUS][VGIC_NR_SGIS];
103
104 /* Target CPU for each IRQ */
105 u8 irq_spi_cpu[VGIC_NR_SHARED_IRQS];
106 struct vgic_bitmap irq_spi_target[VGIC_MAX_CPUS];
107
108 /* Bitmap indicating which CPU has something pending */
109 unsigned long irq_pending_on_cpu;
110#endif
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500111};
112
113struct vgic_cpu {
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500114#ifdef CONFIG_KVM_ARM_VGIC
115 /* per IRQ to LR mapping */
116 u8 vgic_irq_lr_map[VGIC_NR_IRQS];
117
118 /* Pending interrupts on this VCPU */
119 DECLARE_BITMAP( pending_percpu, VGIC_NR_PRIVATE_IRQS);
120 DECLARE_BITMAP( pending_shared, VGIC_NR_SHARED_IRQS);
121
122 /* Bitmap of used/free list registers */
123 DECLARE_BITMAP( lr_used, VGIC_MAX_LRS);
124
125 /* Number of list registers on this CPU */
126 int nr_lr;
127
128 /* CPU vif control registers for world switch */
129 u32 vgic_hcr;
130 u32 vgic_vmcr;
131 u32 vgic_misr; /* Saved only */
132 u32 vgic_eisr[2]; /* Saved only */
133 u32 vgic_elrsr[2]; /* Saved only */
134 u32 vgic_apr;
135 u32 vgic_lr[VGIC_MAX_LRS];
136#endif
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500137};
138
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500139#define LR_EMPTY 0xff
140
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500141struct kvm;
142struct kvm_vcpu;
143struct kvm_run;
144struct kvm_exit_mmio;
145
146#ifdef CONFIG_KVM_ARM_VGIC
Christoffer Dall330690c2013-01-21 19:36:13 -0500147int kvm_vgic_set_addr(struct kvm *kvm, unsigned long type, u64 addr);
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500148void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu);
149void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu);
150int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500151bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
152 struct kvm_exit_mmio *mmio);
153
Marc Zyngier9d949dc2013-01-21 19:36:14 -0500154#define irqchip_in_kernel(k) (!!((k)->arch.vgic.vctrl_base))
155
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500156#else
157static inline int kvm_vgic_hyp_init(void)
158{
159 return 0;
160}
161
Christoffer Dall330690c2013-01-21 19:36:13 -0500162static inline int kvm_vgic_set_addr(struct kvm *kvm, unsigned long type, u64 addr)
163{
164 return 0;
165}
166
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500167static inline int kvm_vgic_init(struct kvm *kvm)
168{
169 return 0;
170}
171
172static inline int kvm_vgic_create(struct kvm *kvm)
173{
174 return 0;
175}
176
177static inline int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu)
178{
179 return 0;
180}
181
182static inline void kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu) {}
183static inline void kvm_vgic_sync_hwstate(struct kvm_vcpu *vcpu) {}
184
185static inline int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu)
186{
187 return 0;
188}
189
190static inline bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
191 struct kvm_exit_mmio *mmio)
192{
193 return false;
194}
195
196static inline int irqchip_in_kernel(struct kvm *kvm)
197{
198 return 0;
199}
200#endif
201
202#endif