]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - virt/kvm/arm/vgic/vgic.h
KVM: arm/arm64: vgic-new: vgic_init: implement vgic_init
[mirror_ubuntu-zesty-kernel.git] / virt / kvm / arm / vgic / vgic.h
1 /*
2 * Copyright (C) 2015, 2016 ARM Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16 #ifndef __KVM_ARM_VGIC_NEW_H__
17 #define __KVM_ARM_VGIC_NEW_H__
18
19 #include <linux/irqchip/arm-gic-common.h>
20
21 #define PRODUCT_ID_KVM 0x4b /* ASCII code K */
22 #define IMPLEMENTER_ARM 0x43b
23
24 #define VGIC_ADDR_UNDEF (-1)
25 #define IS_VGIC_ADDR_UNDEF(_x) ((_x) == VGIC_ADDR_UNDEF)
26
27 #define INTERRUPT_ID_BITS_SPIS 10
28 #define VGIC_PRI_BITS 5
29
30 #define vgic_irq_is_sgi(intid) ((intid) < VGIC_NR_SGIS)
31
32 struct vgic_vmcr {
33 u32 ctlr;
34 u32 abpr;
35 u32 bpr;
36 u32 pmr;
37 };
38
39 struct vgic_irq *vgic_get_irq(struct kvm *kvm, struct kvm_vcpu *vcpu,
40 u32 intid);
41 bool vgic_queue_irq_unlock(struct kvm *kvm, struct vgic_irq *irq);
42 void vgic_kick_vcpus(struct kvm *kvm);
43
44 void vgic_v2_process_maintenance(struct kvm_vcpu *vcpu);
45 void vgic_v2_fold_lr_state(struct kvm_vcpu *vcpu);
46 void vgic_v2_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr);
47 void vgic_v2_clear_lr(struct kvm_vcpu *vcpu, int lr);
48 void vgic_v2_set_underflow(struct kvm_vcpu *vcpu);
49 int vgic_v2_has_attr_regs(struct kvm_device *dev, struct kvm_device_attr *attr);
50 int vgic_v2_dist_uaccess(struct kvm_vcpu *vcpu, bool is_write,
51 int offset, u32 *val);
52 int vgic_v2_cpuif_uaccess(struct kvm_vcpu *vcpu, bool is_write,
53 int offset, u32 *val);
54 void vgic_v2_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
55 void vgic_v2_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
56 void vgic_v2_enable(struct kvm_vcpu *vcpu);
57 int vgic_v2_probe(const struct gic_kvm_info *info);
58 int vgic_register_dist_iodev(struct kvm *kvm, gpa_t dist_base_address,
59 enum vgic_type);
60
61 #ifdef CONFIG_KVM_ARM_VGIC_V3
62 void vgic_v3_process_maintenance(struct kvm_vcpu *vcpu);
63 void vgic_v3_fold_lr_state(struct kvm_vcpu *vcpu);
64 void vgic_v3_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr);
65 void vgic_v3_clear_lr(struct kvm_vcpu *vcpu, int lr);
66 void vgic_v3_set_underflow(struct kvm_vcpu *vcpu);
67 void vgic_v3_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
68 void vgic_v3_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
69 void vgic_v3_enable(struct kvm_vcpu *vcpu);
70 int vgic_v3_probe(const struct gic_kvm_info *info);
71 int vgic_register_redist_iodevs(struct kvm *kvm, gpa_t dist_base_address);
72 #else
73 static inline void vgic_v3_process_maintenance(struct kvm_vcpu *vcpu)
74 {
75 }
76
77 static inline void vgic_v3_fold_lr_state(struct kvm_vcpu *vcpu)
78 {
79 }
80
81 static inline void vgic_v3_populate_lr(struct kvm_vcpu *vcpu,
82 struct vgic_irq *irq, int lr)
83 {
84 }
85
86 static inline void vgic_v3_clear_lr(struct kvm_vcpu *vcpu, int lr)
87 {
88 }
89
90 static inline void vgic_v3_set_underflow(struct kvm_vcpu *vcpu)
91 {
92 }
93
94 static inline
95 void vgic_v3_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr)
96 {
97 }
98
99 static inline
100 void vgic_v3_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr)
101 {
102 }
103
104 static inline void vgic_v3_enable(struct kvm_vcpu *vcpu)
105 {
106 }
107
108 static inline int vgic_v3_probe(const struct gic_kvm_info *info)
109 {
110 return -ENODEV;
111 }
112
113 static inline int vgic_register_redist_iodevs(struct kvm *kvm,
114 gpa_t dist_base_address)
115 {
116 return -ENODEV;
117 }
118 #endif
119
120 void kvm_register_vgic_device(unsigned long type);
121 int vgic_lazy_init(struct kvm *kvm);
122 int vgic_init(struct kvm *kvm);
123
124 #endif