blob: eb7490d232a0f39328c42fd646de8b5548feb178 [file] [log] [blame]
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +00001/*
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 Zyngier45451912013-06-26 15:16:40 +010021#include <asm/virt.h>
22
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +000023#define ARM_EXCEPTION_IRQ 0
24#define ARM_EXCEPTION_TRAP 1
25
Marc Zyngier0c557ed2014-04-24 10:24:46 +010026#define KVM_ARM64_DEBUG_DIRTY_SHIFT 0
27#define KVM_ARM64_DEBUG_DIRTY (1 << KVM_ARM64_DEBUG_DIRTY_SHIFT)
28
Marc Zyngier2510ffe2016-03-18 17:25:59 +000029#define kvm_ksym_ref(sym) \
30 ({ \
31 void *val = &sym; \
32 if (!is_kernel_in_hyp_mode()) \
33 val = phys_to_virt((u64)&sym - kimage_voffset); \
34 val; \
35 })
Ard Biesheuvela0bf9772016-02-16 13:52:39 +010036
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +000037#ifndef __ASSEMBLY__
38struct kvm;
39struct kvm_vcpu;
40
41extern char __kvm_hyp_init[];
42extern char __kvm_hyp_init_end[];
43
44extern char __kvm_hyp_vector[];
45
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +000046extern void __kvm_flush_vm_context(void);
47extern void __kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa);
Mario Smarduch8199ed02015-01-15 15:58:59 -080048extern void __kvm_tlb_flush_vmid(struct kvm *kvm);
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +000049
50extern int __kvm_vcpu_run(struct kvm_vcpu *vcpu);
Marc Zyngier1a9b1302013-06-21 11:57:56 +010051
Marc Zyngierb2fb1c02013-07-12 15:15:23 +010052extern u64 __vgic_v3_get_ich_vtr_el2(void);
Marc Zyngier0d98d002016-03-03 15:43:58 +000053extern void __vgic_v3_init_lrs(void);
Marc Zyngierb2fb1c02013-07-12 15:15:23 +010054
Alex Bennée56c7f5e2015-07-07 17:29:56 +010055extern u32 __kvm_get_mdcr_el2(void);
56
Marc Zyngier3a3604b2015-01-29 13:19:45 +000057extern void __init_stage2_translation(void);
58
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +000059#endif
60
61#endif /* __ARM_KVM_ASM_H__ */