blob: 73d46070b31500117ade72ea1d2a6c2ed31feb2b [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Marc Zyngier712c6ff2012-10-19 17:46:27 +01002/*
3 * Hypervisor stub
4 *
5 * Copyright (C) 2012 ARM Ltd.
6 * Author: Marc Zyngier <marc.zyngier@arm.com>
Marc Zyngier712c6ff2012-10-19 17:46:27 +01007 */
8
9#include <linux/init.h>
10#include <linux/linkage.h>
Marc Zyngier021f6532014-06-30 16:01:31 +010011#include <linux/irqchip/arm-gic-v3.h>
Marc Zyngier712c6ff2012-10-19 17:46:27 +010012
13#include <asm/assembler.h>
Geoff Levandad72e592016-04-27 17:47:03 +010014#include <asm/kvm_arm.h>
James Morsec94b0cf2016-04-27 17:47:04 +010015#include <asm/kvm_asm.h>
Marc Zyngier712c6ff2012-10-19 17:46:27 +010016#include <asm/ptrace.h>
17#include <asm/virt.h>
18
19 .text
James Morse8fac5cb2019-01-24 16:32:56 +000020 .pushsection .hyp.text, "ax"
21
Marc Zyngier712c6ff2012-10-19 17:46:27 +010022 .align 11
23
24ENTRY(__hyp_stub_vectors)
25 ventry el2_sync_invalid // Synchronous EL2t
26 ventry el2_irq_invalid // IRQ EL2t
27 ventry el2_fiq_invalid // FIQ EL2t
28 ventry el2_error_invalid // Error EL2t
29
30 ventry el2_sync_invalid // Synchronous EL2h
31 ventry el2_irq_invalid // IRQ EL2h
32 ventry el2_fiq_invalid // FIQ EL2h
33 ventry el2_error_invalid // Error EL2h
34
35 ventry el1_sync // Synchronous 64-bit EL1
36 ventry el1_irq_invalid // IRQ 64-bit EL1
37 ventry el1_fiq_invalid // FIQ 64-bit EL1
38 ventry el1_error_invalid // Error 64-bit EL1
39
40 ventry el1_sync_invalid // Synchronous 32-bit EL1
41 ventry el1_irq_invalid // IRQ 32-bit EL1
42 ventry el1_fiq_invalid // FIQ 32-bit EL1
43 ventry el1_error_invalid // Error 32-bit EL1
44ENDPROC(__hyp_stub_vectors)
45
46 .align 11
47
48el1_sync:
Marc Zyngier0b51c542017-04-03 19:38:04 +010049 cmp x0, #HVC_SET_VECTORS
Geoff Levandad72e592016-04-27 17:47:03 +010050 b.ne 2f
51 msr vbar_el2, x1
52 b 9f
53
Geoff Levandf9076ec2016-06-23 17:54:48 +0000542: cmp x0, #HVC_SOFT_RESTART
55 b.ne 3f
56 mov x0, x2
57 mov x2, x4
58 mov x4, x1
59 mov x1, x3
60 br x4 // no return
61
Marc Zyngierfd0e0c62017-04-03 19:37:39 +0100623: cmp x0, #HVC_RESET_VECTORS
63 beq 9f // Nothing to reset!
64
James Morsec94b0cf2016-04-27 17:47:04 +010065 /* Someone called kvm_call_hyp() against the hyp-stub... */
Marc Zyngierfd0e0c62017-04-03 19:37:39 +010066 ldr x0, =HVC_STUB_ERR
Marc Zyngieraf42f202017-04-03 19:38:05 +010067 eret
Geoff Levandad72e592016-04-27 17:47:03 +010068
Marc Zyngieraf42f202017-04-03 19:38:05 +0100699: mov x0, xzr
70 eret
Marc Zyngier712c6ff2012-10-19 17:46:27 +010071ENDPROC(el1_sync)
72
73.macro invalid_vector label
74\label:
75 b \label
76ENDPROC(\label)
77.endm
78
79 invalid_vector el2_sync_invalid
80 invalid_vector el2_irq_invalid
81 invalid_vector el2_fiq_invalid
82 invalid_vector el2_error_invalid
83 invalid_vector el1_sync_invalid
84 invalid_vector el1_irq_invalid
85 invalid_vector el1_fiq_invalid
86 invalid_vector el1_error_invalid
87
88/*
89 * __hyp_set_vectors: Call this after boot to set the initial hypervisor
90 * vectors as part of hypervisor installation. On an SMP system, this should
91 * be called on each CPU.
92 *
93 * x0 must be the physical address of the new vector table, and must be
94 * 2KB aligned.
95 *
96 * Before calling this, you must check that the stub hypervisor is installed
97 * everywhere, by waiting for any secondary CPUs to be brought up and then
98 * checking that is_hyp_mode_available() is true.
99 *
100 * If not, there is a pre-existing hypervisor, some CPUs failed to boot, or
101 * something else went wrong... in such cases, trying to install a new
102 * hypervisor is unlikely to work as desired.
103 *
104 * When you call into your shiny new hypervisor, sp_el2 will contain junk,
105 * so you will need to set that to something sensible at the new hypervisor's
106 * initialisation entry point.
107 */
108
James Morse00a44cd2016-04-27 17:47:02 +0100109ENTRY(__hyp_set_vectors)
Geoff Levandad72e592016-04-27 17:47:03 +0100110 mov x1, x0
111 mov x0, #HVC_SET_VECTORS
James Morse00a44cd2016-04-27 17:47:02 +0100112 hvc #0
James Morse00a44cd2016-04-27 17:47:02 +0100113 ret
Marc Zyngier712c6ff2012-10-19 17:46:27 +0100114ENDPROC(__hyp_set_vectors)
Marc Zyngierfd0e0c62017-04-03 19:37:39 +0100115
116ENTRY(__hyp_reset_vectors)
117 mov x0, #HVC_RESET_VECTORS
118 hvc #0
119 ret
120ENDPROC(__hyp_reset_vectors)