| /* |
| * 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); |
| |
| #endif |