blob: f6648a3e4152c3cd95652563d3003abc090795df [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 Zyngier454519142013-06-26 15:16:40 +010021#include <asm/virt.h>
22
Marc Zyngier20163402016-09-06 14:02:05 +010023#define ARM_EXIT_WITH_SERROR_BIT 31
24#define ARM_EXCEPTION_CODE(x) ((x) & ~(1U << ARM_EXIT_WITH_SERROR_BIT))
25#define ARM_SERROR_PENDING(x) !!((x) & (1U << ARM_EXIT_WITH_SERROR_BIT))
26
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +000027#define ARM_EXCEPTION_IRQ 0
Marc Zyngier9aecafc2016-09-06 14:02:02 +010028#define ARM_EXCEPTION_EL1_SERROR 1
29#define ARM_EXCEPTION_TRAP 2
James Morsec94b0cf2016-04-27 17:47:04 +010030/* The hyp-stub will return this for any kvm_call_hyp() call */
Marc Zyngier4993fdc2017-04-03 19:37:37 +010031#define ARM_EXCEPTION_HYP_GONE HVC_STUB_ERR
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +000032
Marc Zyngier0c557ed2014-04-24 10:24:46 +010033#define KVM_ARM64_DEBUG_DIRTY_SHIFT 0
34#define KVM_ARM64_DEBUG_DIRTY (1 << KVM_ARM64_DEBUG_DIRTY_SHIFT)
35
Christoffer Dall4464e212017-10-08 17:01:56 +020036/* Translate a kernel address of @sym into its equivalent linear mapping */
Marc Zyngier2510ffe2016-03-18 17:25:59 +000037#define kvm_ksym_ref(sym) \
38 ({ \
39 void *val = &sym; \
40 if (!is_kernel_in_hyp_mode()) \
41 val = phys_to_virt((u64)&sym - kimage_voffset); \
42 val; \
43 })
Ard Biesheuvela0bf9772016-02-16 13:52:39 +010044
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +000045#ifndef __ASSEMBLY__
46struct kvm;
47struct kvm_vcpu;
48
49extern char __kvm_hyp_init[];
50extern char __kvm_hyp_init_end[];
51
52extern char __kvm_hyp_vector[];
53
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +000054extern void __kvm_flush_vm_context(void);
55extern void __kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa);
Mario Smarduch8199ed02015-01-15 15:58:59 -080056extern void __kvm_tlb_flush_vmid(struct kvm *kvm);
Marc Zyngier94d0e592016-10-18 18:37:49 +010057extern void __kvm_tlb_flush_local_vmid(struct kvm_vcpu *vcpu);
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +000058
Christoffer Dall688c50a2017-01-04 16:10:28 +010059extern void __kvm_timer_set_cntvoff(u32 cntvoff_low, u32 cntvoff_high);
60
Christoffer Dall3f5c90b2017-10-03 14:02:12 +020061extern int kvm_vcpu_run_vhe(struct kvm_vcpu *vcpu);
62
63extern int __kvm_vcpu_run_nvhe(struct kvm_vcpu *vcpu);
Marc Zyngier1a9b1302013-06-21 11:57:56 +010064
Marc Zyngierb2fb1c02013-07-12 15:15:23 +010065extern u64 __vgic_v3_get_ich_vtr_el2(void);
Christoffer Dall328e5662016-03-24 11:21:04 +010066extern u64 __vgic_v3_read_vmcr(void);
67extern void __vgic_v3_write_vmcr(u32 vmcr);
Marc Zyngier0d98d002016-03-03 15:43:58 +000068extern void __vgic_v3_init_lrs(void);
Marc Zyngierb2fb1c02013-07-12 15:15:23 +010069
Alex Bennée56c7f5e2015-07-07 17:29:56 +010070extern u32 __kvm_get_mdcr_el2(void);
71
Marc Zyngier61415702016-04-05 16:11:47 +010072extern u32 __init_stage2_translation(void);
Marc Zyngier3a3604b2015-01-29 13:19:45 +000073
Christoffer Dall4464e212017-10-08 17:01:56 +020074#else /* __ASSEMBLY__ */
75
76.macro get_host_ctxt reg, tmp
77 adr_l \reg, kvm_host_cpu_state
78 mrs \tmp, tpidr_el2
79 add \reg, \reg, \tmp
80.endm
81
82.macro get_vcpu_ptr vcpu, ctxt
83 get_host_ctxt \ctxt, \vcpu
84 ldr \vcpu, [\ctxt, #HOST_CONTEXT_VCPU]
85 kern_hyp_va \vcpu
86.endm
87
Marc Zyngierfd9fc9f2012-12-10 11:16:40 +000088#endif
89
90#endif /* __ARM_KVM_ASM_H__ */