tsp_exceptions.S 4.01 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
 */

#include <arch.h>
#include <asm_macros.S>
9
10
#include <bl32/tsp/tsp.h>
#include <common/bl_common.h>
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

	/* ----------------------------------------------------
	 * The caller-saved registers x0-x18 and LR are saved
	 * here.
	 * ----------------------------------------------------
	 */

#define SCRATCH_REG_SIZE #(20 * 8)

	.macro save_caller_regs_and_lr
	sub	sp, sp, SCRATCH_REG_SIZE
	stp	x0, x1, [sp]
	stp	x2, x3, [sp, #0x10]
	stp	x4, x5, [sp, #0x20]
	stp	x6, x7, [sp, #0x30]
	stp	x8, x9, [sp, #0x40]
	stp	x10, x11, [sp, #0x50]
	stp	x12, x13, [sp, #0x60]
	stp	x14, x15, [sp, #0x70]
	stp	x16, x17, [sp, #0x80]
	stp	x18, x30, [sp, #0x90]
	.endm

	.macro restore_caller_regs_and_lr
	ldp	x0, x1, [sp]
	ldp	x2, x3, [sp, #0x10]
	ldp	x4, x5, [sp, #0x20]
	ldp	x6, x7, [sp, #0x30]
	ldp	x8, x9, [sp, #0x40]
	ldp	x10, x11, [sp, #0x50]
	ldp	x12, x13, [sp, #0x60]
	ldp	x14, x15, [sp, #0x70]
	ldp	x16, x17, [sp, #0x80]
	ldp	x18, x30, [sp, #0x90]
	add	sp, sp, SCRATCH_REG_SIZE
	.endm

48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
	/* ----------------------------------------------------
	 * Common TSP interrupt handling routine
	 * ----------------------------------------------------
	 */
	.macro	handle_tsp_interrupt label
	/* Enable the SError interrupt */
	msr	daifclr, #DAIF_ABT_BIT

	save_caller_regs_and_lr
	bl	tsp_common_int_handler
	cbz	x0, interrupt_exit_\label

	/*
	 * This interrupt was not targetted to S-EL1 so send it to
	 * the monitor and wait for execution to resume.
	 */
	smc	#0
interrupt_exit_\label:
	restore_caller_regs_and_lr
67
	exception_return
68
69
	.endm

70
71
72
73
74
75
	.globl	tsp_exceptions

	/* -----------------------------------------------------
	 * TSP exception handlers.
	 * -----------------------------------------------------
	 */
76
vector_base tsp_exceptions
77
	/* -----------------------------------------------------
78
	 * Current EL with _sp_el0 : 0x0 - 0x200. No exceptions
79
80
81
	 * are expected and treated as irrecoverable errors.
	 * -----------------------------------------------------
	 */
82
vector_entry sync_exception_sp_el0
83
	b	plat_panic_handler
84
end_vector_entry sync_exception_sp_el0
85

86
vector_entry irq_sp_el0
87
	b	plat_panic_handler
88
end_vector_entry irq_sp_el0
89

90
vector_entry fiq_sp_el0
91
	b	plat_panic_handler
92
end_vector_entry fiq_sp_el0
93

94
vector_entry serror_sp_el0
95
	b	plat_panic_handler
96
end_vector_entry serror_sp_el0
97
98
99


	/* -----------------------------------------------------
100
	 * Current EL with SPx: 0x200 - 0x400. Only IRQs/FIQs
101
102
103
	 * are expected and handled
	 * -----------------------------------------------------
	 */
104
vector_entry sync_exception_sp_elx
105
	b	plat_panic_handler
106
end_vector_entry sync_exception_sp_elx
107

108
vector_entry irq_sp_elx
109
	handle_tsp_interrupt irq_sp_elx
110
end_vector_entry irq_sp_elx
111

112
vector_entry fiq_sp_elx
113
	handle_tsp_interrupt fiq_sp_elx
114
end_vector_entry fiq_sp_elx
115

116
vector_entry serror_sp_elx
117
	b	plat_panic_handler
118
end_vector_entry serror_sp_elx
119
120
121


	/* -----------------------------------------------------
122
	 * Lower EL using AArch64 : 0x400 - 0x600. No exceptions
123
124
125
	 * are handled since TSP does not implement a lower EL
	 * -----------------------------------------------------
	 */
126
vector_entry sync_exception_aarch64
127
	b	plat_panic_handler
128
end_vector_entry sync_exception_aarch64
129

130
vector_entry irq_aarch64
131
	b	plat_panic_handler
132
end_vector_entry irq_aarch64
133

134
vector_entry fiq_aarch64
135
	b	plat_panic_handler
136
end_vector_entry fiq_aarch64
137

138
vector_entry serror_aarch64
139
	b	plat_panic_handler
140
end_vector_entry serror_aarch64
141
142
143


	/* -----------------------------------------------------
144
	 * Lower EL using AArch32 : 0x600 - 0x800. No exceptions
145
146
147
	 * handled since the TSP does not implement a lower EL.
	 * -----------------------------------------------------
	 */
148
vector_entry sync_exception_aarch32
149
	b	plat_panic_handler
150
end_vector_entry sync_exception_aarch32
151

152
vector_entry irq_aarch32
153
	b	plat_panic_handler
154
end_vector_entry irq_aarch32
155

156
vector_entry fiq_aarch32
157
	b	plat_panic_handler
158
end_vector_entry fiq_aarch32
159

160
vector_entry serror_aarch32
161
	b	plat_panic_handler
162
end_vector_entry serror_aarch32