kvm_asm.h 2.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Copyright (C) 2012,2013 - ARM Ltd
 * Author: Marc Zyngier <marc.zyngier@arm.com>
 *
 * 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 __ARM_KVM_ASM_H__
#define __ARM_KVM_ASM_H__

21 22
#include <asm/virt.h>

23 24 25 26
#define ARM_EXIT_WITH_SERROR_BIT  31
#define ARM_EXCEPTION_CODE(x)	  ((x) & ~(1U << ARM_EXIT_WITH_SERROR_BIT))
#define ARM_SERROR_PENDING(x)	  !!((x) & (1U << ARM_EXIT_WITH_SERROR_BIT))

27
#define ARM_EXCEPTION_IRQ	  0
28 29
#define ARM_EXCEPTION_EL1_SERROR  1
#define ARM_EXCEPTION_TRAP	  2
30
/* The hyp-stub will return this for any kvm_call_hyp() call */
31
#define ARM_EXCEPTION_HYP_GONE	  HVC_STUB_ERR
32

33 34 35
#define KVM_ARM64_DEBUG_DIRTY_SHIFT	0
#define KVM_ARM64_DEBUG_DIRTY		(1 << KVM_ARM64_DEBUG_DIRTY_SHIFT)

36
/* Translate a kernel address of @sym into its equivalent linear mapping */
37 38 39 40 41 42 43
#define kvm_ksym_ref(sym)						\
	({								\
		void *val = &sym;					\
		if (!is_kernel_in_hyp_mode())				\
			val = phys_to_virt((u64)&sym - kimage_voffset);	\
		val;							\
	 })
44

45 46 47 48 49 50 51 52 53 54 55
#ifndef __ASSEMBLY__
struct kvm;
struct kvm_vcpu;

extern char __kvm_hyp_init[];
extern char __kvm_hyp_init_end[];

extern char __kvm_hyp_vector[];

extern void __kvm_flush_vm_context(void);
extern void __kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa);
56
extern void __kvm_tlb_flush_vmid(struct kvm *kvm);
57
extern void __kvm_tlb_flush_local_vmid(struct kvm_vcpu *vcpu);
58

59 60
extern void __kvm_timer_set_cntvoff(u32 cntvoff_low, u32 cntvoff_high);

61 62 63
extern int kvm_vcpu_run_vhe(struct kvm_vcpu *vcpu);

extern int __kvm_vcpu_run_nvhe(struct kvm_vcpu *vcpu);
64

65
extern u64 __vgic_v3_get_ich_vtr_el2(void);
66 67
extern u64 __vgic_v3_read_vmcr(void);
extern void __vgic_v3_write_vmcr(u32 vmcr);
68
extern void __vgic_v3_init_lrs(void);
69

70 71
extern u32 __kvm_get_mdcr_el2(void);

72
extern u32 __init_stage2_translation(void);
73

74 75
extern void __qcom_hyp_sanitize_btac_predictors(void);

76 77 78 79 80 81 82 83 84 85 86 87 88 89
#else /* __ASSEMBLY__ */

.macro get_host_ctxt reg, tmp
	adr_l	\reg, kvm_host_cpu_state
	mrs	\tmp, tpidr_el2
	add	\reg, \reg, \tmp
.endm

.macro get_vcpu_ptr vcpu, ctxt
	get_host_ctxt \ctxt, \vcpu
	ldr	\vcpu, [\ctxt, #HOST_CONTEXT_VCPU]
	kern_hyp_va	\vcpu
.endm

90 91 92
#endif

#endif /* __ARM_KVM_ASM_H__ */