As the GICv3 virtual interface registers differ from their GICv2 siblings, we need different handlers for processing maintenance interrupts and reading/writing to the LRs. Implement the respective handler functions and connect them to existing code to be called if the host is using a GICv3. Signed-off-by: Marc Zyngier <marc.zyngier@arm.com> Signed-off-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
61 lines
1.9 KiB
C
61 lines
1.9 KiB
C
/*
|
|
* 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__
|
|
|
|
#define vgic_irq_is_sgi(intid) ((intid) < VGIC_NR_SGIS)
|
|
|
|
struct vgic_irq *vgic_get_irq(struct kvm *kvm, struct kvm_vcpu *vcpu,
|
|
u32 intid);
|
|
bool vgic_queue_irq_unlock(struct kvm *kvm, struct vgic_irq *irq);
|
|
|
|
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);
|
|
|
|
#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);
|
|
#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)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#endif
|