]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - virt/kvm/arm/vgic/vgic.h
KVM: arm/arm64: vgic-new: vgic_init: implement vgic_create
[mirror_ubuntu-artful-kernel.git] / virt / kvm / arm / vgic / vgic.h
CommitLineData
64a959d6
CD
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
90977732
EA
19#include <linux/irqchip/arm-gic-common.h>
20
2b0cda87
MZ
21#define PRODUCT_ID_KVM 0x4b /* ASCII code K */
22#define IMPLEMENTER_ARM 0x43b
23
e2c1f9ab
EA
24#define VGIC_ADDR_UNDEF (-1)
25#define IS_VGIC_ADDR_UNDEF(_x) ((_x) == VGIC_ADDR_UNDEF)
26
fd59ed3b 27#define INTERRUPT_ID_BITS_SPIS 10
055658bf
AP
28#define VGIC_PRI_BITS 5
29
0919e84c
MZ
30#define vgic_irq_is_sgi(intid) ((intid) < VGIC_NR_SGIS)
31
e4823a7a
AP
32struct vgic_vmcr {
33 u32 ctlr;
34 u32 abpr;
35 u32 bpr;
36 u32 pmr;
37};
38
64a959d6
CD
39struct vgic_irq *vgic_get_irq(struct kvm *kvm, struct kvm_vcpu *vcpu,
40 u32 intid);
81eeb95d 41bool vgic_queue_irq_unlock(struct kvm *kvm, struct vgic_irq *irq);
2b0cda87 42void vgic_kick_vcpus(struct kvm *kvm);
64a959d6 43
140b086d
MZ
44void vgic_v2_process_maintenance(struct kvm_vcpu *vcpu);
45void vgic_v2_fold_lr_state(struct kvm_vcpu *vcpu);
46void vgic_v2_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr);
47void vgic_v2_clear_lr(struct kvm_vcpu *vcpu, int lr);
48void vgic_v2_set_underflow(struct kvm_vcpu *vcpu);
f94591e2 49int vgic_v2_has_attr_regs(struct kvm_device *dev, struct kvm_device_attr *attr);
c3199f28
CD
50int vgic_v2_dist_uaccess(struct kvm_vcpu *vcpu, bool is_write,
51 int offset, u32 *val);
878c569e
AP
52int vgic_v2_cpuif_uaccess(struct kvm_vcpu *vcpu, bool is_write,
53 int offset, u32 *val);
e4823a7a
AP
54void vgic_v2_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
55void vgic_v2_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
90977732 56int vgic_v2_probe(const struct gic_kvm_info *info);
fb848db3
AP
57int vgic_register_dist_iodev(struct kvm *kvm, gpa_t dist_base_address,
58 enum vgic_type);
140b086d 59
59529f69
MZ
60#ifdef CONFIG_KVM_ARM_VGIC_V3
61void vgic_v3_process_maintenance(struct kvm_vcpu *vcpu);
62void vgic_v3_fold_lr_state(struct kvm_vcpu *vcpu);
63void vgic_v3_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr);
64void vgic_v3_clear_lr(struct kvm_vcpu *vcpu, int lr);
65void vgic_v3_set_underflow(struct kvm_vcpu *vcpu);
e4823a7a
AP
66void vgic_v3_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
67void vgic_v3_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
90977732 68int vgic_v3_probe(const struct gic_kvm_info *info);
ed9b8cef 69int vgic_register_redist_iodevs(struct kvm *kvm, gpa_t dist_base_address);
59529f69
MZ
70#else
71static inline void vgic_v3_process_maintenance(struct kvm_vcpu *vcpu)
72{
73}
74
75static inline void vgic_v3_fold_lr_state(struct kvm_vcpu *vcpu)
76{
77}
78
79static inline void vgic_v3_populate_lr(struct kvm_vcpu *vcpu,
80 struct vgic_irq *irq, int lr)
81{
82}
83
84static inline void vgic_v3_clear_lr(struct kvm_vcpu *vcpu, int lr)
85{
86}
87
88static inline void vgic_v3_set_underflow(struct kvm_vcpu *vcpu)
89{
90}
ed9b8cef 91
e4823a7a
AP
92static inline
93void vgic_v3_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr)
94{
95}
96
97static inline
98void vgic_v3_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr)
99{
100}
101
90977732
EA
102static inline int vgic_v3_probe(const struct gic_kvm_info *info)
103{
104 return -ENODEV;
105}
106
ed9b8cef
AP
107static inline int vgic_register_redist_iodevs(struct kvm *kvm,
108 gpa_t dist_base_address)
109{
110 return -ENODEV;
111}
59529f69
MZ
112#endif
113
c86c7721
EA
114void kvm_register_vgic_device(unsigned long type);
115
64a959d6 116#endif