diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2015-10-21 04:57:10 -0400 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2015-12-14 06:30:41 -0500 |
commit | be901e9b15cd2c8e48dc089b4655ea4a076e66fd (patch) | |
tree | 1593b831d97e88e67e1e1b670380b4a45c34a13f /arch/arm64/kvm | |
parent | c1bf6e18e97e7ead77371d4251f8ef1567455584 (diff) |
arm64: KVM: Implement the core world switch
Implement the core of the world switch in C. Not everything is there
yet, and there is nothing to re-enter the world switch either.
But this already outlines the code structure well enough.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
Diffstat (limited to 'arch/arm64/kvm')
-rw-r--r-- | arch/arm64/kvm/hyp/Makefile | 1 | ||||
-rw-r--r-- | arch/arm64/kvm/hyp/switch.c | 135 |
2 files changed, 136 insertions, 0 deletions
diff --git a/arch/arm64/kvm/hyp/Makefile b/arch/arm64/kvm/hyp/Makefile index 1e1ff06348cd..9c11b0fe1646 100644 --- a/arch/arm64/kvm/hyp/Makefile +++ b/arch/arm64/kvm/hyp/Makefile | |||
@@ -8,3 +8,4 @@ obj-$(CONFIG_KVM_ARM_HOST) += timer-sr.o | |||
8 | obj-$(CONFIG_KVM_ARM_HOST) += sysreg-sr.o | 8 | obj-$(CONFIG_KVM_ARM_HOST) += sysreg-sr.o |
9 | obj-$(CONFIG_KVM_ARM_HOST) += debug-sr.o | 9 | obj-$(CONFIG_KVM_ARM_HOST) += debug-sr.o |
10 | obj-$(CONFIG_KVM_ARM_HOST) += entry.o | 10 | obj-$(CONFIG_KVM_ARM_HOST) += entry.o |
11 | obj-$(CONFIG_KVM_ARM_HOST) += switch.o | ||
diff --git a/arch/arm64/kvm/hyp/switch.c b/arch/arm64/kvm/hyp/switch.c new file mode 100644 index 000000000000..79f59c98b148 --- /dev/null +++ b/arch/arm64/kvm/hyp/switch.c | |||
@@ -0,0 +1,135 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2015 - 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 | #include "hyp.h" | ||
19 | |||
20 | static void __hyp_text __activate_traps(struct kvm_vcpu *vcpu) | ||
21 | { | ||
22 | u64 val; | ||
23 | |||
24 | /* | ||
25 | * We are about to set CPTR_EL2.TFP to trap all floating point | ||
26 | * register accesses to EL2, however, the ARM ARM clearly states that | ||
27 | * traps are only taken to EL2 if the operation would not otherwise | ||
28 | * trap to EL1. Therefore, always make sure that for 32-bit guests, | ||
29 | * we set FPEXC.EN to prevent traps to EL1, when setting the TFP bit. | ||
30 | */ | ||
31 | val = vcpu->arch.hcr_el2; | ||
32 | if (!(val & HCR_RW)) { | ||
33 | write_sysreg(1 << 30, fpexc32_el2); | ||
34 | isb(); | ||
35 | } | ||
36 | write_sysreg(val, hcr_el2); | ||
37 | /* Trap on AArch32 cp15 c15 accesses (EL1 or EL0) */ | ||
38 | write_sysreg(1 << 15, hstr_el2); | ||
39 | write_sysreg(CPTR_EL2_TTA | CPTR_EL2_TFP, cptr_el2); | ||
40 | write_sysreg(vcpu->arch.mdcr_el2, mdcr_el2); | ||
41 | } | ||
42 | |||
43 | static void __hyp_text __deactivate_traps(struct kvm_vcpu *vcpu) | ||
44 | { | ||
45 | write_sysreg(HCR_RW, hcr_el2); | ||
46 | write_sysreg(0, hstr_el2); | ||
47 | write_sysreg(read_sysreg(mdcr_el2) & MDCR_EL2_HPMN_MASK, mdcr_el2); | ||
48 | write_sysreg(0, cptr_el2); | ||
49 | } | ||
50 | |||
51 | static void __hyp_text __activate_vm(struct kvm_vcpu *vcpu) | ||
52 | { | ||
53 | struct kvm *kvm = kern_hyp_va(vcpu->kvm); | ||
54 | write_sysreg(kvm->arch.vttbr, vttbr_el2); | ||
55 | } | ||
56 | |||
57 | static void __hyp_text __deactivate_vm(struct kvm_vcpu *vcpu) | ||
58 | { | ||
59 | write_sysreg(0, vttbr_el2); | ||
60 | } | ||
61 | |||
62 | static hyp_alternate_select(__vgic_call_save_state, | ||
63 | __vgic_v2_save_state, __vgic_v3_save_state, | ||
64 | ARM64_HAS_SYSREG_GIC_CPUIF); | ||
65 | |||
66 | static hyp_alternate_select(__vgic_call_restore_state, | ||
67 | __vgic_v2_restore_state, __vgic_v3_restore_state, | ||
68 | ARM64_HAS_SYSREG_GIC_CPUIF); | ||
69 | |||
70 | static void __hyp_text __vgic_save_state(struct kvm_vcpu *vcpu) | ||
71 | { | ||
72 | __vgic_call_save_state()(vcpu); | ||
73 | write_sysreg(read_sysreg(hcr_el2) & ~HCR_INT_OVERRIDE, hcr_el2); | ||
74 | } | ||
75 | |||
76 | static void __hyp_text __vgic_restore_state(struct kvm_vcpu *vcpu) | ||
77 | { | ||
78 | u64 val; | ||
79 | |||
80 | val = read_sysreg(hcr_el2); | ||
81 | val |= HCR_INT_OVERRIDE; | ||
82 | val |= vcpu->arch.irq_lines; | ||
83 | write_sysreg(val, hcr_el2); | ||
84 | |||
85 | __vgic_call_restore_state()(vcpu); | ||
86 | } | ||
87 | |||
88 | int __hyp_text __guest_run(struct kvm_vcpu *vcpu) | ||
89 | { | ||
90 | struct kvm_cpu_context *host_ctxt; | ||
91 | struct kvm_cpu_context *guest_ctxt; | ||
92 | u64 exit_code; | ||
93 | |||
94 | vcpu = kern_hyp_va(vcpu); | ||
95 | write_sysreg(vcpu, tpidr_el2); | ||
96 | |||
97 | host_ctxt = kern_hyp_va(vcpu->arch.host_cpu_context); | ||
98 | guest_ctxt = &vcpu->arch.ctxt; | ||
99 | |||
100 | __sysreg_save_state(host_ctxt); | ||
101 | __debug_cond_save_host_state(vcpu); | ||
102 | |||
103 | __activate_traps(vcpu); | ||
104 | __activate_vm(vcpu); | ||
105 | |||
106 | __vgic_restore_state(vcpu); | ||
107 | __timer_restore_state(vcpu); | ||
108 | |||
109 | /* | ||
110 | * We must restore the 32-bit state before the sysregs, thanks | ||
111 | * to Cortex-A57 erratum #852523. | ||
112 | */ | ||
113 | __sysreg32_restore_state(vcpu); | ||
114 | __sysreg_restore_state(guest_ctxt); | ||
115 | __debug_restore_state(vcpu, kern_hyp_va(vcpu->arch.debug_ptr), guest_ctxt); | ||
116 | |||
117 | /* Jump in the fire! */ | ||
118 | exit_code = __guest_enter(vcpu, host_ctxt); | ||
119 | /* And we're baaack! */ | ||
120 | |||
121 | __sysreg_save_state(guest_ctxt); | ||
122 | __sysreg32_save_state(vcpu); | ||
123 | __timer_save_state(vcpu); | ||
124 | __vgic_save_state(vcpu); | ||
125 | |||
126 | __deactivate_traps(vcpu); | ||
127 | __deactivate_vm(vcpu); | ||
128 | |||
129 | __sysreg_restore_state(host_ctxt); | ||
130 | |||
131 | __debug_save_state(vcpu, kern_hyp_va(vcpu->arch.debug_ptr), guest_ctxt); | ||
132 | __debug_cond_restore_host_state(vcpu); | ||
133 | |||
134 | return exit_code; | ||
135 | } | ||