Christoffer Dall | 64a959d | 2015-11-24 16:51:12 +0100 | [diff] [blame] | 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 | |
Marc Zyngier | 0919e84 | 2015-11-26 17:19:25 +0000 | [diff] [blame] | 19 | #define vgic_irq_is_sgi(intid) ((intid) < VGIC_NR_SGIS) |
| 20 | |
Christoffer Dall | 64a959d | 2015-11-24 16:51:12 +0100 | [diff] [blame] | 21 | struct vgic_irq *vgic_get_irq(struct kvm *kvm, struct kvm_vcpu *vcpu, |
| 22 | u32 intid); |
Christoffer Dall | 81eeb95 | 2015-11-25 10:02:16 -0800 | [diff] [blame] | 23 | bool vgic_queue_irq_unlock(struct kvm *kvm, struct vgic_irq *irq); |
Christoffer Dall | 64a959d | 2015-11-24 16:51:12 +0100 | [diff] [blame] | 24 | |
Marc Zyngier | 140b086 | 2015-11-26 17:19:25 +0000 | [diff] [blame] | 25 | void vgic_v2_process_maintenance(struct kvm_vcpu *vcpu); |
| 26 | void vgic_v2_fold_lr_state(struct kvm_vcpu *vcpu); |
| 27 | void vgic_v2_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr); |
| 28 | void vgic_v2_clear_lr(struct kvm_vcpu *vcpu, int lr); |
| 29 | void vgic_v2_set_underflow(struct kvm_vcpu *vcpu); |
| 30 | |
Marc Zyngier | 59529f6 | 2015-11-30 13:09:53 +0000 | [diff] [blame^] | 31 | #ifdef CONFIG_KVM_ARM_VGIC_V3 |
| 32 | void vgic_v3_process_maintenance(struct kvm_vcpu *vcpu); |
| 33 | void vgic_v3_fold_lr_state(struct kvm_vcpu *vcpu); |
| 34 | void vgic_v3_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr); |
| 35 | void vgic_v3_clear_lr(struct kvm_vcpu *vcpu, int lr); |
| 36 | void vgic_v3_set_underflow(struct kvm_vcpu *vcpu); |
| 37 | #else |
| 38 | static inline void vgic_v3_process_maintenance(struct kvm_vcpu *vcpu) |
| 39 | { |
| 40 | } |
| 41 | |
| 42 | static inline void vgic_v3_fold_lr_state(struct kvm_vcpu *vcpu) |
| 43 | { |
| 44 | } |
| 45 | |
| 46 | static inline void vgic_v3_populate_lr(struct kvm_vcpu *vcpu, |
| 47 | struct vgic_irq *irq, int lr) |
| 48 | { |
| 49 | } |
| 50 | |
| 51 | static inline void vgic_v3_clear_lr(struct kvm_vcpu *vcpu, int lr) |
| 52 | { |
| 53 | } |
| 54 | |
| 55 | static inline void vgic_v3_set_underflow(struct kvm_vcpu *vcpu) |
| 56 | { |
| 57 | } |
| 58 | #endif |
| 59 | |
Christoffer Dall | 64a959d | 2015-11-24 16:51:12 +0100 | [diff] [blame] | 60 | #endif |