Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012,2013 - ARM Ltd |
| 3 | * Author: Marc Zyngier <marc.zyngier@arm.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ |
| 17 | |
| 18 | #ifndef __ARM_KVM_ASM_H__ |
| 19 | #define __ARM_KVM_ASM_H__ |
| 20 | |
Marc Zyngier | 45451914 | 2013-06-26 15:16:40 +0100 | [diff] [blame] | 21 | #include <asm/virt.h> |
| 22 | |
Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 23 | #define ARM_EXCEPTION_IRQ 0 |
| 24 | #define ARM_EXCEPTION_TRAP 1 |
| 25 | |
Marc Zyngier | 0c557ed | 2014-04-24 10:24:46 +0100 | [diff] [blame] | 26 | #define KVM_ARM64_DEBUG_DIRTY_SHIFT 0 |
| 27 | #define KVM_ARM64_DEBUG_DIRTY (1 << KVM_ARM64_DEBUG_DIRTY_SHIFT) |
| 28 | |
Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 29 | #ifndef __ASSEMBLY__ |
| 30 | struct kvm; |
| 31 | struct kvm_vcpu; |
| 32 | |
| 33 | extern char __kvm_hyp_init[]; |
| 34 | extern char __kvm_hyp_init_end[]; |
| 35 | |
| 36 | extern char __kvm_hyp_vector[]; |
| 37 | |
Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 38 | extern void __kvm_flush_vm_context(void); |
| 39 | extern void __kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa); |
Mario Smarduch | 8199ed0 | 2015-01-15 15:58:59 -0800 | [diff] [blame] | 40 | extern void __kvm_tlb_flush_vmid(struct kvm *kvm); |
Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 41 | |
| 42 | extern int __kvm_vcpu_run(struct kvm_vcpu *vcpu); |
Marc Zyngier | 1a9b130 | 2013-06-21 11:57:56 +0100 | [diff] [blame] | 43 | |
Marc Zyngier | b2fb1c0 | 2013-07-12 15:15:23 +0100 | [diff] [blame] | 44 | extern u64 __vgic_v3_get_ich_vtr_el2(void); |
| 45 | |
Alex Bennée | 56c7f5e | 2015-07-07 17:29:56 +0100 | [diff] [blame] | 46 | extern u32 __kvm_get_mdcr_el2(void); |
| 47 | |
Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 48 | #endif |
| 49 | |
| 50 | #endif /* __ARM_KVM_ASM_H__ */ |