blob: 37c89ea2c572ed858c0425344b45e0897a89b74f [file] [log] [blame]
Marc Zyngier55c74012012-12-10 16:40:18 +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#include <linux/linkage.h>
Marc Zyngier55c74012012-12-10 16:40:18 +000019
Marc Zyngier8a148492015-06-12 12:06:37 +010020#include <asm/alternative.h>
Marc Zyngier55c74012012-12-10 16:40:18 +000021#include <asm/asm-offsets.h>
Mark Rutlandc6d01a92014-11-24 13:59:30 +000022#include <asm/assembler.h>
Marc Zyngier8a148492015-06-12 12:06:37 +010023#include <asm/cpufeature.h>
Marc Zyngierb0e626b2014-05-07 13:44:49 +010024#include <asm/debug-monitors.h>
Mark Rutlandc6d01a92014-11-24 13:59:30 +000025#include <asm/esr.h>
Marc Zyngier55c74012012-12-10 16:40:18 +000026#include <asm/fpsimdmacros.h>
27#include <asm/kvm.h>
Marc Zyngier55c74012012-12-10 16:40:18 +000028#include <asm/kvm_arm.h>
Mark Rutlandc6d01a92014-11-24 13:59:30 +000029#include <asm/kvm_asm.h>
Marc Zyngier55c74012012-12-10 16:40:18 +000030#include <asm/kvm_mmu.h>
Mark Rutlandc6d01a92014-11-24 13:59:30 +000031#include <asm/memory.h>
Marc Zyngier55c74012012-12-10 16:40:18 +000032
33#define CPU_GP_REG_OFFSET(x) (CPU_GP_REGS + x)
34#define CPU_XREG_OFFSET(x) CPU_GP_REG_OFFSET(CPU_USER_PT_REGS + 8*x)
35#define CPU_SPSR_OFFSET(x) CPU_GP_REG_OFFSET(CPU_SPSR + 8*x)
36#define CPU_SYSREG_OFFSET(x) (CPU_SYSREGS + 8*x)
37
38 .text
39 .pushsection .hyp.text, "ax"
40 .align PAGE_SHIFT
41
Marc Zyngier55c74012012-12-10 16:40:18 +000042.macro save_common_regs
43 // x2: base address for cpu context
44 // x3: tmp register
45
46 add x3, x2, #CPU_XREG_OFFSET(19)
47 stp x19, x20, [x3]
48 stp x21, x22, [x3, #16]
49 stp x23, x24, [x3, #32]
50 stp x25, x26, [x3, #48]
51 stp x27, x28, [x3, #64]
52 stp x29, lr, [x3, #80]
53
54 mrs x19, sp_el0
Alex Bennée921ef1e2015-06-04 14:28:37 +010055 mrs x20, elr_el2 // pc before entering el2
56 mrs x21, spsr_el2 // pstate before entering el2
Marc Zyngier55c74012012-12-10 16:40:18 +000057
58 stp x19, x20, [x3, #96]
59 str x21, [x3, #112]
60
61 mrs x22, sp_el1
62 mrs x23, elr_el1
63 mrs x24, spsr_el1
64
65 str x22, [x2, #CPU_GP_REG_OFFSET(CPU_SP_EL1)]
66 str x23, [x2, #CPU_GP_REG_OFFSET(CPU_ELR_EL1)]
67 str x24, [x2, #CPU_SPSR_OFFSET(KVM_SPSR_EL1)]
68.endm
69
70.macro restore_common_regs
71 // x2: base address for cpu context
72 // x3: tmp register
73
74 ldr x22, [x2, #CPU_GP_REG_OFFSET(CPU_SP_EL1)]
75 ldr x23, [x2, #CPU_GP_REG_OFFSET(CPU_ELR_EL1)]
76 ldr x24, [x2, #CPU_SPSR_OFFSET(KVM_SPSR_EL1)]
77
78 msr sp_el1, x22
79 msr elr_el1, x23
80 msr spsr_el1, x24
81
82 add x3, x2, #CPU_XREG_OFFSET(31) // SP_EL0
83 ldp x19, x20, [x3]
84 ldr x21, [x3, #16]
85
86 msr sp_el0, x19
Alex Bennée921ef1e2015-06-04 14:28:37 +010087 msr elr_el2, x20 // pc on return from el2
88 msr spsr_el2, x21 // pstate on return from el2
Marc Zyngier55c74012012-12-10 16:40:18 +000089
90 add x3, x2, #CPU_XREG_OFFSET(19)
91 ldp x19, x20, [x3]
92 ldp x21, x22, [x3, #16]
93 ldp x23, x24, [x3, #32]
94 ldp x25, x26, [x3, #48]
95 ldp x27, x28, [x3, #64]
96 ldp x29, lr, [x3, #80]
97.endm
98
99.macro save_host_regs
100 save_common_regs
101.endm
102
103.macro restore_host_regs
104 restore_common_regs
105.endm
106
107.macro save_fpsimd
108 // x2: cpu context address
109 // x3, x4: tmp regs
110 add x3, x2, #CPU_GP_REG_OFFSET(CPU_FP_REGS)
111 fpsimd_save x3, 4
112.endm
113
114.macro restore_fpsimd
115 // x2: cpu context address
116 // x3, x4: tmp regs
117 add x3, x2, #CPU_GP_REG_OFFSET(CPU_FP_REGS)
118 fpsimd_restore x3, 4
119.endm
120
121.macro save_guest_regs
122 // x0 is the vcpu address
123 // x1 is the return code, do not corrupt!
124 // x2 is the cpu context
125 // x3 is a tmp register
126 // Guest's x0-x3 are on the stack
127
128 // Compute base to save registers
129 add x3, x2, #CPU_XREG_OFFSET(4)
130 stp x4, x5, [x3]
131 stp x6, x7, [x3, #16]
132 stp x8, x9, [x3, #32]
133 stp x10, x11, [x3, #48]
134 stp x12, x13, [x3, #64]
135 stp x14, x15, [x3, #80]
136 stp x16, x17, [x3, #96]
137 str x18, [x3, #112]
138
139 pop x6, x7 // x2, x3
140 pop x4, x5 // x0, x1
141
142 add x3, x2, #CPU_XREG_OFFSET(0)
143 stp x4, x5, [x3]
144 stp x6, x7, [x3, #16]
145
146 save_common_regs
147.endm
148
149.macro restore_guest_regs
150 // x0 is the vcpu address.
151 // x2 is the cpu context
152 // x3 is a tmp register
153
154 // Prepare x0-x3 for later restore
155 add x3, x2, #CPU_XREG_OFFSET(0)
156 ldp x4, x5, [x3]
157 ldp x6, x7, [x3, #16]
158 push x4, x5 // Push x0-x3 on the stack
159 push x6, x7
160
161 // x4-x18
162 ldp x4, x5, [x3, #32]
163 ldp x6, x7, [x3, #48]
164 ldp x8, x9, [x3, #64]
165 ldp x10, x11, [x3, #80]
166 ldp x12, x13, [x3, #96]
167 ldp x14, x15, [x3, #112]
168 ldp x16, x17, [x3, #128]
169 ldr x18, [x3, #144]
170
171 // x19-x29, lr, sp*, elr*, spsr*
172 restore_common_regs
173
174 // Last bits of the 64bit state
175 pop x2, x3
176 pop x0, x1
177
178 // Do not touch any register after this!
179.endm
180
181/*
182 * Macros to perform system register save/restore.
183 *
184 * Ordering here is absolutely critical, and must be kept consistent
185 * in {save,restore}_sysregs, {save,restore}_guest_32bit_state,
186 * and in kvm_asm.h.
187 *
188 * In other words, don't touch any of these unless you know what
189 * you are doing.
190 */
191.macro save_sysregs
192 // x2: base address for cpu context
193 // x3: tmp register
194
195 add x3, x2, #CPU_SYSREG_OFFSET(MPIDR_EL1)
196
197 mrs x4, vmpidr_el2
198 mrs x5, csselr_el1
199 mrs x6, sctlr_el1
200 mrs x7, actlr_el1
201 mrs x8, cpacr_el1
202 mrs x9, ttbr0_el1
203 mrs x10, ttbr1_el1
204 mrs x11, tcr_el1
205 mrs x12, esr_el1
206 mrs x13, afsr0_el1
207 mrs x14, afsr1_el1
208 mrs x15, far_el1
209 mrs x16, mair_el1
210 mrs x17, vbar_el1
211 mrs x18, contextidr_el1
212 mrs x19, tpidr_el0
213 mrs x20, tpidrro_el0
214 mrs x21, tpidr_el1
215 mrs x22, amair_el1
216 mrs x23, cntkctl_el1
Marc Zyngier1bbd8052013-06-07 11:02:34 +0100217 mrs x24, par_el1
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100218 mrs x25, mdscr_el1
Marc Zyngier55c74012012-12-10 16:40:18 +0000219
220 stp x4, x5, [x3]
221 stp x6, x7, [x3, #16]
222 stp x8, x9, [x3, #32]
223 stp x10, x11, [x3, #48]
224 stp x12, x13, [x3, #64]
225 stp x14, x15, [x3, #80]
226 stp x16, x17, [x3, #96]
227 stp x18, x19, [x3, #112]
228 stp x20, x21, [x3, #128]
229 stp x22, x23, [x3, #144]
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100230 stp x24, x25, [x3, #160]
231.endm
232
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100233.macro save_debug type
234 // x4: pointer to register set
235 // x5: number of registers to skip
236 // x6..x22 trashed
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100237
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100238 adr x22, 1f
239 add x22, x22, x5, lsl #2
240 br x22
Marc Zyngierb0e626b2014-05-07 13:44:49 +01002411:
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100242 mrs x21, \type\()15_el1
243 mrs x20, \type\()14_el1
244 mrs x19, \type\()13_el1
245 mrs x18, \type\()12_el1
246 mrs x17, \type\()11_el1
247 mrs x16, \type\()10_el1
248 mrs x15, \type\()9_el1
249 mrs x14, \type\()8_el1
250 mrs x13, \type\()7_el1
251 mrs x12, \type\()6_el1
252 mrs x11, \type\()5_el1
253 mrs x10, \type\()4_el1
254 mrs x9, \type\()3_el1
255 mrs x8, \type\()2_el1
256 mrs x7, \type\()1_el1
257 mrs x6, \type\()0_el1
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100258
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100259 adr x22, 1f
260 add x22, x22, x5, lsl #2
261 br x22
Marc Zyngierb0e626b2014-05-07 13:44:49 +01002621:
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100263 str x21, [x4, #(15 * 8)]
264 str x20, [x4, #(14 * 8)]
265 str x19, [x4, #(13 * 8)]
266 str x18, [x4, #(12 * 8)]
267 str x17, [x4, #(11 * 8)]
268 str x16, [x4, #(10 * 8)]
269 str x15, [x4, #(9 * 8)]
270 str x14, [x4, #(8 * 8)]
271 str x13, [x4, #(7 * 8)]
272 str x12, [x4, #(6 * 8)]
273 str x11, [x4, #(5 * 8)]
274 str x10, [x4, #(4 * 8)]
275 str x9, [x4, #(3 * 8)]
276 str x8, [x4, #(2 * 8)]
277 str x7, [x4, #(1 * 8)]
278 str x6, [x4, #(0 * 8)]
Marc Zyngier55c74012012-12-10 16:40:18 +0000279.endm
280
281.macro restore_sysregs
282 // x2: base address for cpu context
283 // x3: tmp register
284
285 add x3, x2, #CPU_SYSREG_OFFSET(MPIDR_EL1)
286
287 ldp x4, x5, [x3]
288 ldp x6, x7, [x3, #16]
289 ldp x8, x9, [x3, #32]
290 ldp x10, x11, [x3, #48]
291 ldp x12, x13, [x3, #64]
292 ldp x14, x15, [x3, #80]
293 ldp x16, x17, [x3, #96]
294 ldp x18, x19, [x3, #112]
295 ldp x20, x21, [x3, #128]
296 ldp x22, x23, [x3, #144]
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100297 ldp x24, x25, [x3, #160]
Marc Zyngier55c74012012-12-10 16:40:18 +0000298
299 msr vmpidr_el2, x4
300 msr csselr_el1, x5
301 msr sctlr_el1, x6
302 msr actlr_el1, x7
303 msr cpacr_el1, x8
304 msr ttbr0_el1, x9
305 msr ttbr1_el1, x10
306 msr tcr_el1, x11
307 msr esr_el1, x12
308 msr afsr0_el1, x13
309 msr afsr1_el1, x14
310 msr far_el1, x15
311 msr mair_el1, x16
312 msr vbar_el1, x17
313 msr contextidr_el1, x18
314 msr tpidr_el0, x19
315 msr tpidrro_el0, x20
316 msr tpidr_el1, x21
317 msr amair_el1, x22
318 msr cntkctl_el1, x23
Marc Zyngier1bbd8052013-06-07 11:02:34 +0100319 msr par_el1, x24
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100320 msr mdscr_el1, x25
321.endm
322
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100323.macro restore_debug type
324 // x4: pointer to register set
325 // x5: number of registers to skip
326 // x6..x22 trashed
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100327
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100328 adr x22, 1f
329 add x22, x22, x5, lsl #2
330 br x22
Marc Zyngierb0e626b2014-05-07 13:44:49 +01003311:
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100332 ldr x21, [x4, #(15 * 8)]
333 ldr x20, [x4, #(14 * 8)]
334 ldr x19, [x4, #(13 * 8)]
335 ldr x18, [x4, #(12 * 8)]
336 ldr x17, [x4, #(11 * 8)]
337 ldr x16, [x4, #(10 * 8)]
338 ldr x15, [x4, #(9 * 8)]
339 ldr x14, [x4, #(8 * 8)]
340 ldr x13, [x4, #(7 * 8)]
341 ldr x12, [x4, #(6 * 8)]
342 ldr x11, [x4, #(5 * 8)]
343 ldr x10, [x4, #(4 * 8)]
344 ldr x9, [x4, #(3 * 8)]
345 ldr x8, [x4, #(2 * 8)]
346 ldr x7, [x4, #(1 * 8)]
347 ldr x6, [x4, #(0 * 8)]
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100348
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100349 adr x22, 1f
350 add x22, x22, x5, lsl #2
351 br x22
Marc Zyngierb0e626b2014-05-07 13:44:49 +01003521:
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100353 msr \type\()15_el1, x21
354 msr \type\()14_el1, x20
355 msr \type\()13_el1, x19
356 msr \type\()12_el1, x18
357 msr \type\()11_el1, x17
358 msr \type\()10_el1, x16
359 msr \type\()9_el1, x15
360 msr \type\()8_el1, x14
361 msr \type\()7_el1, x13
362 msr \type\()6_el1, x12
363 msr \type\()5_el1, x11
364 msr \type\()4_el1, x10
365 msr \type\()3_el1, x9
366 msr \type\()2_el1, x8
367 msr \type\()1_el1, x7
368 msr \type\()0_el1, x6
Marc Zyngier55c74012012-12-10 16:40:18 +0000369.endm
370
Marc Zyngierb4afad02013-02-07 10:52:10 +0000371.macro skip_32bit_state tmp, target
372 // Skip 32bit state if not needed
373 mrs \tmp, hcr_el2
374 tbnz \tmp, #HCR_RW_SHIFT, \target
375.endm
376
377.macro skip_tee_state tmp, target
378 // Skip ThumbEE state if not needed
379 mrs \tmp, id_pfr0_el1
380 tbz \tmp, #12, \target
381.endm
382
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100383.macro skip_debug_state tmp, target
384 ldr \tmp, [x0, #VCPU_DEBUG_FLAGS]
385 tbz \tmp, #KVM_ARM64_DEBUG_DIRTY_SHIFT, \target
386.endm
387
Mario Smarduch33c76a02015-07-16 22:29:37 +0100388/*
389 * Branch to target if CPTR_EL2.TFP bit is set (VFP/SIMD trapping enabled)
390 */
391.macro skip_fpsimd_state tmp, target
392 mrs \tmp, cptr_el2
393 tbnz \tmp, #CPTR_EL2_TFP_SHIFT, \target
394.endm
395
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100396.macro compute_debug_state target
397 // Compute debug state: If any of KDE, MDE or KVM_ARM64_DEBUG_DIRTY
398 // is set, we do a full save/restore cycle and disable trapping.
399 add x25, x0, #VCPU_CONTEXT
400
401 // Check the state of MDSCR_EL1
402 ldr x25, [x25, #CPU_SYSREG_OFFSET(MDSCR_EL1)]
403 and x26, x25, #DBG_MDSCR_KDE
404 and x25, x25, #DBG_MDSCR_MDE
405 adds xzr, x25, x26
406 b.eq 9998f // Nothing to see there
407
408 // If any interesting bits was set, we must set the flag
409 mov x26, #KVM_ARM64_DEBUG_DIRTY
410 str x26, [x0, #VCPU_DEBUG_FLAGS]
411 b 9999f // Don't skip restore
412
4139998:
414 // Otherwise load the flags from memory in case we recently
415 // trapped
416 skip_debug_state x25, \target
4179999:
418.endm
419
Marc Zyngierb4afad02013-02-07 10:52:10 +0000420.macro save_guest_32bit_state
421 skip_32bit_state x3, 1f
422
423 add x3, x2, #CPU_SPSR_OFFSET(KVM_SPSR_ABT)
424 mrs x4, spsr_abt
425 mrs x5, spsr_und
426 mrs x6, spsr_irq
427 mrs x7, spsr_fiq
428 stp x4, x5, [x3]
429 stp x6, x7, [x3, #16]
430
431 add x3, x2, #CPU_SYSREG_OFFSET(DACR32_EL2)
432 mrs x4, dacr32_el2
433 mrs x5, ifsr32_el2
Marc Zyngierb4afad02013-02-07 10:52:10 +0000434 stp x4, x5, [x3]
Marc Zyngierb4afad02013-02-07 10:52:10 +0000435
Mario Smarduch33c76a02015-07-16 22:29:37 +0100436 skip_fpsimd_state x8, 3f
437 mrs x6, fpexc32_el2
438 str x6, [x3, #16]
4393:
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100440 skip_debug_state x8, 2f
441 mrs x7, dbgvcr32_el2
442 str x7, [x3, #24]
4432:
Marc Zyngierb4afad02013-02-07 10:52:10 +0000444 skip_tee_state x8, 1f
445
446 add x3, x2, #CPU_SYSREG_OFFSET(TEECR32_EL1)
447 mrs x4, teecr32_el1
448 mrs x5, teehbr32_el1
449 stp x4, x5, [x3]
4501:
451.endm
452
453.macro restore_guest_32bit_state
454 skip_32bit_state x3, 1f
455
456 add x3, x2, #CPU_SPSR_OFFSET(KVM_SPSR_ABT)
457 ldp x4, x5, [x3]
458 ldp x6, x7, [x3, #16]
459 msr spsr_abt, x4
460 msr spsr_und, x5
461 msr spsr_irq, x6
462 msr spsr_fiq, x7
463
464 add x3, x2, #CPU_SYSREG_OFFSET(DACR32_EL2)
465 ldp x4, x5, [x3]
Marc Zyngierb4afad02013-02-07 10:52:10 +0000466 msr dacr32_el2, x4
467 msr ifsr32_el2, x5
Marc Zyngierb4afad02013-02-07 10:52:10 +0000468
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100469 skip_debug_state x8, 2f
470 ldr x7, [x3, #24]
471 msr dbgvcr32_el2, x7
4722:
Marc Zyngierb4afad02013-02-07 10:52:10 +0000473 skip_tee_state x8, 1f
474
475 add x3, x2, #CPU_SYSREG_OFFSET(TEECR32_EL1)
476 ldp x4, x5, [x3]
477 msr teecr32_el1, x4
478 msr teehbr32_el1, x5
4791:
480.endm
481
Marc Zyngier55c74012012-12-10 16:40:18 +0000482.macro activate_traps
Marc Zyngierac3c3742013-08-09 18:19:11 +0100483 ldr x2, [x0, #VCPU_HCR_EL2]
Mario Smarduch33c76a02015-07-16 22:29:37 +0100484
485 /*
486 * We are about to set CPTR_EL2.TFP to trap all floating point
487 * register accesses to EL2, however, the ARM ARM clearly states that
488 * traps are only taken to EL2 if the operation would not otherwise
489 * trap to EL1. Therefore, always make sure that for 32-bit guests,
490 * we set FPEXC.EN to prevent traps to EL1, when setting the TFP bit.
491 */
492 tbnz x2, #HCR_RW_SHIFT, 99f // open code skip_32bit_state
493 mov x3, #(1 << 30)
494 msr fpexc32_el2, x3
495 isb
49699:
Marc Zyngierac3c3742013-08-09 18:19:11 +0100497 msr hcr_el2, x2
Ard Biesheuvel302cd372014-11-07 14:12:34 +0000498 mov x2, #CPTR_EL2_TTA
Mario Smarduch33c76a02015-07-16 22:29:37 +0100499 orr x2, x2, #CPTR_EL2_TFP
Marc Zyngier55c74012012-12-10 16:40:18 +0000500 msr cptr_el2, x2
501
Ard Biesheuvel302cd372014-11-07 14:12:34 +0000502 mov x2, #(1 << 15) // Trap CP15 Cr=15
Marc Zyngier55c74012012-12-10 16:40:18 +0000503 msr hstr_el2, x2
504
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100505 // Monitor Debug Config - see kvm_arm_setup_debug()
506 ldr x2, [x0, #VCPU_MDCR_EL2]
Marc Zyngier55c74012012-12-10 16:40:18 +0000507 msr mdcr_el2, x2
508.endm
509
510.macro deactivate_traps
511 mov x2, #HCR_RW
512 msr hcr_el2, x2
Marc Zyngier55c74012012-12-10 16:40:18 +0000513 msr hstr_el2, xzr
514
515 mrs x2, mdcr_el2
516 and x2, x2, #MDCR_EL2_HPMN_MASK
517 msr mdcr_el2, x2
518.endm
519
520.macro activate_vm
521 ldr x1, [x0, #VCPU_KVM]
522 kern_hyp_va x1
523 ldr x2, [x1, #KVM_VTTBR]
524 msr vttbr_el2, x2
525.endm
526
527.macro deactivate_vm
528 msr vttbr_el2, xzr
529.endm
530
Marc Zyngier1f17f3b2012-12-07 17:54:54 +0000531/*
Marc Zyngier1a9b1302013-06-21 11:57:56 +0100532 * Call into the vgic backend for state saving
Marc Zyngier1f17f3b2012-12-07 17:54:54 +0000533 */
534.macro save_vgic_state
Daniel Thompsonfc032422015-07-22 12:21:04 +0100535alternative_if_not ARM64_HAS_SYSREG_GIC_CPUIF
536 bl __save_vgic_v2_state
537alternative_else
538 bl __save_vgic_v3_state
539alternative_endif
Marc Zyngierac3c3742013-08-09 18:19:11 +0100540 mrs x24, hcr_el2
541 mov x25, #HCR_INT_OVERRIDE
542 neg x25, x25
543 and x24, x24, x25
544 msr hcr_el2, x24
Marc Zyngier1f17f3b2012-12-07 17:54:54 +0000545.endm
546
547/*
Marc Zyngier1a9b1302013-06-21 11:57:56 +0100548 * Call into the vgic backend for state restoring
Marc Zyngier1f17f3b2012-12-07 17:54:54 +0000549 */
550.macro restore_vgic_state
Marc Zyngierac3c3742013-08-09 18:19:11 +0100551 mrs x24, hcr_el2
552 ldr x25, [x0, #VCPU_IRQ_LINES]
553 orr x24, x24, #HCR_INT_OVERRIDE
554 orr x24, x24, x25
555 msr hcr_el2, x24
Daniel Thompsonfc032422015-07-22 12:21:04 +0100556alternative_if_not ARM64_HAS_SYSREG_GIC_CPUIF
557 bl __restore_vgic_v2_state
558alternative_else
559 bl __restore_vgic_v3_state
560alternative_endif
Marc Zyngier1f17f3b2012-12-07 17:54:54 +0000561.endm
562
Marc Zyngier003300d2012-12-07 17:52:03 +0000563.macro save_timer_state
564 // x0: vcpu pointer
565 ldr x2, [x0, #VCPU_KVM]
566 kern_hyp_va x2
567 ldr w3, [x2, #KVM_TIMER_ENABLED]
568 cbz w3, 1f
569
570 mrs x3, cntv_ctl_el0
571 and x3, x3, #3
572 str w3, [x0, #VCPU_TIMER_CNTV_CTL]
573 bic x3, x3, #1 // Clear Enable
574 msr cntv_ctl_el0, x3
575
576 isb
577
578 mrs x3, cntv_cval_el0
579 str x3, [x0, #VCPU_TIMER_CNTV_CVAL]
580
5811:
582 // Allow physical timer/counter access for the host
583 mrs x2, cnthctl_el2
584 orr x2, x2, #3
585 msr cnthctl_el2, x2
586
587 // Clear cntvoff for the host
588 msr cntvoff_el2, xzr
589.endm
590
591.macro restore_timer_state
592 // x0: vcpu pointer
593 // Disallow physical timer access for the guest
594 // Physical counter access is allowed
595 mrs x2, cnthctl_el2
596 orr x2, x2, #1
597 bic x2, x2, #2
598 msr cnthctl_el2, x2
599
600 ldr x2, [x0, #VCPU_KVM]
601 kern_hyp_va x2
602 ldr w3, [x2, #KVM_TIMER_ENABLED]
603 cbz w3, 1f
604
605 ldr x3, [x2, #KVM_TIMER_CNTVOFF]
606 msr cntvoff_el2, x3
607 ldr x2, [x0, #VCPU_TIMER_CNTV_CVAL]
608 msr cntv_cval_el0, x2
609 isb
610
611 ldr w2, [x0, #VCPU_TIMER_CNTV_CTL]
612 and x2, x2, #3
613 msr cntv_ctl_el0, x2
6141:
615.endm
616
Marc Zyngier55c74012012-12-10 16:40:18 +0000617__save_sysregs:
618 save_sysregs
619 ret
620
621__restore_sysregs:
622 restore_sysregs
623 ret
624
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100625/* Save debug state */
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100626__save_debug:
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100627 // x2: ptr to CPU context
Alex Bennée84e690b2015-07-07 17:30:00 +0100628 // x3: ptr to debug reg struct
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100629 // x4/x5/x6-22/x24-26: trashed
630
631 mrs x26, id_aa64dfr0_el1
632 ubfx x24, x26, #12, #4 // Extract BRPs
633 ubfx x25, x26, #20, #4 // Extract WRPs
634 mov w26, #15
635 sub w24, w26, w24 // How many BPs to skip
636 sub w25, w26, w25 // How many WPs to skip
637
638 mov x5, x24
Alex Bennée84e690b2015-07-07 17:30:00 +0100639 add x4, x3, #DEBUG_BCR
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100640 save_debug dbgbcr
Alex Bennée84e690b2015-07-07 17:30:00 +0100641 add x4, x3, #DEBUG_BVR
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100642 save_debug dbgbvr
643
644 mov x5, x25
Alex Bennée84e690b2015-07-07 17:30:00 +0100645 add x4, x3, #DEBUG_WCR
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100646 save_debug dbgwcr
Alex Bennée84e690b2015-07-07 17:30:00 +0100647 add x4, x3, #DEBUG_WVR
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100648 save_debug dbgwvr
649
650 mrs x21, mdccint_el1
651 str x21, [x2, #CPU_SYSREG_OFFSET(MDCCINT_EL1)]
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100652 ret
653
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100654/* Restore debug state */
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100655__restore_debug:
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100656 // x2: ptr to CPU context
Alex Bennée84e690b2015-07-07 17:30:00 +0100657 // x3: ptr to debug reg struct
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100658 // x4/x5/x6-22/x24-26: trashed
659
660 mrs x26, id_aa64dfr0_el1
661 ubfx x24, x26, #12, #4 // Extract BRPs
662 ubfx x25, x26, #20, #4 // Extract WRPs
663 mov w26, #15
664 sub w24, w26, w24 // How many BPs to skip
665 sub w25, w26, w25 // How many WPs to skip
666
667 mov x5, x24
Alex Bennée84e690b2015-07-07 17:30:00 +0100668 add x4, x3, #DEBUG_BCR
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100669 restore_debug dbgbcr
Alex Bennée84e690b2015-07-07 17:30:00 +0100670 add x4, x3, #DEBUG_BVR
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100671 restore_debug dbgbvr
672
673 mov x5, x25
Alex Bennée84e690b2015-07-07 17:30:00 +0100674 add x4, x3, #DEBUG_WCR
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100675 restore_debug dbgwcr
Alex Bennée84e690b2015-07-07 17:30:00 +0100676 add x4, x3, #DEBUG_WVR
Alex Bennéee0a1b9a2015-07-07 17:29:59 +0100677 restore_debug dbgwvr
678
679 ldr x21, [x2, #CPU_SYSREG_OFFSET(MDCCINT_EL1)]
680 msr mdccint_el1, x21
681
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100682 ret
683
Marc Zyngier55c74012012-12-10 16:40:18 +0000684__save_fpsimd:
Mario Smarduch33c76a02015-07-16 22:29:37 +0100685 skip_fpsimd_state x3, 1f
Marc Zyngier55c74012012-12-10 16:40:18 +0000686 save_fpsimd
Mario Smarduch33c76a02015-07-16 22:29:37 +01006871: ret
Marc Zyngier55c74012012-12-10 16:40:18 +0000688
689__restore_fpsimd:
Mario Smarduch33c76a02015-07-16 22:29:37 +0100690 skip_fpsimd_state x3, 1f
Marc Zyngier55c74012012-12-10 16:40:18 +0000691 restore_fpsimd
Mario Smarduch33c76a02015-07-16 22:29:37 +01006921: ret
693
694switch_to_guest_fpsimd:
695 push x4, lr
696
697 mrs x2, cptr_el2
698 bic x2, x2, #CPTR_EL2_TFP
699 msr cptr_el2, x2
700 isb
701
702 mrs x0, tpidr_el2
703
704 ldr x2, [x0, #VCPU_HOST_CONTEXT]
705 kern_hyp_va x2
706 bl __save_fpsimd
707
708 add x2, x0, #VCPU_CONTEXT
709 bl __restore_fpsimd
710
711 skip_32bit_state x3, 1f
712 ldr x4, [x2, #CPU_SYSREG_OFFSET(FPEXC32_EL2)]
713 msr fpexc32_el2, x4
7141:
715 pop x4, lr
716 pop x2, x3
717 pop x0, x1
718
719 eret
Marc Zyngier55c74012012-12-10 16:40:18 +0000720
721/*
722 * u64 __kvm_vcpu_run(struct kvm_vcpu *vcpu);
723 *
724 * This is the world switch. The first half of the function
725 * deals with entering the guest, and anything from __kvm_vcpu_return
726 * to the end of the function deals with reentering the host.
727 * On the enter path, only x0 (vcpu pointer) must be preserved until
728 * the last moment. On the exit path, x0 (vcpu pointer) and x1 (exception
729 * code) must both be preserved until the epilogue.
730 * In both cases, x2 points to the CPU context we're saving/restoring from/to.
731 */
732ENTRY(__kvm_vcpu_run)
733 kern_hyp_va x0
734 msr tpidr_el2, x0 // Save the vcpu register
735
736 // Host context
737 ldr x2, [x0, #VCPU_HOST_CONTEXT]
738 kern_hyp_va x2
739
740 save_host_regs
Marc Zyngier55c74012012-12-10 16:40:18 +0000741 bl __save_sysregs
742
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100743 compute_debug_state 1f
Alex Bennée84e690b2015-07-07 17:30:00 +0100744 add x3, x0, #VCPU_HOST_DEBUG_STATE
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100745 bl __save_debug
7461:
Marc Zyngier55c74012012-12-10 16:40:18 +0000747 activate_traps
748 activate_vm
749
Marc Zyngier1f17f3b2012-12-07 17:54:54 +0000750 restore_vgic_state
Marc Zyngier003300d2012-12-07 17:52:03 +0000751 restore_timer_state
Marc Zyngier1f17f3b2012-12-07 17:54:54 +0000752
Marc Zyngier55c74012012-12-10 16:40:18 +0000753 // Guest context
754 add x2, x0, #VCPU_CONTEXT
755
756 bl __restore_sysregs
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100757
758 skip_debug_state x3, 1f
Alex Bennée84e690b2015-07-07 17:30:00 +0100759 ldr x3, [x0, #VCPU_DEBUG_PTR]
760 kern_hyp_va x3
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100761 bl __restore_debug
7621:
Marc Zyngierb4afad02013-02-07 10:52:10 +0000763 restore_guest_32bit_state
Marc Zyngier55c74012012-12-10 16:40:18 +0000764 restore_guest_regs
765
766 // That's it, no more messing around.
767 eret
768
769__kvm_vcpu_return:
770 // Assume x0 is the vcpu pointer, x1 the return code
771 // Guest's x0-x3 are on the stack
772
773 // Guest context
774 add x2, x0, #VCPU_CONTEXT
775
776 save_guest_regs
777 bl __save_fpsimd
778 bl __save_sysregs
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100779
780 skip_debug_state x3, 1f
Alex Bennée84e690b2015-07-07 17:30:00 +0100781 ldr x3, [x0, #VCPU_DEBUG_PTR]
782 kern_hyp_va x3
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100783 bl __save_debug
7841:
Marc Zyngierb4afad02013-02-07 10:52:10 +0000785 save_guest_32bit_state
Marc Zyngier55c74012012-12-10 16:40:18 +0000786
Marc Zyngier003300d2012-12-07 17:52:03 +0000787 save_timer_state
Marc Zyngier1f17f3b2012-12-07 17:54:54 +0000788 save_vgic_state
789
Marc Zyngier55c74012012-12-10 16:40:18 +0000790 deactivate_traps
791 deactivate_vm
792
793 // Host context
794 ldr x2, [x0, #VCPU_HOST_CONTEXT]
795 kern_hyp_va x2
796
797 bl __restore_sysregs
798 bl __restore_fpsimd
Mario Smarduch33c76a02015-07-16 22:29:37 +0100799 /* Clear FPSIMD and Trace trapping */
800 msr cptr_el2, xzr
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100801
802 skip_debug_state x3, 1f
803 // Clear the dirty flag for the next run, as all the state has
804 // already been saved. Note that we nuke the whole 64bit word.
805 // If we ever add more flags, we'll have to be more careful...
806 str xzr, [x0, #VCPU_DEBUG_FLAGS]
Alex Bennée84e690b2015-07-07 17:30:00 +0100807 add x3, x0, #VCPU_HOST_DEBUG_STATE
Marc Zyngierb0e626b2014-05-07 13:44:49 +0100808 bl __restore_debug
8091:
Marc Zyngier55c74012012-12-10 16:40:18 +0000810 restore_host_regs
811
812 mov x0, x1
813 ret
814END(__kvm_vcpu_run)
815
816// void __kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa);
817ENTRY(__kvm_tlb_flush_vmid_ipa)
Marc Zyngierf142e5e2013-06-11 18:05:25 +0100818 dsb ishst
819
Marc Zyngier55c74012012-12-10 16:40:18 +0000820 kern_hyp_va x0
821 ldr x2, [x0, #KVM_VTTBR]
822 msr vttbr_el2, x2
823 isb
824
825 /*
826 * We could do so much better if we had the VA as well.
827 * Instead, we invalidate Stage-2 for this IPA, and the
828 * whole of Stage-1. Weep...
829 */
Marc Zyngier55e858b2015-01-11 14:10:10 +0100830 lsr x1, x1, #12
Marc Zyngier55c74012012-12-10 16:40:18 +0000831 tlbi ipas2e1is, x1
Will Deaconee9e1012014-05-02 16:24:14 +0100832 /*
833 * We have to ensure completion of the invalidation at Stage-2,
834 * since a table walk on another CPU could refill a TLB with a
835 * complete (S1 + S2) walk based on the old Stage-2 mapping if
836 * the Stage-1 invalidation happened first.
837 */
838 dsb ish
Marc Zyngier55c74012012-12-10 16:40:18 +0000839 tlbi vmalle1is
Will Deaconee9e1012014-05-02 16:24:14 +0100840 dsb ish
Marc Zyngier55c74012012-12-10 16:40:18 +0000841 isb
842
843 msr vttbr_el2, xzr
844 ret
845ENDPROC(__kvm_tlb_flush_vmid_ipa)
846
Mario Smarduch9836c6b2015-01-15 15:59:00 -0800847/**
848 * void __kvm_tlb_flush_vmid(struct kvm *kvm) - Flush per-VMID TLBs
849 * @struct kvm *kvm - pointer to kvm structure
850 *
851 * Invalidates all Stage 1 and 2 TLB entries for current VMID.
852 */
853ENTRY(__kvm_tlb_flush_vmid)
854 dsb ishst
855
856 kern_hyp_va x0
857 ldr x2, [x0, #KVM_VTTBR]
858 msr vttbr_el2, x2
859 isb
860
861 tlbi vmalls12e1is
862 dsb ish
863 isb
864
865 msr vttbr_el2, xzr
866 ret
867ENDPROC(__kvm_tlb_flush_vmid)
868
Marc Zyngier55c74012012-12-10 16:40:18 +0000869ENTRY(__kvm_flush_vm_context)
Marc Zyngierf142e5e2013-06-11 18:05:25 +0100870 dsb ishst
Marc Zyngier55c74012012-12-10 16:40:18 +0000871 tlbi alle1is
872 ic ialluis
Will Deaconee9e1012014-05-02 16:24:14 +0100873 dsb ish
Marc Zyngier55c74012012-12-10 16:40:18 +0000874 ret
875ENDPROC(__kvm_flush_vm_context)
876
877__kvm_hyp_panic:
878 // Guess the context by looking at VTTBR:
879 // If zero, then we're already a host.
880 // Otherwise restore a minimal host context before panicing.
881 mrs x0, vttbr_el2
882 cbz x0, 1f
883
884 mrs x0, tpidr_el2
885
886 deactivate_traps
887 deactivate_vm
888
889 ldr x2, [x0, #VCPU_HOST_CONTEXT]
890 kern_hyp_va x2
891
892 bl __restore_sysregs
893
8941: adr x0, __hyp_panic_str
895 adr x1, 2f
896 ldp x2, x3, [x1]
897 sub x0, x0, x2
898 add x0, x0, x3
899 mrs x1, spsr_el2
900 mrs x2, elr_el2
901 mrs x3, esr_el2
902 mrs x4, far_el2
903 mrs x5, hpfar_el2
904 mrs x6, par_el1
905 mrs x7, tpidr_el2
906
907 mov lr, #(PSR_F_BIT | PSR_I_BIT | PSR_A_BIT | PSR_D_BIT |\
908 PSR_MODE_EL1h)
909 msr spsr_el2, lr
910 ldr lr, =panic
911 msr elr_el2, lr
912 eret
913
914 .align 3
9152: .quad HYP_PAGE_OFFSET
916 .quad PAGE_OFFSET
917ENDPROC(__kvm_hyp_panic)
918
919__hyp_panic_str:
920 .ascii "HYP panic:\nPS:%08x PC:%p ESR:%p\nFAR:%p HPFAR:%p PAR:%p\nVCPU:%p\n\0"
921
922 .align 2
923
Marc Zyngierb20c9f22014-02-26 18:47:36 +0000924/*
925 * u64 kvm_call_hyp(void *hypfn, ...);
926 *
927 * This is not really a variadic function in the classic C-way and care must
928 * be taken when calling this to ensure parameters are passed in registers
929 * only, since the stack will change between the caller and the callee.
930 *
931 * Call the function with the first argument containing a pointer to the
932 * function you wish to call in Hyp mode, and subsequent arguments will be
933 * passed as x0, x1, and x2 (a maximum of 3 arguments in addition to the
934 * function pointer can be passed). The function being called must be mapped
935 * in Hyp mode (see init_hyp_mode in arch/arm/kvm/arm.c). Return values are
936 * passed in r0 and r1.
937 *
938 * A function pointer with a value of 0 has a special meaning, and is
939 * used to implement __hyp_get_vectors in the same way as in
940 * arch/arm64/kernel/hyp_stub.S.
941 */
Marc Zyngier55c74012012-12-10 16:40:18 +0000942ENTRY(kvm_call_hyp)
943 hvc #0
944 ret
945ENDPROC(kvm_call_hyp)
946
947.macro invalid_vector label, target
948 .align 2
949\label:
950 b \target
951ENDPROC(\label)
952.endm
953
954 /* None of these should ever happen */
955 invalid_vector el2t_sync_invalid, __kvm_hyp_panic
956 invalid_vector el2t_irq_invalid, __kvm_hyp_panic
957 invalid_vector el2t_fiq_invalid, __kvm_hyp_panic
958 invalid_vector el2t_error_invalid, __kvm_hyp_panic
959 invalid_vector el2h_sync_invalid, __kvm_hyp_panic
960 invalid_vector el2h_irq_invalid, __kvm_hyp_panic
961 invalid_vector el2h_fiq_invalid, __kvm_hyp_panic
962 invalid_vector el2h_error_invalid, __kvm_hyp_panic
963 invalid_vector el1_sync_invalid, __kvm_hyp_panic
964 invalid_vector el1_irq_invalid, __kvm_hyp_panic
965 invalid_vector el1_fiq_invalid, __kvm_hyp_panic
966 invalid_vector el1_error_invalid, __kvm_hyp_panic
967
968el1_sync: // Guest trapped into EL2
969 push x0, x1
970 push x2, x3
971
972 mrs x1, esr_el2
Mark Rutlandc6d01a92014-11-24 13:59:30 +0000973 lsr x2, x1, #ESR_ELx_EC_SHIFT
Marc Zyngier55c74012012-12-10 16:40:18 +0000974
Mark Rutlandc6d01a92014-11-24 13:59:30 +0000975 cmp x2, #ESR_ELx_EC_HVC64
Marc Zyngier55c74012012-12-10 16:40:18 +0000976 b.ne el1_trap
977
978 mrs x3, vttbr_el2 // If vttbr is valid, the 64bit guest
979 cbnz x3, el1_trap // called HVC
980
981 /* Here, we're pretty sure the host called HVC. */
982 pop x2, x3
983 pop x0, x1
984
Marc Zyngierb20c9f22014-02-26 18:47:36 +0000985 /* Check for __hyp_get_vectors */
986 cbnz x0, 1f
987 mrs x0, vbar_el2
988 b 2f
989
9901: push lr, xzr
Marc Zyngier55c74012012-12-10 16:40:18 +0000991
992 /*
993 * Compute the function address in EL2, and shuffle the parameters.
994 */
995 kern_hyp_va x0
996 mov lr, x0
997 mov x0, x1
998 mov x1, x2
999 mov x2, x3
1000 blr lr
1001
1002 pop lr, xzr
Marc Zyngierb20c9f22014-02-26 18:47:36 +000010032: eret
Marc Zyngier55c74012012-12-10 16:40:18 +00001004
1005el1_trap:
1006 /*
1007 * x1: ESR
1008 * x2: ESR_EC
1009 */
Mario Smarduch33c76a02015-07-16 22:29:37 +01001010
1011 /* Guest accessed VFP/SIMD registers, save host, restore Guest */
1012 cmp x2, #ESR_ELx_EC_FP_ASIMD
1013 b.eq switch_to_guest_fpsimd
1014
Mark Rutlandc6d01a92014-11-24 13:59:30 +00001015 cmp x2, #ESR_ELx_EC_DABT_LOW
1016 mov x0, #ESR_ELx_EC_IABT_LOW
Marc Zyngier55c74012012-12-10 16:40:18 +00001017 ccmp x2, x0, #4, ne
1018 b.ne 1f // Not an abort we care about
1019
1020 /* This is an abort. Check for permission fault */
Mark Rutlandc6d01a92014-11-24 13:59:30 +00001021 and x2, x1, #ESR_ELx_FSC_TYPE
Marc Zyngier55c74012012-12-10 16:40:18 +00001022 cmp x2, #FSC_PERM
1023 b.ne 1f // Not a permission fault
1024
1025 /*
1026 * Check for Stage-1 page table walk, which is guaranteed
1027 * to give a valid HPFAR_EL2.
1028 */
1029 tbnz x1, #7, 1f // S1PTW is set
1030
Marc Zyngier1bbd8052013-06-07 11:02:34 +01001031 /* Preserve PAR_EL1 */
1032 mrs x3, par_el1
1033 push x3, xzr
1034
Marc Zyngier55c74012012-12-10 16:40:18 +00001035 /*
1036 * Permission fault, HPFAR_EL2 is invalid.
1037 * Resolve the IPA the hard way using the guest VA.
1038 * Stage-1 translation already validated the memory access rights.
1039 * As such, we can use the EL1 translation regime, and don't have
1040 * to distinguish between EL0 and EL1 access.
1041 */
1042 mrs x2, far_el2
1043 at s1e1r, x2
1044 isb
1045
1046 /* Read result */
1047 mrs x3, par_el1
Marc Zyngier1bbd8052013-06-07 11:02:34 +01001048 pop x0, xzr // Restore PAR_EL1 from the stack
1049 msr par_el1, x0
Marc Zyngier55c74012012-12-10 16:40:18 +00001050 tbnz x3, #0, 3f // Bail out if we failed the translation
1051 ubfx x3, x3, #12, #36 // Extract IPA
1052 lsl x3, x3, #4 // and present it like HPFAR
1053 b 2f
1054
10551: mrs x3, hpfar_el2
1056 mrs x2, far_el2
1057
10582: mrs x0, tpidr_el2
Victor Kamenskyba083d22014-06-12 09:30:09 -07001059 str w1, [x0, #VCPU_ESR_EL2]
Marc Zyngier55c74012012-12-10 16:40:18 +00001060 str x2, [x0, #VCPU_FAR_EL2]
1061 str x3, [x0, #VCPU_HPFAR_EL2]
1062
1063 mov x1, #ARM_EXCEPTION_TRAP
1064 b __kvm_vcpu_return
1065
1066 /*
1067 * Translation failed. Just return to the guest and
1068 * let it fault again. Another CPU is probably playing
1069 * behind our back.
1070 */
10713: pop x2, x3
1072 pop x0, x1
1073
1074 eret
1075
1076el1_irq:
1077 push x0, x1
1078 push x2, x3
1079 mrs x0, tpidr_el2
1080 mov x1, #ARM_EXCEPTION_IRQ
1081 b __kvm_vcpu_return
1082
1083 .ltorg
1084
1085 .align 11
1086
1087ENTRY(__kvm_hyp_vector)
1088 ventry el2t_sync_invalid // Synchronous EL2t
1089 ventry el2t_irq_invalid // IRQ EL2t
1090 ventry el2t_fiq_invalid // FIQ EL2t
1091 ventry el2t_error_invalid // Error EL2t
1092
1093 ventry el2h_sync_invalid // Synchronous EL2h
1094 ventry el2h_irq_invalid // IRQ EL2h
1095 ventry el2h_fiq_invalid // FIQ EL2h
1096 ventry el2h_error_invalid // Error EL2h
1097
1098 ventry el1_sync // Synchronous 64-bit EL1
1099 ventry el1_irq // IRQ 64-bit EL1
1100 ventry el1_fiq_invalid // FIQ 64-bit EL1
1101 ventry el1_error_invalid // Error 64-bit EL1
1102
1103 ventry el1_sync // Synchronous 32-bit EL1
1104 ventry el1_irq // IRQ 32-bit EL1
1105 ventry el1_fiq_invalid // FIQ 32-bit EL1
1106 ventry el1_error_invalid // Error 32-bit EL1
1107ENDPROC(__kvm_hyp_vector)
1108
Alex Bennée56c7f5e2015-07-07 17:29:56 +01001109
1110ENTRY(__kvm_get_mdcr_el2)
1111 mrs x0, mdcr_el2
1112 ret
1113ENDPROC(__kvm_get_mdcr_el2)
1114
Marc Zyngier55c74012012-12-10 16:40:18 +00001115 .popsection