vgic.h 4.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) 2015, 2016 ARM Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef __KVM_ARM_VGIC_NEW_H__
#define __KVM_ARM_VGIC_NEW_H__

19 20
#include <linux/irqchip/arm-gic-common.h>

21 22 23
#define PRODUCT_ID_KVM		0x4b	/* ASCII code K */
#define IMPLEMENTER_ARM		0x43b

24 25 26
#define VGIC_ADDR_UNDEF		(-1)
#define IS_VGIC_ADDR_UNDEF(_x)  ((_x) == VGIC_ADDR_UNDEF)

27
#define INTERRUPT_ID_BITS_SPIS	10
28
#define INTERRUPT_ID_BITS_ITS	16
29 30
#define VGIC_PRI_BITS		5

31 32
#define vgic_irq_is_sgi(intid) ((intid) < VGIC_NR_SGIS)

33 34 35 36 37 38 39
struct vgic_vmcr {
	u32	ctlr;
	u32	abpr;
	u32	bpr;
	u32	pmr;
};

40 41
struct vgic_irq *vgic_get_irq(struct kvm *kvm, struct kvm_vcpu *vcpu,
			      u32 intid);
42
void vgic_put_irq(struct kvm *kvm, struct vgic_irq *irq);
43
bool vgic_queue_irq_unlock(struct kvm *kvm, struct vgic_irq *irq);
44
void vgic_kick_vcpus(struct kvm *kvm);
45

46 47 48
int vgic_check_ioaddr(struct kvm *kvm, phys_addr_t *ioaddr,
		      phys_addr_t addr, phys_addr_t alignment);

49 50 51 52 53
void vgic_v2_process_maintenance(struct kvm_vcpu *vcpu);
void vgic_v2_fold_lr_state(struct kvm_vcpu *vcpu);
void vgic_v2_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr);
void vgic_v2_clear_lr(struct kvm_vcpu *vcpu, int lr);
void vgic_v2_set_underflow(struct kvm_vcpu *vcpu);
54
int vgic_v2_has_attr_regs(struct kvm_device *dev, struct kvm_device_attr *attr);
55 56
int vgic_v2_dist_uaccess(struct kvm_vcpu *vcpu, bool is_write,
			 int offset, u32 *val);
57 58
int vgic_v2_cpuif_uaccess(struct kvm_vcpu *vcpu, bool is_write,
			  int offset, u32 *val);
59 60
void vgic_v2_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
void vgic_v2_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
61
void vgic_v2_enable(struct kvm_vcpu *vcpu);
62
int vgic_v2_probe(const struct gic_kvm_info *info);
63
int vgic_v2_map_resources(struct kvm *kvm);
64 65
int vgic_register_dist_iodev(struct kvm *kvm, gpa_t dist_base_address,
			     enum vgic_type);
66

67 68 69 70 71 72 73 74
static inline void vgic_get_irq_kref(struct vgic_irq *irq)
{
	if (irq->intid < VGIC_MIN_LPI)
		return;

	kref_get(&irq->refcount);
}

75 76 77 78 79 80
#ifdef CONFIG_KVM_ARM_VGIC_V3
void vgic_v3_process_maintenance(struct kvm_vcpu *vcpu);
void vgic_v3_fold_lr_state(struct kvm_vcpu *vcpu);
void vgic_v3_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr);
void vgic_v3_clear_lr(struct kvm_vcpu *vcpu, int lr);
void vgic_v3_set_underflow(struct kvm_vcpu *vcpu);
81 82
void vgic_v3_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
void vgic_v3_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
83
void vgic_v3_enable(struct kvm_vcpu *vcpu);
84
int vgic_v3_probe(const struct gic_kvm_info *info);
85
int vgic_v3_map_resources(struct kvm *kvm);
86
int vgic_register_redist_iodevs(struct kvm *kvm, gpa_t dist_base_address);
87
bool vgic_has_its(struct kvm *kvm);
88
int kvm_vgic_register_its_device(void);
89
void vgic_enable_lpis(struct kvm_vcpu *vcpu);
90
int vgic_its_inject_msi(struct kvm *kvm, struct kvm_msi *msi);
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
#else
static inline void vgic_v3_process_maintenance(struct kvm_vcpu *vcpu)
{
}

static inline void vgic_v3_fold_lr_state(struct kvm_vcpu *vcpu)
{
}

static inline void vgic_v3_populate_lr(struct kvm_vcpu *vcpu,
				       struct vgic_irq *irq, int lr)
{
}

static inline void vgic_v3_clear_lr(struct kvm_vcpu *vcpu, int lr)
{
}

static inline void vgic_v3_set_underflow(struct kvm_vcpu *vcpu)
{
}
112

113 114 115 116 117 118 119 120 121 122
static inline
void vgic_v3_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr)
{
}

static inline
void vgic_v3_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr)
{
}

123 124 125 126
static inline void vgic_v3_enable(struct kvm_vcpu *vcpu)
{
}

127 128 129 130 131
static inline int vgic_v3_probe(const struct gic_kvm_info *info)
{
	return -ENODEV;
}

132 133 134 135 136
static inline int vgic_v3_map_resources(struct kvm *kvm)
{
	return -ENODEV;
}

137 138 139 140 141
static inline int vgic_register_redist_iodevs(struct kvm *kvm,
					      gpa_t dist_base_address)
{
	return -ENODEV;
}
142 143 144 145 146 147

static inline bool vgic_has_its(struct kvm *kvm)
{
	return false;
}

148 149 150 151 152
static inline int kvm_vgic_register_its_device(void)
{
	return -ENODEV;
}

153 154 155
static inline void vgic_enable_lpis(struct kvm_vcpu *vcpu)
{
}
156 157 158 159 160

static inline int vgic_its_inject_msi(struct kvm *kvm, struct kvm_msi *msi)
{
	return -ENODEV;
}
161 162
#endif

163
int kvm_register_vgic_device(unsigned long type);
164 165
int vgic_lazy_init(struct kvm *kvm);
int vgic_init(struct kvm *kvm);
166

167
#endif