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 | |
Catalin Marinas | 38500be | 2018-06-02 10:42:54 +0100 | [diff] [blame] | 23 | #define VCPU_WORKAROUND_2_FLAG_SHIFT 0 |
| 24 | #define VCPU_WORKAROUND_2_FLAG (_AC(1, UL) << VCPU_WORKAROUND_2_FLAG_SHIFT) |
| 25 | |
Marc Zyngier | 2016340 | 2016-09-06 14:02:05 +0100 | [diff] [blame] | 26 | #define ARM_EXIT_WITH_SERROR_BIT 31 |
| 27 | #define ARM_EXCEPTION_CODE(x) ((x) & ~(1U << ARM_EXIT_WITH_SERROR_BIT)) |
| 28 | #define ARM_SERROR_PENDING(x) !!((x) & (1U << ARM_EXIT_WITH_SERROR_BIT)) |
| 29 | |
Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 30 | #define ARM_EXCEPTION_IRQ 0 |
Marc Zyngier | 9aecafc | 2016-09-06 14:02:02 +0100 | [diff] [blame] | 31 | #define ARM_EXCEPTION_EL1_SERROR 1 |
| 32 | #define ARM_EXCEPTION_TRAP 2 |
James Morse | c94b0cf | 2016-04-27 17:47:04 +0100 | [diff] [blame] | 33 | /* The hyp-stub will return this for any kvm_call_hyp() call */ |
Marc Zyngier | 4993fdc | 2017-04-03 19:37:37 +0100 | [diff] [blame] | 34 | #define ARM_EXCEPTION_HYP_GONE HVC_STUB_ERR |
Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 35 | |
Marc Zyngier | 0c557ed | 2014-04-24 10:24:46 +0100 | [diff] [blame] | 36 | #define KVM_ARM64_DEBUG_DIRTY_SHIFT 0 |
| 37 | #define KVM_ARM64_DEBUG_DIRTY (1 << KVM_ARM64_DEBUG_DIRTY_SHIFT) |
| 38 | |
Christoffer Dall | 4464e21 | 2017-10-08 17:01:56 +0200 | [diff] [blame] | 39 | /* Translate a kernel address of @sym into its equivalent linear mapping */ |
Marc Zyngier | 2510ffe | 2016-03-18 17:25:59 +0000 | [diff] [blame] | 40 | #define kvm_ksym_ref(sym) \ |
| 41 | ({ \ |
| 42 | void *val = &sym; \ |
| 43 | if (!is_kernel_in_hyp_mode()) \ |
| 44 | val = phys_to_virt((u64)&sym - kimage_voffset); \ |
| 45 | val; \ |
| 46 | }) |
Ard Biesheuvel | a0bf977 | 2016-02-16 13:52:39 +0100 | [diff] [blame] | 47 | |
Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 48 | #ifndef __ASSEMBLY__ |
| 49 | struct kvm; |
| 50 | struct kvm_vcpu; |
| 51 | |
| 52 | extern char __kvm_hyp_init[]; |
| 53 | extern char __kvm_hyp_init_end[]; |
| 54 | |
| 55 | extern char __kvm_hyp_vector[]; |
| 56 | |
Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 57 | extern void __kvm_flush_vm_context(void); |
| 58 | 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] | 59 | extern void __kvm_tlb_flush_vmid(struct kvm *kvm); |
Marc Zyngier | 94d0e59 | 2016-10-18 18:37:49 +0100 | [diff] [blame] | 60 | extern void __kvm_tlb_flush_local_vmid(struct kvm_vcpu *vcpu); |
Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 61 | |
Christoffer Dall | 688c50a | 2017-01-04 16:10:28 +0100 | [diff] [blame] | 62 | extern void __kvm_timer_set_cntvoff(u32 cntvoff_low, u32 cntvoff_high); |
| 63 | |
Christoffer Dall | 3f5c90b | 2017-10-03 14:02:12 +0200 | [diff] [blame] | 64 | extern int kvm_vcpu_run_vhe(struct kvm_vcpu *vcpu); |
| 65 | |
| 66 | extern int __kvm_vcpu_run_nvhe(struct kvm_vcpu *vcpu); |
Marc Zyngier | 1a9b130 | 2013-06-21 11:57:56 +0100 | [diff] [blame] | 67 | |
Marc Zyngier | b2fb1c0 | 2013-07-12 15:15:23 +0100 | [diff] [blame] | 68 | extern u64 __vgic_v3_get_ich_vtr_el2(void); |
Christoffer Dall | 328e566 | 2016-03-24 11:21:04 +0100 | [diff] [blame] | 69 | extern u64 __vgic_v3_read_vmcr(void); |
| 70 | extern void __vgic_v3_write_vmcr(u32 vmcr); |
Marc Zyngier | 0d98d00 | 2016-03-03 15:43:58 +0000 | [diff] [blame] | 71 | extern void __vgic_v3_init_lrs(void); |
Marc Zyngier | b2fb1c0 | 2013-07-12 15:15:23 +0100 | [diff] [blame] | 72 | |
Alex Bennée | 56c7f5e | 2015-07-07 17:29:56 +0100 | [diff] [blame] | 73 | extern u32 __kvm_get_mdcr_el2(void); |
| 74 | |
Marc Zyngier | 6141570 | 2016-04-05 16:11:47 +0100 | [diff] [blame] | 75 | extern u32 __init_stage2_translation(void); |
Marc Zyngier | 3a3604b | 2015-01-29 13:19:45 +0000 | [diff] [blame] | 76 | |
Marc Zyngier | 85478ba | 2018-05-29 13:11:15 +0100 | [diff] [blame] | 77 | /* Home-grown __this_cpu_{ptr,read} variants that always work at HYP */ |
| 78 | #define __hyp_this_cpu_ptr(sym) \ |
| 79 | ({ \ |
| 80 | void *__ptr = hyp_symbol_addr(sym); \ |
| 81 | __ptr += read_sysreg(tpidr_el2); \ |
| 82 | (typeof(&sym))__ptr; \ |
| 83 | }) |
| 84 | |
| 85 | #define __hyp_this_cpu_read(sym) \ |
| 86 | ({ \ |
| 87 | *__hyp_this_cpu_ptr(sym); \ |
| 88 | }) |
| 89 | |
Christoffer Dall | 4464e21 | 2017-10-08 17:01:56 +0200 | [diff] [blame] | 90 | #else /* __ASSEMBLY__ */ |
| 91 | |
Marc Zyngier | 85478ba | 2018-05-29 13:11:15 +0100 | [diff] [blame] | 92 | .macro hyp_adr_this_cpu reg, sym, tmp |
| 93 | adr_l \reg, \sym |
Christoffer Dall | 4464e21 | 2017-10-08 17:01:56 +0200 | [diff] [blame] | 94 | mrs \tmp, tpidr_el2 |
| 95 | add \reg, \reg, \tmp |
| 96 | .endm |
| 97 | |
Marc Zyngier | 85478ba | 2018-05-29 13:11:15 +0100 | [diff] [blame] | 98 | .macro hyp_ldr_this_cpu reg, sym, tmp |
| 99 | adr_l \reg, \sym |
| 100 | mrs \tmp, tpidr_el2 |
| 101 | ldr \reg, [\reg, \tmp] |
| 102 | .endm |
| 103 | |
| 104 | .macro get_host_ctxt reg, tmp |
| 105 | hyp_adr_this_cpu \reg, kvm_host_cpu_state, \tmp |
| 106 | .endm |
| 107 | |
Christoffer Dall | 4464e21 | 2017-10-08 17:01:56 +0200 | [diff] [blame] | 108 | .macro get_vcpu_ptr vcpu, ctxt |
| 109 | get_host_ctxt \ctxt, \vcpu |
| 110 | ldr \vcpu, [\ctxt, #HOST_CONTEXT_VCPU] |
| 111 | kern_hyp_va \vcpu |
| 112 | .endm |
| 113 | |
Marc Zyngier | fd9fc9f | 2012-12-10 11:16:40 +0000 | [diff] [blame] | 114 | #endif |
| 115 | |
| 116 | #endif /* __ARM_KVM_ASM_H__ */ |